Initrd problems

Hi,
I just installed Arch linux for the first time and I'm quiet confused about the initrd stuff.. I read everywhere to use the kernel26.img but I haven't got that file... I've only got initrd26.img and initrd26-full.img and both give me a "can't access tty, job control turned off" error followed by a quasi non-functional shell.
I'm able to chroot into my arch install from another partition but stuff like pacman doesn't seem to work, example:
bash-3.1# pacman -Syu
:: Synchronizing package databases...
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.archlinux.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.nethat.com
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp-linux.cc.gatech.edu
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.ibiblio.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to archlinux.antesis.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.rez-gif.supelec.fr
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.archlinux.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.heanet.ie
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.mpi-sb.mpg.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.tu-chemnitz.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.hosteurope.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to mi.mirror.garr.it
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.belnet.be
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.nluug.nl
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.surfnet.nl
gethostbyname: Resource temporarily unavailable
error: cannot connect to sunsite.icm.edu.pl
gethostbyname: Resource temporarily unavailable
error: cannot connect to mirror.icis.pcz.pl
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.pangora.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.fsn.hu
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.ntua.gr
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.kegep.tuc.gr
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.estpak.ee
gethostbyname: Resource temporarily unavailable
error: cannot connect to gd.tuwien.ac.at
gethostbyname: Resource temporarily unavailable
error: cannot connect to darkstar.ist.utl.pt
gethostbyname: Resource temporarily unavailable
error: cannot connect to saule.mintis.lt
gethostbyname: Resource temporarily unavailable
error: cannot connect to mirror.pacific.net.au
gethostbyname: Resource temporarily unavailable
error: cannot connect to cle.linux.org.tw
failed to synchronize current
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.nethat.com
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.archlinux.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp-linux.cc.gatech.edu
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.ibiblio.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to archlinux.antesis.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.rez-gif.supelec.fr
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.archlinux.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.heanet.ie
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.mpi-sb.mpg.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.tu-chemnitz.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.hosteurope.de
gethostbyname: Resource temporarily unavailable
error: cannot connect to mi.mirror.garr.it
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.belnet.be
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.nluug.nl
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.surfnet.nl
gethostbyname: Resource temporarily unavailable
error: cannot connect to sunsite.icm.edu.pl
gethostbyname: Resource temporarily unavailable
error: cannot connect to mirror.icis.pcz.pl
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.pangora.org
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.fsn.hu
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.ntua.gr
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.kegep.tuc.gr
gethostbyname: Resource temporarily unavailable
error: cannot connect to ftp.estpak.ee
gethostbyname: Resource temporarily unavailable
error: cannot connect to gd.tuwien.ac.at
gethostbyname: Resource temporarily unavailable
error: cannot connect to darkstar.ist.utl.pt
gethostbyname: Resource temporarily unavailable
error: cannot connect to saule.mintis.lt
gethostbyname: Resource temporarily unavailable
error: cannot connect to mirror.pacific.net.au
gethostbyname: Resource temporarily unavailable
error: cannot connect to cle.linux.org.tw
failed to synchronize extra
error: could not open sync database: extra
have you used --refresh yet?
How can I get the right initrd file and a fully functional shell and how can I install and configure xorg?
I hope someone can point me to some documentation or help me out.
Thanks

what are you booting up that you chroot into system?
arch install cd?
if so you need to get a few things going before running chroot
run /arch/setup
configure your network connection to get connected
next
mount /dev/hdYX /mnt <<<where hdYX is replace your proper letters for where arch is<<<
mount --bind /dev /mnt/dev
mount --bind /proc /mnt/proc
now
chroot
next
ifconfig -a
dhcpcd eth0 <<<or whatever your network device is<<<
now
pacman -Sy
pacman -Syu
download & install all
"Ctrl d" to exit chroot
umount /dev/hdYX
reboot
i believe i didnt miss anything there if i did hopefully someone will correct it if i dont 1st

Similar Messages

  • Initrd Problem

    Hello all, was hoping someone could help me out here. What I'm trying to do is create an initrd that I can use with the stock kernel that is basically live, I don't want any partitions being mounted.
    I tried mkinitcpio and if I remember correctly, it doesn't include the init scripts and I tried adding them myself but that didn't work out too well. So now I'm using the older mkinitrd-type method.
    Here's my grub config file:
    title Arch w/ checksumtool
    kernel /boot/cdvmlinuz26 ramdisk_size=75%
    initrd /boot/initrd.img.gz
    And the linuxrc file located in the initrd:
    #!/bin/ash
    mount -t proc /proc /proc
    mount -t sysfs none /sys
    /bin/ash --login
    Now when it boots up, it tells me "Kernel panic: couldn't mount root filesystem on unkown block-device". Would someone help me figure out what I'm doing wrong here?

    I got this in mkinitcpio.conf:
    HOOKS="base udev autodetect pata scsi sata keymap usbinput encrypt filesystems"
    When booting up (half way) and running lsmod i get: hid_apple, usbhid, hid, dm_crypt, dm_mod, uhci_hcd, ehci_hcd and usbcore.
    The output of "lsinitcpio -a /boot/initramfs-linux.img" can be found here: https://gist.github.com/1522166
    Can the problem be related to me using EFI and GPT? No BIOS stuff at all. I've heard that the Apple EFI firmware turns on IDE mode (and that's what lspci says on the livecd). Is IDE incompatible with EFI/GPT?

  • 2.6.26: broken padding, no cpio magic, crc error

    My new computer (about 2 weeks old) started freezing out of nowhere the other day right after I installed flashplayer-beta and kernel 2.6.26.
    I hard-rebooted it yesterday after this happened and it would only panic on boot. There were three errors at the point where the real kernel takes over: broken padding, no cpio magic, and crc error. I reinstalled/Syu-ed using my old Voodoo disc (for some reason, the Overlord disc doesn't work for me... computer reboots) and rebooted.
    I've had to do that twice so far. That leads me to believe that it may be a kernel/initrd problem, but there's a possiblity that it may be RAM-related. My motherboard and RAM are *slightly* incompatible and I've received errors on memtest #7 as a result. I RMA-ed the memory today, so we'll see how that goes once I receive the definitely-compatible sticks.
    Anyone else getting this error with the new kernel?
    Last edited by mrbug (2008-07-25 17:30:03)

    My new computer (about 2 weeks old) started freezing out of nowhere the other day right after I installed flashplayer-beta and kernel 2.6.26.
    I hard-rebooted it yesterday after this happened and it would only panic on boot. There were three errors at the point where the real kernel takes over: broken padding, no cpio magic, and crc error. I reinstalled/Syu-ed using my old Voodoo disc (for some reason, the Overlord disc doesn't work for me... computer reboots) and rebooted.
    I've had to do that twice so far. That leads me to believe that it may be a kernel/initrd problem, but there's a possiblity that it may be RAM-related. My motherboard and RAM are *slightly* incompatible and I've received errors on memtest #7 as a result. I RMA-ed the memory today, so we'll see how that goes once I receive the definitely-compatible sticks.
    Anyone else getting this error with the new kernel?
    Last edited by mrbug (2008-07-25 17:30:03)

  • Installation problem on 0.7.2 (busybox.......)

    I've downloaded arch 0.7.2
    The installation work fine, but on reboot i have this error message:
    Mounting /dev/root on /new_root failed: No such device or address.
    pivot_root: No such file or directory
    umount: /initrd: No such file or directory
    /linuxrc: 487: /sbin/busybox not found
    Freeing unused kernel memory 244 k freed
    BusyBox v1.01
    Enter 'help' for ...
    /bin/sh: can't access tty: job control turned off.
    I tried the iso made by topwa but cant'boot....... now I'm on-line with ubuntu :cry:
    This is my menu.lst
    title Arch!
    [code]root (hd0,1)
    kernel /boot/vmlinuz26 root=/dev/hda2 ro
    initrd /boot/initrd26.img[/code]
    This is my lspci
    leviathan@dragonheart:~$ lspci
    00:00.0 Host bridge: Intel Corporation 945G/GZ/P/PL Express Memory Controller Hub (rev 02)
    00:01.0 PCI bridge: Intel Corporation 945G/GZ/P/PL Express PCI Express Root Port (rev 02)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 01)
    00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 01)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI #1 (rev 01)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI #2 (rev 01)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI #3 (rev 01)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI #4 (rev 01)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01)
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
    00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
    00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller IDE (rev 01)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01)
    01:03.0 Mass storage controller: Integrated Technology Express, Inc. ITE 8211F Single Channel UDMA 133 (ASUS 8211 (ITE IT8212 ATA RAID Controller)) (rev 11)
    02:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8053 PCI-E Gigabit Ethernet Controller (rev 19)
    04:00.0 VGA compatible controller: nVidia Corporation GeForce 6200 TurboCache(TM) (rev a1)

    fk wrote:
    Hi
    you can try these installation method
    http://wiki.archlinux.org/index.php/Ins … her_distro
      installation work fine..... the problem is the boot from disk after install.
    P.S. i tried installation form ftp but the module of my eth card wont'load  :cry:
    marvell ---> sky2

  • Read only filesystem problem

    Hi,
    I have a strange problem. After some time of running archlinux the root filesystem suddenly becomes read-only. It happened 3 times yet. I'm using LVM and the root volume is /dev/mapper/VG0-archlinux2 and filesystem type is reiserfs.
    If i tried to remount it read-write using command
    mount -o remount,rw /
    i got this:
    sudo: unable to open /var/db/sudo/uiii/3: Read-only file system
    mount: /dev/mapper/VG0-archlinux2: can't read superblock
    Only reboot helps.
    my machine is (uname -a):
    Linux uiii-arch 3.5.4-1-ARCH #1 SMP PREEMPT Sat Sep 15 08:12:04 CEST 2012 x86_64 GNU/Linux
    /etc/mtab (when problem occured):
    rootfs / rootfs rw 0 0
    proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
    sys /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
    dev /dev devtmpfs rw,nosuid,relatime,size=1990100k,nr_inodes=497525,mode=755 0 0
    run /run tmpfs rw,nosuid,nodev,relatime,mode=755 0 0
    /dev/mapper/VG0-archlinux2 / reiserfs ro,relatime 0 0
    devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
    shm /dev/shm tmpfs rw,nosuid,nodev,relatime 0 0
    tmpfs /tmp tmpfs rw,nosuid,nodev,relatime 0 0
    /dev/sda1 /boot ext2 rw,relatime 0 0
    /dev/mapper/VG0-uloziste /mnt/uloziste ext4 rw,relatime,data=ordered 0 0
    binfmt /proc/sys/fs/binfmt_misc binfmt_misc rw,relatime 0 0
    gvfs-fuse-daemon /home/uiii/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=1000,group_id=100 0 0
    dmesg output is this:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.5.4-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Sep 15 08:12:04 CEST 2012
    [ 0.000000] Command line: root=/dev/mapper/VG0-archlinux2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfedffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfee2fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cfee3000-0x00000000cfeeffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000cfef0000-0x00000000cfefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. GA-MA790X-UD4/GA-MA790X-UD4, BIOS F3 06/03/2009
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x130000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-C7FFF write-protect
    [ 0.000000] C8000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000C0000000 mask FFFFF0000000 write-back
    [ 0.000000] 3 base 0000CFF00000 mask FFFFFFF00000 uncachable
    [ 0.000000] 4 base 000100000000 mask FFFFE0000000 write-back
    [ 0.000000] 5 base 000120000000 mask FFFFF0000000 write-back
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 0000000130000000 aka 4864M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xcff00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f5600-0x000f560f] mapped at [ffff8800000f5600]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xcfedffff]
    [ 0.000000] [mem 0x00000000-0xbfffffff] page 1G
    [ 0.000000] [mem 0xc0000000-0xcfdfffff] page 2M
    [ 0.000000] [mem 0xcfe00000-0xcfedffff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xcfedffff @ [mem 0x1f9fd000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x12fffffff]
    [ 0.000000] [mem 0x100000000-0x12fffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x12fffffff @ [mem 0xcfede000-0xcfedffff]
    [ 0.000000] RAMDISK: [mem 0x7fc62000-0x7fffefff]
    [ 0.000000] ACPI: RSDP 00000000000f7010 00014 (v00 GBT )
    [ 0.000000] ACPI: RSDT 00000000cfee3000 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: FACP 00000000cfee3040 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: DSDT 00000000cfee30c0 05980 (v01 GBT GBTUACPI 00001000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 00000000cfee0000 00040
    [ 0.000000] ACPI: SSDT 00000000cfee8b00 008F5 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    [ 0.000000] ACPI: HPET 00000000cfee9400 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    [ 0.000000] ACPI: MCFG 00000000cfee9440 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: TAMG 00000000cfee9480 0030A (v01 GBT GBT B0 5455312E BG?? 53450101)
    [ 0.000000] ACPI: APIC 00000000cfee8a40 00084 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] Scanning NUMA topology in Northbridge 24
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000012fffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x12fffffff]
    [ 0.000000] NODE_DATA [mem 0x12fffc000-0x12fffffff]
    [ 0.000000] [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff88012b600000-ffff88012f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x12fffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0xcfedffff]
    [ 0.000000] node 0: [mem 0x100000000-0x12fffffff]
    [ 0.000000] On node 0 totalpages: 1048175
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3913 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 831264 pages, LIFO batch:31
    [ 0.000000] Normal zone: 3072 pages used for memmap
    [ 0.000000] Normal zone: 193536 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 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 (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 1 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000cfee0000 - 00000000cfee3000
    [ 0.000000] PM: Registered nosave memory: 00000000cfee3000 - 00000000cfef0000
    [ 0.000000] PM: Registered nosave memory: 00000000cfef0000 - 00000000cff00000
    [ 0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    [ 0.000000] e820: [mem 0xcff00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88012fc00000 s83392 r8192 d23104 u524288
    [ 0.000000] pcpu-alloc: s83392 r8192 d23104 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1028713
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/mapper/VG0-archlinux2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ c4000000 size 32 MB
    [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
    [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    [ 0.000000] Please enable the IOMMU option in the BIOS setup
    [ 0.000000] This costs you 64 MB of RAM
    [ 0.000000] Mapping aperture over 65536 KB of RAM @ c4000000
    [ 0.000000] PM: Registered nosave memory: 00000000c4000000 - 00000000c8000000
    [ 0.000000] Memory: 3980204k/4980736k available (4645k kernel code, 788036k absent, 212496k reserved, 4207k data, 760k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.003333] Fast TSC calibration using PIT
    [ 0.006666] Detected 2813.035 MHz processor.
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5628.48 BogoMIPS (lpj=9376783)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000027] Security Framework initialized
    [ 0.000031] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000260] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001554] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.002140] Mount-cache hash table entries: 256
    [ 0.002315] Initializing cgroup subsys cpuacct
    [ 0.002317] Initializing cgroup subsys memory
    [ 0.002326] Initializing cgroup subsys devices
    [ 0.002327] Initializing cgroup subsys freezer
    [ 0.002328] Initializing cgroup subsys net_cls
    [ 0.002330] Initializing cgroup subsys blkio
    [ 0.002349] tseg: 00cff00000
    [ 0.002351] CPU: Physical Processor ID: 0
    [ 0.002352] CPU: Processor Core ID: 0
    [ 0.002353] mce: CPU supports 6 MCE banks
    [ 0.002358] LVT offset 0 assigned for vector 0xf9
    [ 0.002362] using AMD E400 aware idle routine
    [ 0.002998] ACPI: Core revision 20120320
    [ 0.019730] ftrace: allocating 17970 entries in 71 pages
    [ 0.027072] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.060076] CPU0: AMD Phenom(tm) II X3 720 Processor stepping 02
    [ 0.165799] Performance Events: AMD PMU driver.
    [ 0.165802] ... version: 0
    [ 0.165803] ... bit width: 48
    [ 0.165803] ... generic registers: 4
    [ 0.165804] ... value mask: 0000ffffffffffff
    [ 0.165805] ... max period: 00007fffffffffff
    [ 0.165806] ... fixed-purpose events: 0
    [ 0.165807] ... event mask: 000000000000000f
    [ 0.185858] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.199154] Booting Node 0, Processors #1 #2
    [ 0.235675] Brought up 3 CPUs
    [ 0.235679] Total of 3 processors activated (16884.46 BogoMIPS).
    [ 0.239344] devtmpfs: initialized
    [ 0.240745] PM: Registering ACPI NVS region [mem 0xcfee0000-0xcfee2fff] (12288 bytes)
    [ 0.241490] NET: Registered protocol family 16
    [ 0.241574] node 0 link 0: io port [c000, ffff]
    [ 0.241576] TOM: 00000000d0000000 aka 3328M
    [ 0.241578] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
    [ 0.241580] node 0 link 0: mmio [a0000, bffff]
    [ 0.241582] node 0 link 0: mmio [d0000000, dfffffff]
    [ 0.241584] node 0 link 0: mmio [f0000000, fe02ffff]
    [ 0.241586] node 0 link 0: mmio [e0000000, e03fffff] ==> [e0100000, e03fffff]
    [ 0.241588] TOM2: 0000000130000000 aka 4864M
    [ 0.241589] bus: [00, 03] on node 0 link 0
    [ 0.241590] bus: 00 [io 0x0000-0xffff]
    [ 0.241591] bus: 00 [mem 0x000a0000-0x000bffff]
    [ 0.241592] bus: 00 [mem 0xd0000000-0xdfffffff]
    [ 0.241593] bus: 00 [mem 0xe0400000-0xffffffff]
    [ 0.241594] bus: 00 [mem 0xe0100000-0xe03fffff]
    [ 0.241595] bus: 00 [mem 0x130000000-0xfcffffffff]
    [ 0.241649] ACPI: bus type pci registered
    [ 0.241696] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.241698] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.252350] PCI: Using configuration type 1 for base access
    [ 0.252819] bio: create slab <bio-0> at 0
    [ 0.252870] ACPI: Added _OSI(Module Device)
    [ 0.252871] ACPI: Added _OSI(Processor Device)
    [ 0.252872] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.252873] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.253366] ACPI: EC: Look up EC in DSDT
    [ 0.258796] ACPI: Interpreter enabled
    [ 0.258802] ACPI: (supports S0 S3 S4 S5)
    [ 0.258819] ACPI: Using IOAPIC for interrupt routing
    [ 0.261632] ACPI: No dock devices found.
    [ 0.261636] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.261677] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.261731] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.261733] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.261735] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.261737] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.261738] pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xfebfffff]
    [ 0.261768] PCI host bridge to bus 0000:00
    [ 0.261770] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.261772] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.261773] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.261775] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.261777] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff]
    [ 0.261786] pci 0000:00:00.0: [1002:5958] type 00 class 0x060000
    [ 0.261797] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
    [ 0.261830] pci 0000:00:02.0: [1002:5978] type 01 class 0x060400
    [ 0.261858] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.261878] pci 0000:00:0a.0: [1002:597f] type 01 class 0x060400
    [ 0.261906] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.261931] pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    [ 0.261949] pci 0000:00:11.0: reg 10: [io 0xff00-0xff07]
    [ 0.261958] pci 0000:00:11.0: reg 14: [io 0xfe00-0xfe03]
    [ 0.261967] pci 0000:00:11.0: reg 18: [io 0xfd00-0xfd07]
    [ 0.261976] pci 0000:00:11.0: reg 1c: [io 0xfc00-0xfc03]
    [ 0.261985] pci 0000:00:11.0: reg 20: [io 0xfb00-0xfb0f]
    [ 0.261994] pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
    [ 0.262013] pci 0000:00:11.0: set SATA to AHCI mode
    [ 0.262058] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.262070] pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
    [ 0.262132] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
    [ 0.262145] pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
    [ 0.262212] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.262230] pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
    [ 0.262309] pci 0000:00:12.2: supports D1 D2
    [ 0.262311] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.262334] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.262346] pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
    [ 0.262408] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
    [ 0.262421] pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
    [ 0.262493] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.262511] pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
    [ 0.262590] pci 0000:00:13.2: supports D1 D2
    [ 0.262591] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.262616] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.262711] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    [ 0.262726] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    [ 0.262735] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    [ 0.262744] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    [ 0.262753] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    [ 0.262762] pci 0000:00:14.1: reg 20: [io 0xfa00-0xfa0f]
    [ 0.262817] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.262837] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
    [ 0.262901] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.262915] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.262987] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.263028] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.263041] pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
    [ 0.263105] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    [ 0.263119] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    [ 0.263130] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    [ 0.263141] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    [ 0.263155] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    [ 0.263201] pci 0000:01:00.0: [10de:05e2] type 00 class 0x030000
    [ 0.263210] pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
    [ 0.263219] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.263229] pci 0000:01:00.0: reg 1c: [mem 0xf8000000-0xf9ffffff 64bit]
    [ 0.263235] pci 0000:01:00.0: reg 24: [io 0xef00-0xef7f]
    [ 0.263242] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
    [ 0.269149] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.269155] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.269157] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.269161] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.269200] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.269213] pci 0000:02:00.0: reg 10: [io 0xde00-0xdeff]
    [ 0.269232] pci 0000:02:00.0: reg 18: [mem 0xfdfff000-0xfdffffff 64bit pref]
    [ 0.269245] pci 0000:02:00.0: reg 20: [mem 0xfdfe0000-0xfdfeffff 64bit pref]
    [ 0.269253] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.269300] pci 0000:02:00.0: supports D1 D2
    [ 0.269301] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.275814] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.275820] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.275822] pci 0000:00:0a.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.275825] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.275865] pci 0000:03:07.0: [168c:001a] type 00 class 0x020000
    [ 0.275887] pci 0000:03:07.0: reg 10: [mem 0xfdee0000-0xfdeeffff]
    [ 0.276014] pci 0000:03:0e.0: [104c:8024] type 00 class 0x0c0010
    [ 0.276035] pci 0000:03:0e.0: reg 10: [mem 0xfdeff000-0xfdeff7ff]
    [ 0.276047] pci 0000:03:0e.0: reg 14: [mem 0xfdef8000-0xfdefbfff]
    [ 0.276136] pci 0000:03:0e.0: supports D1 D2
    [ 0.276138] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
    [ 0.276174] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.276177] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.276181] pci 0000:00:14.4: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.276185] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff pref]
    [ 0.276186] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.276188] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.276190] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.276191] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.276193] pci 0000:00:14.4: bridge window [mem 0xd0000000-0xfebfffff] (subtractive decode)
    [ 0.276205] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.276360] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.276399] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
    [ 0.276426] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
    [ 0.276447] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.276449] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.276450] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.282962] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.282993] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283022] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283049] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283077] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283104] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283131] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283158] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283250] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.283252] vgaarb: loaded
    [ 0.283253] vgaarb: bridge control possible 0000:01:00.0
    [ 0.283281] PCI: Using ACPI for IRQ routing
    [ 0.291632] PCI: pci_cache_line_size set to 64 bytes
    [ 0.291638] pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
    [ 0.291701] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    [ 0.291703] e820: reserve RAM buffer [mem 0xcfee0000-0xcfffffff]
    [ 0.291778] NetLabel: Initializing
    [ 0.291779] NetLabel: domain hash size = 128
    [ 0.291780] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.291789] NetLabel: unlabeled traffic allowed by default
    [ 0.291804] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.291807] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    [ 0.293841] Switching to clocksource hpet
    [ 0.298189] pnp: PnP ACPI init
    [ 0.298200] ACPI: bus type pnp registered
    [ 0.298257] pnp 00:00: [bus 00-ff]
    [ 0.298260] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.298262] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.298264] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.298265] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.298267] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.298268] pnp 00:00: [mem 0xd0000000-0xfebfffff window]
    [ 0.298295] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.298303] pnp 00:01: [io 0x0010-0x001f]
    [ 0.298304] pnp 00:01: [io 0x0022-0x003f]
    [ 0.298306] pnp 00:01: [io 0x0044-0x005f]
    [ 0.298307] pnp 00:01: [io 0x0062-0x0063]
    [ 0.298308] pnp 00:01: [io 0x0065-0x006f]
    [ 0.298310] pnp 00:01: [io 0x0074-0x007f]
    [ 0.298311] pnp 00:01: [io 0x0091-0x0093]
    [ 0.298312] pnp 00:01: [io 0x00a2-0x00bf]
    [ 0.298313] pnp 00:01: [io 0x00e0-0x00ef]
    [ 0.298315] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.298316] pnp 00:01: [io 0x0220-0x0225]
    [ 0.298317] pnp 00:01: [io 0x0290-0x0294]
    [ 0.298353] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.298355] system 00:01: [io 0x0220-0x0225] has been reserved
    [ 0.298356] system 00:01: [io 0x0290-0x0294] has been reserved
    [ 0.298359] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.298785] pnp 00:02: [io 0x4100-0x411f]
    [ 0.298789] pnp 00:02: [io 0x0228-0x022f]
    [ 0.298791] pnp 00:02: [io 0x040b]
    [ 0.298792] pnp 00:02: [io 0x04d6]
    [ 0.298793] pnp 00:02: [io 0x0c00-0x0c01]
    [ 0.298794] pnp 00:02: [io 0x0c14]
    [ 0.298796] pnp 00:02: [io 0x0c50-0x0c52]
    [ 0.298797] pnp 00:02: [io 0x0c6c-0x0c6d]
    [ 0.298798] pnp 00:02: [io 0x0c6f]
    [ 0.298799] pnp 00:02: [io 0x0cd0-0x0cd1]
    [ 0.298801] pnp 00:02: [io 0x0cd2-0x0cd3]
    [ 0.298802] pnp 00:02: [io 0x0cd4-0x0cdf]
    [ 0.298803] pnp 00:02: [io 0x4000-0x40fe]
    [ 0.298804] pnp 00:02: [io 0x4210-0x4217]
    [ 0.298806] pnp 00:02: [io 0x0b00-0x0b0f]
    [ 0.298807] pnp 00:02: [io 0x0b10-0x0b1f]
    [ 0.298808] pnp 00:02: [io 0x0b20-0x0b3f]
    [ 0.298810] pnp 00:02: [mem 0x00000000-0x00000fff window]
    [ 0.298812] pnp 00:02: [mem 0xfee00400-0xfee00fff window]
    [ 0.298818] pnp 00:02: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.298844] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0007ffff pref]
    [ 0.298848] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
    [ 0.298885] system 00:02: [io 0x4100-0x411f] has been reserved
    [ 0.298887] system 00:02: [io 0x0228-0x022f] has been reserved
    [ 0.298889] system 00:02: [io 0x040b] has been reserved
    [ 0.298891] system 00:02: [io 0x04d6] has been reserved
    [ 0.298892] system 00:02: [io 0x0c00-0x0c01] has been reserved
    [ 0.298894] system 00:02: [io 0x0c14] has been reserved
    [ 0.298896] system 00:02: [io 0x0c50-0x0c52] has been reserved
    [ 0.298897] system 00:02: [io 0x0c6c-0x0c6d] has been reserved
    [ 0.298899] system 00:02: [io 0x0c6f] has been reserved
    [ 0.298900] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.298902] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.298904] system 00:02: [io 0x0cd4-0x0cdf] has been reserved
    [ 0.298905] system 00:02: [io 0x4000-0x40fe] has been reserved
    [ 0.298907] system 00:02: [io 0x4210-0x4217] has been reserved
    [ 0.298908] system 00:02: [io 0x0b00-0x0b0f] has been reserved
    [ 0.298910] system 00:02: [io 0x0b10-0x0b1f] has been reserved
    [ 0.298912] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    [ 0.298914] system 00:02: [mem 0xfee00400-0xfee00fff window] has been reserved
    [ 0.298917] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.298986] pnp 00:03: [dma 4]
    [ 0.298988] pnp 00:03: [io 0x0000-0x000f]
    [ 0.298989] pnp 00:03: [io 0x0080-0x0090]
    [ 0.298991] pnp 00:03: [io 0x0094-0x009f]
    [ 0.298992] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.299014] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.299038] pnp 00:04: [irq 0 disabled]
    [ 0.299049] pnp 00:04: [irq 8]
    [ 0.299051] pnp 00:04: [mem 0xfed00000-0xfed003ff]
    [ 0.299070] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.299088] pnp 00:05: [io 0x0070-0x0073]
    [ 0.299108] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.299114] pnp 00:06: [io 0x0061]
    [ 0.299134] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.299140] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.299147] pnp 00:07: [irq 13]
    [ 0.299167] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.299271] pnp 00:08: [io 0x03f0-0x03f5]
    [ 0.299272] pnp 00:08: [io 0x03f7]
    [ 0.299279] pnp 00:08: [irq 6]
    [ 0.299281] pnp 00:08: [dma 2]
    [ 0.299312] pnp 00:08: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.299438] pnp 00:09: [io 0x03f8-0x03ff]
    [ 0.299445] pnp 00:09: [irq 4]
    [ 0.299485] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.299507] pnp 00:0a: [io 0x0060]
    [ 0.299509] pnp 00:0a: [io 0x0064]
    [ 0.299516] pnp 00:0a: [irq 1]
    [ 0.299543] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.299562] pnp 00:0b: [mem 0xe0000000-0xefffffff]
    [ 0.299596] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.299598] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.299674] pnp 00:0c: [mem 0x000cda00-0x000cffff]
    [ 0.299675] pnp 00:0c: [mem 0x000f0000-0x000f7fff]
    [ 0.299677] pnp 00:0c: [mem 0x000f8000-0x000fbfff]
    [ 0.299678] pnp 00:0c: [mem 0x000fc000-0x000fffff]
    [ 0.299680] pnp 00:0c: [mem 0xcfee0000-0xcfefffff]
    [ 0.299681] pnp 00:0c: [mem 0xffff0000-0xffffffff]
    [ 0.299682] pnp 00:0c: [mem 0x00000000-0x0009ffff]
    [ 0.299684] pnp 00:0c: [mem 0x00100000-0xcfedffff]
    [ 0.299685] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
    [ 0.299687] pnp 00:0c: [mem 0xfee00000-0xfee00fff]
    [ 0.299688] pnp 00:0c: [mem 0xfff80000-0xfffeffff]
    [ 0.299692] pnp 00:0c: disabling [mem 0x000cda00-0x000cffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299694] pnp 00:0c: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299696] pnp 00:0c: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299698] pnp 00:0c: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299701] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299703] pnp 00:0c: disabling [mem 0x00100000-0xcfedffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299745] system 00:0c: [mem 0xcfee0000-0xcfefffff] could not be reserved
    [ 0.299747] system 00:0c: [mem 0xffff0000-0xffffffff] has been reserved
    [ 0.299749] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.299750] system 00:0c: [mem 0xfee00000-0xfee00fff] could not be reserved
    [ 0.299752] system 00:0c: [mem 0xfff80000-0xfffeffff] has been reserved
    [ 0.299755] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.299768] pnp: PnP ACPI: found 13 devices
    [ 0.299769] ACPI: ACPI bus type pnp unregistered
    [ 0.306130] pci 0000:01:00.0: BAR 6: assigned [mem 0xfb000000-0xfb07ffff pref]
    [ 0.306133] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.306135] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.306138] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.306140] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.306144] pci 0000:02:00.0: BAR 6: assigned [mem 0xfdf00000-0xfdf0ffff pref]
    [ 0.306145] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.306147] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.306149] pci 0000:00:0a.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.306152] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.306155] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 0.306157] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.306162] pci 0000:00:14.4: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.306165] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff pref]
    [ 0.306191] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.306193] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.306195] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.306197] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.306198] pci_bus 0000:00: resource 8 [mem 0xd0000000-0xfebfffff]
    [ 0.306200] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.306202] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfbffffff]
    [ 0.306203] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.306205] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    [ 0.306207] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
    [ 0.306209] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.306210] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.306212] pci_bus 0000:03: resource 1 [mem 0xfde00000-0xfdefffff]
    [ 0.306214] pci_bus 0000:03: resource 2 [mem 0xfdd00000-0xfddfffff pref]
    [ 0.306215] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.306217] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.306219] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.306220] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.306222] pci_bus 0000:03: resource 8 [mem 0xd0000000-0xfebfffff]
    [ 0.306249] NET: Registered protocol family 2
    [ 0.306336] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.307016] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.309549] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.309858] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.309859] TCP: reno registered
    [ 0.309868] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.309895] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.309974] NET: Registered protocol family 1
    [ 0.710572] pci 0000:01:00.0: Boot video device
    [ 0.710585] PCI: CLS 4 bytes, default 64
    [ 0.710637] Unpacking initramfs...
    [ 0.774193] Freeing initrd memory: 3700k freed
    [ 0.776235] PCI-DMA: Disabling AGP.
    [ 0.776306] PCI-DMA: aperture base @ c4000000 size 65536 KB
    [ 0.776307] PCI-DMA: using GART IOMMU.
    [ 0.776309] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    [ 0.779581] LVT offset 1 assigned for vector 0x400
    [ 0.779589] IBS: LVT offset 1 assigned
    [ 0.779613] perf: AMD IBS detected (0x0000001f)
    [ 0.779743] audit: initializing netlink socket (disabled)
    [ 0.779753] type=2000 audit(1348861535.663:1): initialized
    [ 0.789269] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.790783] VFS: Disk quotas dquot_6.5.2
    [ 0.790820] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.790894] msgmni has been set to 7909
    [ 0.791048] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.791075] io scheduler noop registered
    [ 0.791076] io scheduler deadline registered
    [ 0.791112] io scheduler cfq registered (default)
    [ 0.791228] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.791319] pcieport 0000:00:0a.0: irq 41 for MSI/MSI-X
    [ 0.791449] GHES: HEST is not enabled!
    [ 0.791503] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.812101] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.832955] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.833141] Linux agpgart interface v0.103
    [ 0.833180] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.833181] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.833304] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.833378] mousedev: PS/2 mouse device common for all mice
    [ 0.833425] rtc_cmos 00:05: RTC can wake from S4
    [ 0.833539] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.833571] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.833577] cpuidle: using governor ladder
    [ 0.833578] cpuidle: using governor menu
    [ 0.833689] drop_monitor: Initializing network drop monitor service
    [ 0.833749] TCP: cubic registered
    [ 0.833835] NET: Registered protocol family 10
    [ 0.833965] NET: Registered protocol family 17
    [ 0.833973] Key type dns_resolver registered
    [ 0.834070] PM: Hibernation image not present or could not be loaded.
    [ 0.834076] registered taskstats version 1
    [ 0.834539] rtc_cmos 00:05: setting system clock to 2012-09-28 19:45:35 UTC (1348861535)
    [ 0.835479] Freeing unused kernel memory: 760k freed
    [ 0.835631] Write protecting the kernel read-only data: 8192k
    [ 0.839453] Freeing unused kernel memory: 1488k freed
    [ 0.841313] Freeing unused kernel memory: 612k freed
    [ 0.848497] systemd-udevd[70]: starting version 189
    [ 0.851135] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.861403] Floppy drive(s): fd0 is 1.44M
    [ 0.868797] ACPI: bus type usb registered
    [ 0.868817] usbcore: registered new interface driver usbfs
    [ 0.868825] usbcore: registered new interface driver hub
    [ 0.868995] usbcore: registered new device driver usb
    [ 0.869288] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.869717] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 0.869754] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 0.869763] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.869785] QUIRK: Enable AMD PLL fix
    [ 0.869787] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
    [ 0.869799] ehci_hcd 0000:00:12.2: debug port 1
    [ 0.869827] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
    [ 0.871224] SCSI subsystem initialized
    [ 0.872843] libata version 3.00 loaded.
    [ 0.874245] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.877166] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.877278] hub 1-0:1.0: USB hub found
    [ 0.877281] hub 1-0:1.0: 6 ports detected
    [ 0.878035] FDC 0 is a post-1991 82077
    [ 0.878198] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 0.878204] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    [ 0.878211] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.878223] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
    [ 0.878238] ehci_hcd 0000:00:13.2: debug port 1
    [ 0.878264] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
    [ 0.887161] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.887266] hub 2-0:1.0: USB hub found
    [ 0.887269] hub 2-0:1.0: 6 ports detected
    [ 0.887719] ahci 0000:00:11.0: version 3.0
    [ 0.887841] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    [ 0.887844] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    [ 0.888332] scsi0 : ahci
    [ 0.888396] scsi1 : ahci
    [ 0.888447] scsi2 : ahci
    [ 0.888494] scsi3 : ahci
    [ 0.888576] ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
    [ 0.888578] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
    [ 0.888580] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
    [ 0.888583] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
    [ 0.888675] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.888681] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
    [ 0.888719] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
    [ 0.944618] hub 3-0:1.0: USB hub found
    [ 0.944624] hub 3-0:1.0: 3 ports detected
    [ 0.944916] ohci_hcd 0000:00:12.1: OHCI Host Controller
    [ 0.944922] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
    [ 0.944936] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
    [ 1.001279] hub 4-0:1.0: USB hub found
    [ 1.001285] hub 4-0:1.0: 3 ports detected
    [ 1.001404] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 1.001409] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
    [ 1.001435] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
    [ 1.057932] hub 5-0:1.0: USB hub found
    [ 1.057938] hub 5-0:1.0: 3 ports detected
    [ 1.058071] ohci_hcd 0000:00:13.1: OHCI Host Controller
    [ 1.058076] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
    [ 1.058089] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
    [ 1.114589] hub 6-0:1.0: USB hub found
    [ 1.114595] hub 6-0:1.0: 3 ports detected
    [ 1.114705] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 1.114710] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
    [ 1.114723] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
    [ 1.171271] hub 7-0:1.0: USB hub found
    [ 1.171277] hub 7-0:1.0: 2 ports detected
    [ 1.207184] ata3: SATA link down (SStatus 0 SControl 300)
    [ 1.207225] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.300449] usb 2-4: new high-speed USB device number 3 using ehci_hcd
    [ 1.373774] ata2: softreset failed (device not ready)
    [ 1.373843] ata2: applying PMP SRST workaround and retrying
    [ 1.373866] ata1: softreset failed (device not ready)
    [ 1.373934] ata1: applying PMP SRST workaround and retrying
    [ 1.425928] hub 2-4:1.0: USB hub found
    [ 1.426276] hub 2-4:1.0: 4 ports detected
    [ 1.540428] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.540459] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.541221] ata1.00: ATA-8: WDC WD3200AAKS-75L9A0, 01.03E01, max UDMA/133
    [ 1.541224] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.542034] ata1.00: configured for UDMA/133
    [ 1.542185] scsi 0:0:0:0: Direct-Access ATA WDC WD3200AAKS-7 01.0 PQ: 0 ANSI: 5
    [ 1.552905] ata2.00: ATAPI: LITE-ON DVDRW LH-20A1L, BL05, max UDMA/100
    [ 1.565919] ata2.00: configured for UDMA/100
    [ 1.567862] scsi 1:0:0:0: CD-ROM LITE-ON DVDRW LH-20A1L BL05 PQ: 0 ANSI: 5
    [ 1.570090] scsi4 : pata_atiixp
    [ 1.570937] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.570968] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.570970] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.570992] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.571032] scsi5 : pata_atiixp
    [ 1.571566] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
    [ 1.571568] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
    [ 1.574704] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.574707] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.574836] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.583928] sda: sda1 sda2 sda3 sda4
    [ 1.584257] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.677054] usb 5-3: new full-speed USB device number 2 using ohci_hcd
    [ 1.780379] Refined TSC clocksource calibration: 2812.808 MHz.
    [ 1.780391] Switching to clocksource tsc
    [ 1.850813] usbcore: registered new interface driver usbhid
    [ 1.850814] usbhid: USB HID core driver
    [ 1.851297] input: HID 1d57:0005 as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.0/input/input1
    [ 1.851380] hid-generic 0003:1D57:0005.0001: input,hidraw0: USB HID v1.10 Mouse [HID 1d57:0005] on usb-0000:00:13.0-3/input0
    [ 1.914434] usb 2-4.4: new high-speed USB device number 4 using ehci_hcd
    [ 1.925431] device-mapper: uevent: version 1.0.3
    [ 1.925535] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: [email protected]
    [ 2.294145] REISERFS (device dm-3): found reiserfs format "3.6" with standard journal
    [ 2.294160] REISERFS (device dm-3): using ordered data mode
    [ 2.294161] reiserfs: using flush barriers
    [ 2.294331] REISERFS (device dm-3): journal params: device dm-3, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    [ 2.294793] REISERFS (device dm-3): checking transaction log (dm-3)
    [ 2.328438] REISERFS (device dm-3): Using r5 hash to sort names
    [ 3.521243] systemd-udevd[196]: starting version 192
    [ 3.731543] vboxdrv: Found 3 processor cores.
    [ 3.731692] vboxdrv: fAsync=0 offMin=0x421 offMax=0x19b7
    [ 3.731735] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 3.731736] vboxdrv: Successfully loaded version 4.2.0_OSE (interface 0x001a0004).
    [ 4.078334] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 4.078340] ACPI: Power Button [PWRB]
    [ 4.078389] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 4.078391] ACPI: Power Button [PWRF]
    [ 4.118249] wmi: Mapper loaded
    [ 4.264495] sp5100_tco: SP5100 TCO WatchDog Timer Driver v0.01
    [ 4.264551] sp5100_tco: mmio address 0xfec000f0 already in use
    [ 4.266129] EDAC MC: Ver: 2.1.0
    [ 4.308369] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input4
    [ 4.326814] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input5
    [ 4.326881] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    [ 4.326938] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    [ 4.326984] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 4.327034] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 4.327093] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 4.327137] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 4.327181] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
    [ 4.331081] k10temp 0000:00:18.3: unreliable CPU thermal sensor; monitoring disabled
    [ 4.331239] ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \SOR1 1 (20120320/utaddress-251)
    [ 4.331244] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.370081] firewire_ohci 0000:03:0e.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
    [ 4.370182] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.370266] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
    [ 4.370532] r8169 0000:02:00.0: eth0: RTL8168c/8111c at 0xffffc90000656000, 00:24:1d:14:eb:1c, XID 1c4000c0 IRQ 42
    [ 4.370534] r8169 0000:02:00.0: eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
    [ 4.460371] MCE: In-kernel MCE decoding enabled.
    [ 4.461269] AMD64 EDAC driver v3.4.0
    [ 4.461326] EDAC amd64: DRAM ECC disabled.
    [ 4.461332] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    (Note that use of the override may cause unknown side effects.)
    [ 4.681980] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.870047] firewire_core 0000:03:0e.0: created device fw0: GUID 0019f1ec0000241d, S400
    [ 4.906613] ath5k 0000:03:07.0: registered as 'phy0'
    [ 5.157960] kvm: Nested Virtualization enabled
    [ 5.157964] kvm: Nested Paging enabled
    [ 5.212068] powernow-k8: Found 1 AMD Phenom(tm) II X3 720 Processor (3 cpu cores) (version 2.20.00)
    [ 5.212100] powernow-k8: 0 : pstate 0 (2800 MHz)
    [ 5.212101] powernow-k8: 1 : pstate 1 (2100 MHz)
    [ 5.212102] powernow-k8: 2 : pstate 2 (1600 MHz)
    [ 5.212103] powernow-k8: 3 : pstate 3 (800 MHz)
    [ 5.445767] microcode: CPU0: patch_level=0x01000086
    [ 5.513053] ath: EEPROM regdomain: 0x809c
    [ 5.513060] ath: EEPROM indicates we should expect a country code
    [ 5.513064] ath: doing EEPROM country->regdmn map search
    [ 5.513067] ath: country maps to regdmn code: 0x52
    [ 5.513070] ath: Country alpha2 being used: CN
    [ 5.513073] ath: Regpair used: 0x52
    [ 5.720324] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 5.720419] microcode: CPU1: patch_level=0x01000086
    [ 5.721269] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 5.721373] microcode: CPU2: patch_level=0x01000086
    [ 5.722356] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 5.722563] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 5.801835] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 5.802304] ath5k: phy0: Atheros AR2413 chip found (MAC: 0x78, PHY: 0x45)
    [ 6.296710] nvidia: module license 'NVIDIA' taints kernel.
    [ 6.296714] Disabling lock debugging due to kernel taint
    [ 6.309419] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 6.309823] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 304.51 Tue Sep 18 17:16:56 PDT 2012
    [ 6.321474] Linux media interface: v0.10
    [ 6.384863] Linux video capture interface: v2.00
    [ 6.452628] uvcvideo: Found UVC 1.00 device <unnamed> (046d:0808)
    [ 6.469190] input: UVC Camera (046d:0808) as /devices/pci0000:00/0000:00:13.2/usb2/2-4/2-4.4/2-4.4:1.0/input/input13
    [ 6.469404] usbcore: registered new interface driver uvcvideo
    [ 6.469407] USB Video Class driver (1.1.1)
    [ 7.020908] usbcore: registered new interface driver snd-usb-audio
    [ 7.051400] set resolution quirk: cval->res = 384
    [ 8.232297] reiserfs: enabling write barrier flush mode
    [ 8.511269] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 8.515067] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 8.556782] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
    [ 10.739934] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 11.452652] wlan0: authenticate with 00:1f:c6:3d:84:ba
    [ 11.461052] wlan0: send auth to 00:1f:c6:3d:84:ba (try 1/3)
    [ 11.462516] wlan0: authenticated
    [ 11.469067] wlan0: associate with 00:1f:c6:3d:84:ba (try 1/3)
    [ 11.470817] wlan0: RX AssocResp from 00:1f:c6:3d:84:ba (capab=0x401 status=0 aid=3)
    [ 11.471130] wlan0: associated
    [ 11.471521] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 24.567793] NVRM: GPU at 0000:01:00: GPU-ac314c58-0b61-fb24-fa28-bac76d8e581b
    [ 27.419761] fuse init (API version 7.19)
    [ 31.119563] EXT4-fs (dm-2): re-mounted. Opts: commit=0
    [ 2088.845650] ata1.00: exception Emask 0x50 SAct 0x78000ffc SErr 0x400800 action 0x6 frozen
    [ 2088.845660] ata1.00: irq_stat 0x08000000, interface fatal error
    [ 2088.845667] ata1: SError: { HostInt Handshk }
    [ 2088.845674] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845687] ata1.00: cmd 61/08:10:97:ae:07/00:00:1a:00:00/40 tag 2 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845694] ata1.00: status: { DRDY }
    [ 2088.845699] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845711] ata1.00: cmd 61/08:18:b7:ae:07/00:00:1a:00:00/40 tag 3 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845716] ata1.00: status: { DRDY }
    [ 2088.845721] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845732] ata1.00: cmd 61/20:20:bf:ae:07/00:00:1a:00:00/40 tag 4 ncq 16384 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845737] ata1.00: status: { DRDY }
    [ 2088.845742] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845753] ata1.00: cmd 61/c8:28:df:ae:07/00:00:1a:00:00/40 tag 5 ncq 102400 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845758] ata1.00: status: { DRDY }
    [ 2088.845763] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845774] ata1.00: cmd 61/90:30:a7:af:07/00:00:1a:00:00/40 tag 6 ncq 73728 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845779] ata1.00: status: { DRDY }
    [ 2088.845783] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845795] ata1.00: cmd 61/b8:38:37:b0:07/00:00:1a:00:00/40 tag 7 ncq 94208 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845800] ata1.00: status: { DRDY }
    [ 2088.845804] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845815] ata1.00: cmd 61/a8:40:ef:b0:07/00:00:1a:00:00/40 tag 8 ncq 86016 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845820] ata1.00: status: { DRDY }
    [ 2088.845825] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845836] ata1.00: cmd 61/80:48:97:b1:07/00:00:1a:00:00/40 tag 9 ncq 65536 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845841] ata1.00: status: { DRDY }
    [ 2088.845845] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845857] ata1.00: cmd 61/b0:50:17:b2:07/00:00:1a:00:00/40 tag 10 ncq 90112 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845862] ata1.00: status: { DRDY }
    [ 2088.845867] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845878] ata1.00: cmd 61/d8:58:c7:b2:07/00:00:1a:00:00/40 tag 11 ncq 110592 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845883] ata1.00: status: { DRDY }
    [ 2088.845889] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845900] ata1.00: cmd 61/08:d8:8f:ae:07/00:00:1a:00:00/40 tag 27 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845905] ata1.00: status: { DRDY }
    [ 2088.845910] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845922] ata1.00: cmd 61/08:e0:9f:ae:07/00:00:1a:00:00/40 tag 28 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845927] ata1.00: status: { DRDY }
    [ 2088.845931] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845942] ata1.00: cmd 61/08:e8:a7:ae:07/00:00:1a:00:00/40 tag 29 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845947] ata1.00: status: { DRDY }
    [ 2088.845954] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845965] ata1.00: cmd 61/08:f0:af:ae:07/00:00:1a:00:00/40 tag 30 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845970] ata1.00: status: { DRDY }
    [ 2088.845978] ata1: hard resetting link
    [ 2089.329937] ata1: softreset failed (device not ready)
    [ 2089.329948] ata1: applying PMP SRST workaround and retrying
    [ 2089.496590] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2089.498245] ata1.00: configured for UDMA/133
    [ 2089.509941] sd 0:0:0:0: [sda]
    [ 2089.509950] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.509956] sd 0:0:0:0: [sda]
    [ 2089.509959] Sense Key : 0xb [current] [descriptor]
    [ 2089.509966] Descriptor sense data with sense descriptors (in hex):
    [ 2089.509969] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.509987] 1a 07 b2 c7
    [ 2089.509996] sd 0:0:0:0: [sda]
    [ 2089.509999] ASC=0x0 ASCQ=0x0
    [ 2089.510004] sd 0:0:0:0: [sda] CDB:
    [ 2089.510006] cdb[0]=0x2a: 2a 00 1a 07 ae 97 00 00 08 00
    [ 2089.510021] end_request: I/O error, dev sda, sector 436711063
    [ 2089.510032] Buffer I/O error on device dm-3, logical block 631
    [ 2089.510035] lost page write due to I/O error on dm-3
    [ 2089.510058] sd 0:0:0:0: [sda]
    [ 2089.510061] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510066] sd 0:0:0:0: [sda]
    [ 2089.510068] Sense Key : 0xb [current] [descriptor]
    [ 2089.510073] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510075] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510091] 1a 07 b2 c7
    [ 2089.510099] sd 0:0:0:0: [sda]
    [ 2089.510101] ASC=0x0 ASCQ=0x0
    [ 2089.510106] sd 0:0:0:0: [sda] CDB:
    [ 2089.510108] cdb[0]=0x2a: 2a 00 1a 07 ae b7 00 00 08 00
    [ 2089.510121] end_request: I/O error, dev sda, sector 436711095
    [ 2089.510126] Buffer I/O error on device dm-3, logical block 635
    [ 2089.510129] lost page write due to I/O error on dm-3
    [ 2089.510140] sd 0:0:0:0: [sda]
    [ 2089.510142] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510146] sd 0:0:0:0: [sda]
    [ 2089.510149] Sense Key : 0xb [current] [descriptor]
    [ 2089.510153] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510155] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510171] 1a 07 b2 c7
    [ 2089.510178] sd 0:0:0:0: [sda]
    [ 2089.510181] ASC=0x0 ASCQ=0x0
    [ 2089.510185] sd 0:0:0:0: [sda] CDB:
    [ 2089.510187] cdb[0]=0x2a: 2a 00 1a 07 ae bf 00 00 20 00
    [ 2089.510200] end_request: I/O error, dev sda, sector 436711103
    [ 2089.510205] Buffer I/O error on device dm-3, logical block 636
    [ 2089.510208] lost page write due to I/O error on dm-3
    [ 2089.510212] Buffer I/O error on device dm-3, logical block 637
    [ 2089.510215] lost page write due to I/O error on dm-3
    [ 2089.510220] Buffer I/O error on device dm-3, logical block 638
    [ 2089.510222] lost page write due to I/O error on dm-3
    [ 2089.510227] Buffer I/O error on device dm-3, logical block 639
    [ 2089.510230] lost page write due to I/O error on dm-3
    [ 2089.510245] sd 0:0:0:0: [sda]
    [ 2089.510248] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510252] sd 0:0:0:0: [sda]
    [ 2089.510254] Sense Key : 0xb [current] [descriptor]
    [ 2089.510258] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510261] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510276] 1a 07 b2 c7
    [ 2089.510284] sd 0:0:0:0: [sda]
    [ 2089.510286] ASC=0x0 ASCQ=0x0
    [ 2089.510290] sd 0:0:0:0: [sda] CDB:
    [ 2089.510293] cdb[0]=0x2a: 2a 00 1a 07 ae df 00 00 c8 00
    [ 2089.510305] end_request: I/O error, dev sda, sector 436711135
    [ 2089.510310] Buffer I/O error on device dm-3, logical block 640
    [ 2089.510313] lost page write due to I/O error on dm-3
    [ 2089.510317] Buffer I/O error on device dm-3, logical block 641
    [ 2089.510320] lost page write due to I/O error on dm-3
    [ 2089.510325] Buffer I/O error on device dm-3, logical block 642
    [ 2089.510327] lost page write due to I/O error on dm-3
    [ 2089.510332] Buffer I/O error on device dm-3, logical block 643
    [ 2089.510335] lost page write due to I/O error on dm-3
    [ 2089.510400] sd 0:0:0:0: [sda]
    [ 2089.510403] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510407] sd 0:0:0:0: [sda]
    [ 2089.510409] Sense Key : 0xb [current] [descriptor]
    [ 2089.510414] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510416] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510432] 1a 07 b2 c7
    [ 2089.510440] sd 0:0:0:0: [sda]
    [ 2089.510442] ASC=0x0 ASCQ=0x0
    [ 2089.510446] sd 0:0:0:0: [sda] CDB:
    [ 2089.510449] cdb[0]=0x2a: 2a 00 1a 07 af a7 00 00 90 00
    [ 2089.510461] end_request: I/O error, dev sda, sector 436711335
    [ 2089.510502] sd 0:0:0:0: [sda]
    [ 2089.510505] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510509] sd 0:0:0:0: [sda]
    [ 2089.510511] Sense Key : 0xb [current] [descriptor]
    [ 2089.510515] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510518] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510533] 1a 07 b2 c7
    [ 2089.510541] sd 0:0:0:0: [sda]
    [ 2089.510543] ASC=0x0 ASCQ=0x0
    [ 2089.510548] sd 0:0:0:0: [sda] CDB:
    [ 2089.510550] cdb[0]=0x2a: 2a 00 1a 07 b0 37 00 00 b8 00
    [ 2089.510563] end_request: I/O error, dev sda, sector 436711479
    [ 2089.510610] sd 0:0:0:0: [sda]
    [ 2089.510613] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510617] sd 0:0:0:0: [sda]
    [ 2089.510619] Sense Key : 0xb [current] [descriptor]
    [ 2089.510623] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510626] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510641] 1a 07 b2 c7
    [ 2089.510649] sd 0:0:0:0: [sda]
    [ 2089.510651] ASC=0x0 ASCQ=0x0
    [ 2089.510656] sd 0:0:0:0: [sda] CDB:
    [ 2089.510658] cdb[0]=0x2a: 2a 00 1a 07 b0 ef 00 00 a8 00
    [ 2089.510670] end_request: I/O error, dev sda, sector 436711663
    [ 2089.510713] sd 0:0:0:0: [sda]
    [ 2089.510716] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510720] sd 0:0:0:0: [sda]
    [ 2089.510722] Sense Key : 0xb [current] [descriptor]
    [ 2089.510727] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510729] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510744] 1a 07 b2 c7
    [ 2089.510752] sd 0:0:0:0: [sda]
    [ 2089.510754] ASC=0x0 ASCQ=0x0
    [ 2089.510759] sd 0:0:0:0: [sda] CDB:
    [ 2089.510761] cdb[0]=0x2a: 2a 00 1a 07 b1 97 00 00 80 00
    [ 2089.510774] end_request: I/O error, dev sda, sector 436711831
    [ 2089.510812] sd 0:0:0:0: [sda]
    [ 2089.510815] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510819] sd 0:0:0:0: [sda]
    [ 2089.510821] Sense Key : 0xb [current] [descriptor]
    [ 2089.510825] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510828] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510843] 1a 07 b2 c7
    [ 2089.510851] sd 0:0:0:0: [sda]
    [ 2089.510854] ASC=0x0 ASCQ=0x0
    [ 2089.510858] sd 0:0:0:0: [sda] CDB:
    [ 2089.510860] cdb[0]=0x2a: 2a 00 1a 07 b2 17 00 00 b0 00
    [ 2089.510873] end_request: I/O error, dev sda, sector 436711959
    [ 2089.510919] sd 0:0:0:0: [sda]
    [ 2089.510922] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510926] sd 0:0:0:0: [sda]
    [ 2089.510928] Sense Key : 0xb [current] [descriptor]
    [ 2089.510933] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510935] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510951] 1a 07 b2 c7
    [ 2089.510959] sd 0:0:0:0: [sda]
    [ 2089.510961] ASC=0x0 ASCQ=0x0
    [ 2089.510966] sd 0:0:0:0: [sda] CDB:
    [ 2089.510968] cdb[0]=0x2a: 2a 00 1a 07 b2 c7 00 00 d8 00
    [ 2089.510980] end_request: I/O error, dev sda, sector 436712135
    [ 2089.511030] sd 0:0:0:0: [sda]
    [ 2089.511033] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511037] sd 0:0:0:0: [sda]
    [ 2089.511039] Sense Key : 0xb [current] [descriptor]
    [ 2089.511043] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511046] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511061] 1a 07 b2 c7
    [ 2089.511069] sd 0:0:0:0: [sda]
    [ 2089.511071] ASC=0x0 ASCQ=0x0
    [ 2089.511076] sd 0:0:0:0: [sda] CDB:
    [ 2089.511078] cdb[0]=0x2a: 2a 00 1a 07 ae 8f 00 00 08 00
    [ 2089.511090] end_request: I/O error, dev sda, sector 436711055
    [ 2089.511111] sd 0:0:0:0: [sda]
    [ 2089.511114] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511118] sd 0:0:0:0: [sda]
    [ 2089.511120] Sense Key : 0xb [current] [descriptor]
    [ 2089.511125] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511128] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511144] 1a 07 b2 c7
    [ 2089.511151] sd 0:0:0:0: [sda]
    [ 2089.511154] ASC=0x0 ASCQ=0x0
    [ 2089.511158] sd 0:0:0:0: [sda] CDB:
    [ 2089.511160] cdb[0]=0x2a: 2a 00 1a 07 ae 9f 00 00 08 00
    [ 2089.511173] end_request: I/O error, dev sda, sector 436711071
    [ 2089.511188] sd 0:0:0:0: [sda]
    [ 2089.511191] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511195] sd 0:0:0:0: [sda]
    [ 2089.511197] Sense Key : 0xb [current] [descriptor]
    [ 2089.511201] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511204] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511219] 1a 07 b2 c7
    [ 2089.511227] sd 0:0:0:0: [sda]
    [ 2089.511230] ASC=0x0 ASCQ=0x0
    [ 2089.511234] sd 0:0:0:0: [sda] CDB:
    [ 2089.511236] cdb[0]=0x2a: 2a 00 1a 07 ae a7 00 00 08 00
    [ 2089.511249] end_request: I/O error, dev sda, sector 436711079
    [ 2089.511263] sd 0:0:0:0: [sda]
    [ 2089.511266] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511270] sd 0:0:0:0: [sda]
    [ 2089.511272] Sense Key : 0xb [current] [descriptor]
    [ 2089.511277] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511279] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511295] 1a 07 b2 c7
    [ 2089.511302] sd 0:0:0:0: [sda]
    [ 2089.511305] ASC=0x0 ASCQ=0x0
    [ 2089.511309] sd 0:0:0:0: [sda] CDB:
    [ 2089.511311] cdb[0]=0x2a: 2a 00 1a 07 ae af 00 00 08 00
    [ 2089.511324] end_request: I/O error, dev sda, sector 436711087
    [ 2089.511343] ata1: EH complete
    [ 2089.511517] REISERFS abort (device dm-3): Journal write error in flush_commit_list
    error.log (only part related to the current session):
    Sep 28 20:20:21 localhost kernel: [ 2088.845650] ata1.00: exception Emask 0x50 SAct 0x78000ffc SErr 0x400800 action 0x6 frozen
    Sep 28 20:20:21 localhost kernel: [ 2088.845660] ata1.00: irq_stat 0x08000000, interface fatal error
    Sep 28 20:20:21 localh

    uzsolt wrote:
    I've same problem with an asus laptop, with one hdd. On the device I've some partitions (home, root, backup, var) but this error appears with 'home' only. Sometimes the mount options turns into "read-only", but only on home-partition (ext4, but root, var and a download-directory is ext4 too but they works well).
    I found this: https://bbs.archlinux.org/viewtopic.php … 9#p1052099 - I hope this helps for me - and for you too
    Errors in logs:
    Dec 02 09:44:03 [kernel] [ 666.911555] ata1.00: exception Emask 0x50 SAct 0x4 SErr 0x400800 action 0x6 frozen
    Dec 02 09:44:03 [kernel] [ 666.911561] ata1.00: irq_stat 0x08000000, interface fatal error
    Dec 02 09:44:03 [kernel] [ 666.911564] ata1: SError: { HostInt Handshk }
    Dec 02 09:44:03 [kernel] [ 666.911568] ata1.00: failed command: WRITE FPDMA QUEUED
    Dec 02 09:44:03 [kernel] [ 666.911574] ata1.00: cmd 61/68:10:53:25:2a/00:00:04:00:00/40 tag 2 ncq 53248 out
    Dec 02 09:44:03 [kernel] [ 666.911574] res 40/00:10:53:25:2a/00:00:04:00:00/40 Emask 0x50 (ATA bus error)
    Dec 02 09:44:03 [kernel] [ 666.911577] ata1.00: status: { DRDY }
    Dec 02 09:44:03 [kernel] [ 666.911583] ata1: hard resetting link
    Dec 02 09:44:03 [kernel] [ 667.396660] ata1: softreset failed (device not ready)
    Dec 02 09:44:03 [kernel] [ 667.396668] ata1: applying PMP SRST workaround and retrying
    Dec 02 09:44:03 [kernel] [ 667.563375] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Dec 02 09:44:03 [kernel] [ 667.614772] ata1.00: configured for UDMA/133
    Dec 02 09:44:03 [kernel] [ 667.614796] sd 0:0:0:0: [sda]
    Dec 02 09:44:03 [kernel] [ 667.614798] Result: hostbyte=0x00 driverbyte=0x08
    Dec 02 09:44:03 [kernel] [ 667.614801] sd 0:0:0:0: [sda]
    Dec 02 09:44:03 [kernel] [ 667.614802] Sense Key : 0xb [current] [descriptor]
    Dec 02 09:44:03 [kernel] [ 667.614806] Descriptor sense data with sense descriptors (in hex):
    Dec 02 09:44:03 [kernel] [ 667.614808] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    Dec 02 09:44:03 [kernel] [ 667.614816] 04 2a 25 53
    Dec 02 09:44:03 [kernel] [ 667.614821] sd 0:0:0:0: [sda]
    Dec 02 09:44:03 [kernel] [ 667.614822] ASC=0x0 ASCQ=0x0
    Dec 02 09:44:03 [kernel] [ 667.614825] sd 0:0:0:0: [sda] CDB:
    Dec 02 09:44:03 [kernel] [ 667.614827] cdb[0]=0x2a: 2a 00 04 2a 25 53 00 00 68 00
    Dec 02 09:44:03 [kernel] [ 667.614834] end_request: I/O error, dev sda, sector 69870931
    Dec 02 09:44:03 [kernel] [ 667.614862] ata1: EH complete
    Dec 02 09:44:03 [kernel] [ 667.614949] Aborting journal on device sda3-8.
    Dec 02 09:44:03 [kernel] [ 667.614962] EXT4-fs error (device sda3) in ext4_reserve_inode_write:4550: Journal has aborted
    Dec 02 09:44:04 [kernel] [ 667.692734] EXT4-fs error (device sda3) in ext4_dirty_inode:4669: Journal has aborted
    Dec 02 09:44:04 [kernel] [ 667.720681] EXT4-fs error (device sda3): ext4_journal_start_sb:349: Detected aborted journal
    Dec 02 09:44:04 [kernel] [ 667.720690] EXT4-fs (sda3): Remounting filesystem read-only
    Dec 02 09:44:04 [kernel] [ 667.721798] EXT4-fs error (device sda3): ext4_journal_start_sb:349: Detected aborted journal
    Dec 02 09:44:30 [kernel] [ 694.098612] ata1.00: exception Emask 0x50 SAct 0x40 SErr 0x800 action 0x6 frozen
    Dec 02 09:44:30 [kernel] [ 694.098622] ata1.00: irq_stat 0x08000000, interface fatal error
    Dec 02 09:44:30 [kernel] [ 694.098627] ata1: SError: { HostInt }
    Dec 02 09:44:30 [kernel] [ 694.098635] ata1.00: failed command: WRITE FPDMA QUEUED
    Dec 02 09:44:30 [kernel] [ 694.098647] ata1.00: cmd 61/08:30:53:a6:e5/00:00:05:00:00/40 tag 6 ncq 4096 out
    Dec 02 09:44:30 [kernel] [ 694.098647] res 40/00:30:53:a6:e5/00:00:05:00:00/40 Emask 0x50 (ATA bus error)
    Dec 02 09:44:30 [kernel] [ 694.098653] ata1.00: status: { DRDY }
    Dec 02 09:44:30 [kernel] [ 694.098663] ata1: hard resetting link
    Dec 02 09:44:30 [kernel] [ 694.583317] ata1: softreset failed (device not ready)
    Dec 02 09:44:30 [kernel] [ 694.583328] ata1: applying PMP SRST workaround and retrying
    Dec 02 09:44:31 [kernel] [ 694.749997] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Dec 02 09:44:31 [kernel] [ 694.804387] ata1.00: configured for UDMA/133
    Dec 02 09:44:31 [kernel] [ 694.804425] sd 0:0:0:0: [sda]
    Dec 02 09:44:31 [kernel] [ 694.804428] Result: hostbyte=0x00 driverbyte=0x08
    Dec 02 09:44:31 [kernel] [ 694.804434] sd 0:0:0:0: [sda]
    Dec 02 09:44:31 [kernel] [ 694.804437] Sense Key : 0xb [current] [descriptor]
    Dec 02 09:44:31 [kernel] [ 694.804443] Descriptor sense data with sense descriptors (in hex):
    Dec 02 09:44:31 [kernel] [ 694.804447] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    Dec 02 09:44:31 [kernel] [ 694.804463] 05 e5 a6 53
    Dec 02 09:44:31 [kernel] [ 694.804472] sd 0:0:0:0: [sda]
    Dec 02 09:44:31 [kernel] [ 694.804475] ASC=0x0 ASCQ=0x0
    Dec 02 09:44:31 [kernel] [ 694.804480] sd 0:0:0:0: [sda] CDB:
    Dec 02 09:44:31 [kernel] [ 694.804482] cdb[0]=0x2a: 2a 00 05 e5 a6 53 00 00 08 00
    Dec 02 09:44:31 [kernel] [ 694.804497] end_request: I/O error, dev sda, sector 98936403
    Dec 02 09:44:31 [kernel] [ 694.804505] Buffer I/O error on device sda3, logical block 9437196
    Dec 02 09:44:31 [kernel] [ 694.804508] lost page write due to I/O error on sda3
    Dec 02 09:44:31 [kernel] [ 694.804537] ata1: EH complete
    The other partition works well on same disk as I wrote above.
    Is /home on /dev/sda3?

  • Long boot due to ata recognition problems [SOLVED]

    As the message says my boot is taking about 10 minutes, of which 95% of the time is spent trying to recognize ata4 device.
    I'm using the x86_64 version of arch, which works just fine on my laptop, and on my desktop - when it boots that is.
    Another thing that puzzles me is how am I getting those errors, considering I don't really have 4 ata drives, yet only two - hard disk and dvd rom.
    Anyway, this is my dmesg output :
    Linux version 2.6.24-ARCH (root@artin) (gcc version 4.3.0 (GCC) ) #1 SMP PREEMPT Sun Mar 30 10:50:22 CEST 2008
    Command line: root=/dev/sda1 ro vga=791
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
    BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
    BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
    BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    Entering add_active_range(0, 0, 159) 0 entries of 256 used
    Entering add_active_range(0, 256, 524000) 1 entries of 256 used
    end_pfn_map = 1048576
    DMI 2.4 present.
    ACPI: RSDP 000F9210, 0014 (r0 IntelR)
    ACPI: RSDT 7FEE3040, 003C (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: FACP 7FEE30C0, 0074 (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: DSDT 7FEE3180, 4BB6 (r1 INTELR AWRDACPI 1000 MSFT 100000E)
    ACPI: FACS 7FEE0000, 0040
    ACPI: HPET 7FEE7E80, 0038 (r1 IntelR AWRDACPI 42302E31 AWRD 98)
    ACPI: MCFG 7FEE7F00, 003C (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: APIC 7FEE7D80, 0084 (r1 IntelR AWRDACPI 42302E31 AWRD 0)
    ACPI: SSDT 7FEE7F80, 015C (r1 PmRef Cpu0Ist 3000 INTL 20060912)
    ACPI: SSDT 7FEE8410, 02F1 (r1 PmRef CpuPm 3000 INTL 20040311)
    Entering add_active_range(0, 0, 159) 0 entries of 256 used
    Entering add_active_range(0, 256, 524000) 1 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    DMA32 4096 -> 1048576
    Normal 1048576 -> 1048576
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0 -> 159
    0: 256 -> 524000
    On node 0 totalpages: 523903
    DMA zone: 56 pages used for memmap
    DMA zone: 1354 pages reserved
    DMA zone: 2589 pages, LIFO batch:0
    DMA32 zone: 7108 pages used for memmap
    DMA32 zone: 512796 pages, LIFO batch:31
    Normal zone: 0 pages used for memmap
    Movable zone: 0 pages used for memmap
    ACPI: PM-Timer IO Port: 0x408
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Processor #0 (Bootup-CPU)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Processor #1
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 4, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Setting APIC routing to flat
    ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    Using ACPI (MADT) for SMP configuration information
    swsusp: Registered nosave memory region: 000000000009f000 - 00000000000a0000
    swsusp: Registered nosave memory region: 00000000000a0000 - 00000000000f0000
    swsusp: Registered nosave memory region: 00000000000f0000 - 0000000000100000
    Allocating PCI resources starting at 80000000 (gap: 7ff00000:60100000)
    SMP: Allowing 4 CPUs, 2 hotplug CPUs
    PERCPU: Allocating 33200 bytes of per cpu data
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 515385
    Kernel command line: root=/dev/sda1 ro vga=791
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 32768 bytes)
    hpet clockevent registered
    TSC calibrated against HPET
    time.c: Detected 2395.908 MHz processor.
    Console: colour dummy device 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Checking aperture...
    Calgary: detecting Calgary via BIOS EBDA area
    Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Memory: 2057296k/2096000k available (2958k kernel code, 38092k reserved, 1092k data, 248k init)
    SLUB: Genslabs=11, HWalign=64, Order=0-1, MinObjects=4, CPUs=4, Nodes=1
    Calibrating delay using timer specific routine.. 4796.31 BogoMIPS (lpj=7990897)
    Security Framework initialized
    Capability LSM initialized
    Mount-cache hash table entries: 256
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 4096K
    using mwait in idle threads.
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    CPU0: Thermal monitoring enabled (TM1)
    SMP alternatives: switching to UP code
    Early unpacking initramfs... done
    ACPI: Core revision 20070126
    ACPI: Looking for DSDT in initramfs... error, file /DSDT.aml not found.
    Using local APIC timer interrupts.
    APIC timer calibration result 16638250
    Detected 16.638 MHz APIC timer.
    SMP alternatives: switching to SMP code
    Booting processor 1/2 APIC 0x1
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 4793.45 BogoMIPS (lpj=7986329)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 4096K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    CPU1: Thermal monitoring enabled (TM2)
    Intel(R) Core(TM)2 CPU 6600 @ 2.40GHz stepping 06
    checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Brought up 2 CPUs
    net_namespace: 120 bytes
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: Using MMCONFIG at e0000000 - efffffff
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
    PCI quirk: region 0480-04bf claimed by ICH6 GPIO
    PCI: Transparent bridge - 0000:00:1e.0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 *5 7 9 10 11 14 15)
    ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 *9 10 11 14 15)
    ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 14 15) *0, disabled.
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 16 devices
    ACPI: ACPI bus type pnp unregistered
    SCSI subsystem initialized
    PCI: Using ACPI for IRQ routing
    PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    PCI-GART: No AMD northbridge found.
    ACPI: RTC can wake from S4
    Time: tsc clocksource has been installed.
    system 00:01: ioport range 0x4d0-0x4d1 has been reserved
    system 00:01: ioport range 0xa00-0xa7f has been reserved
    system 00:01: ioport range 0x880-0x88f has been reserved
    system 00:0c: ioport range 0x400-0x4bf could not be reserved
    system 00:0e: iomem range 0xe0000000-0xefffffff could not be reserved
    system 00:0f: iomem range 0xf0000-0xfffff could not be reserved
    system 00:0f: iomem range 0xfed00000-0xfed000ff has been reserved
    system 00:0f: iomem range 0x7fee0000-0x7fefffff could not be reserved
    system 00:0f: iomem range 0x0-0x9ffff could not be reserved
    system 00:0f: iomem range 0x100000-0x7fedffff could not be reserved
    system 00:0f: iomem range 0xfec00000-0xfec00fff has been reserved
    system 00:0f: iomem range 0xfed14000-0xfed1dfff has been reserved
    system 00:0f: iomem range 0xfed20000-0xfed9ffff has been reserved
    system 00:0f: iomem range 0xfee00000-0xfee00fff could not be reserved
    system 00:0f: iomem range 0xffb00000-0xffb7ffff has been reserved
    system 00:0f: iomem range 0xfff00000-0xffffffff has been reserved
    system 00:0f: iomem range 0xe0000-0xeffff has been reserved
    PCI: Bridge: 0000:00:01.0
    IO window: d000-dfff
    MEM window: fa000000-fcffffff
    PREFETCH window: d0000000-dfffffff
    PCI: Bridge: 0000:00:1c.0
    IO window: b000-bfff
    MEM window: fdb00000-fdbfffff
    PREFETCH window: fdc00000-fdcfffff
    PCI: Bridge: 0000:00:1e.0
    IO window: c000-cfff
    MEM window: fde00000-fdefffff
    PREFETCH window: fdd00000-fddfffff
    ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    ACPI: PCI Interrupt 0000:00:1c.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    PCI: Setting latency timer of device 0000:00:1e.0 to 64
    NET: Registered protocol family 2
    IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    TCP: Hash tables configured (established 262144 bind 65536)
    TCP reno registered
    checking if image is initramfs... it is
    Freeing initrd memory: 690k freed
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Installing knfsd (copyright (C) 1996 [email protected]).
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    Boot video device is 0000:01:00.0
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:01.0:pcie00]
    Allocate Port Service[0000:00:01.0:pcie03]
    PCI: Setting latency timer of device 0000:00:1c.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:1c.0:pcie00]
    Allocate Port Service[0000:00:1c.0:pcie02]
    Allocate Port Service[0000:00:1c.0:pcie03]
    vesafb: framebuffer at 0xd0000000, mapped to 0xffffc20010100000, using 3072k, total 262144k
    vesafb: mode is 1024x768x16, linelength=2048, pages=1
    vesafb: scrolling: redraw
    vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
    Console: switching to colour frame buffer device 128x48
    fb0: VESA VGA frame buffer device
    Linux agpgart interface v0.102
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
    loop: module loaded
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    serio: i8042 KBD port at 0x60,0x64 irq 1
    mice: PS/2 mouse device common for all mice
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 1
    NET: Registered protocol family 17
    RPC: Registered udp transport module.
    RPC: Registered tcp transport module.
    Freeing unused kernel memory: 248k freed
    libata version 3.00 loaded.
    PCI: Enabling device 0000:02:00.1 (0000 -> 0001)
    ACPI: PCI Interrupt 0000:02:00.1[b] -> GSI 17 (level, low) -> IRQ 17
    Switched to high resolution mode on CPU 1
    PCI: Setting latency timer of device 0000:02:00.1 to 64
    scsi0 : pata_jmicron
    Switched to high resolution mode on CPU 0
    scsi1 : pata_jmicron
    ata1: PATA max UDMA/100 cmd 0xbf00 ctl 0xbe00 bmdma 0xbb00 irq 17
    ata2: PATA max UDMA/100 cmd 0xbd00 ctl 0xbc00 bmdma 0xbb08 irq 17
    ata1.00: ATA-7: ST3200826A, 3.06, max UDMA/100
    ata1.00: 390721968 sectors, multi 0: LBA48
    ata1.01: ATAPI: HL-DT-ST DVDRAM GSA-4120B, A101, max UDMA/33
    ata1.00: configured for UDMA/100
    ata1.01: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access ATA ST3200826A 3.06 PQ: 0 ANSI: 5
    scsi 0:0:1:0: CD-ROM HL-DT-ST DVDRAM GSA-4120B A101 PQ: 0 ANSI: 5
    ahci 0000:02:00.0: version 3.0
    ACPI: PCI Interrupt 0000:02:00.0[A] -> GSI 16 (level, low) -> IRQ 16
    ahci 0000:02:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    ahci 0000:02:00.0: flags: 64bit ncq pm led clo pmp pio slum part
    PCI: Setting latency timer of device 0000:02:00.0 to 64
    scsi2 : ahci
    scsi3 : ahci
    ata3: SATA max UDMA/133 abar m8192@0xfdbfe000 port 0xfdbfe100 irq 16
    ata4: SATA max UDMA/133 abar m8192@0xfdbfe000 port 0xfdbfe180 irq 16
    ata3: SATA link down (SStatus 0 SControl 300)
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 8 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: limiting SATA link speed to 1.5 Gbps
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata_piix 0000:00:1f.2: version 2.12
    ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    ACPI: PCI Interrupt 0000:00:1f.2[b] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1f.2 to 64
    scsi4 : ata_piix
    scsi5 : ata_piix
    ata5: SATA max UDMA/133 cmd 0xfa00 ctl 0xf900 bmdma 0xf600 irq 19
    ata6: SATA max UDMA/133 cmd 0xf800 ctl 0xf700 bmdma 0xf608 irq 19
    ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    ACPI: PCI Interrupt 0000:00:1f.5[b] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1f.5 to 64
    scsi6 : ata_piix
    scsi7 : ata_piix
    ata7: SATA max UDMA/133 cmd 0xf300 ctl 0xf200 bmdma 0xef00 irq 19
    ata8: SATA max UDMA/133 cmd 0xf100 ctl 0xf000 bmdma 0xef08 irq 19
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    USB Universal Host Controller Interface driver v3.0
    ACPI: PCI Interrupt 0000:00:1a.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:00:1a.0 to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff00
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1a.1[b] -> GSI 21 (level, low) -> IRQ 21
    PCI: Setting latency timer of device 0000:00:1a.1 to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000fe00
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 23
    PCI: Setting latency timer of device 0000:00:1d.0 to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000fd00
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1d.1[b] -> GSI 19 (level, low) -> IRQ 19
    PCI: Setting latency timer of device 0000:00:1d.1 to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fc00
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:1d.2 to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fb00
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    ACPI: PCI Interrupt 0000:00:1a.7[C] -> GSI 18 (level, low) -> IRQ 18
    PCI: Setting latency timer of device 0000:00:1a.7 to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 6
    PCI: cache line size of 32 is not supported by device 0000:00:1a.7
    ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfdfff000
    usb 4-1: new low speed USB device using uhci_hcd and address 2
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb6: configuration #1 chosen from 1 choice
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 4 ports detected
    ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 23 (level, low) -> IRQ 23
    PCI: Setting latency timer of device 0000:00:1d.7 to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 7
    PCI: cache line size of 32 is not supported by device 0000:00:1d.7
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfdffe000
    usb 4-1: string descriptor 0 read error: -71
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb7: configuration #1 chosen from 1 choice
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 6 ports detected
    usb 4-1: string descriptor 0 read error: -71
    usb 4-1: configuration #1 chosen from 1 choice
    usb 4-1: can't set config #1, error -71
    usb 4-1: USB disconnect, address 2
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors (200050 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Driver 'sr' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 390721968 512-byte hardware sectors (200050 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3
    sd 0:0:0:0: [sda] Attached SCSI disk
    sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 0:0:1:0: Attached scsi CD-ROM sr0
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: mounted filesystem with ordered data mode.
    usb 4-1: new low speed USB device using uhci_hcd and address 3
    usb 4-1: configuration #1 chosen from 1 choice
    rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month
    r8169 Gigabit Ethernet driver 2.2LK loaded
    ACPI: PCI Interrupt 0000:03:06.0[A] -> GSI 21 (level, low) -> IRQ 21
    eth0: RTL8169sc/8110sc at 0xffffc20000024000, 00:16:17:b2:2b:11, XID 18000000 IRQ 21
    ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 22 (level, low) -> IRQ 22
    PCI: Setting latency timer of device 0000:00:1b.0 to 64
    hda_codec: Unknown model for ALC883, trying auto-probe from BIOS...
    input: Power Button (FF) as /devices/virtual/input/input2
    ACPI: Power Button (FF) [PWRF]
    input: Power Button (CM) as /devices/virtual/input/input3
    ACPI: Power Button (CM) [PWRB]
    ACPI: Fan [FAN] (on)
    ACPI: SSDT 7FEE8380, 0087 (r1 PmRef Cpu1Ist 3000 INTL 20060912)
    ACPI Exception (processor_core-0816): AE_NOT_FOUND, Processor Device is not present [20070126]
    ACPI Exception (processor_core-0816): AE_NOT_FOUND, Processor Device is not present [20070126]
    ACPI: Thermal Zone [THRM] (43 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 0:0:1:0: Attached scsi generic sg1 type 5
    ACPI: PCI Interrupt 0000:00:1f.3[b] -> GSI 19 (level, low) -> IRQ 19
    nvidia: module license 'NVIDIA' taints kernel.
    PPP generic driver version 2.4.2
    usbcore: registered new interface driver hiddev
    input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb4/4-1/4-1:1.0/input/input4
    lp: driver loaded but no devices found
    input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1
    usbcore: registered new interface driver usbhid
    drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
    ppdev: user-space parallel port driver
    ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 16
    PCI: Setting latency timer of device 0000:01:00.0 to 64
    NVRM: loading NVIDIA UNIX x86_64 Kernel Module 169.12 Thu Feb 14 17:51:09 PST 2008
    parport_pc 00:0a: reported by Plug and Play ACPI
    parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    lp0: using parport0 (interrupt-driven).
    EXT3 FS on sda1, internal journal
    kjournald starting. Commit interval 5 seconds
    EXT3 FS on sda2, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    Adding 29294516k swap on /dev/sda3. Priority:-1 extents:1 across:29294516k
    r8169: eth0: link up
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    eth0: no IPv6 routers present
    That's the entire code, the part on which it holds on is :
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 8 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: limiting SATA link speed to 1.5 Gbps
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata4.00: qc timeout (cmd 0xec)
    ata4.00: failed to IDENTIFY (I/O error, err_mask=0x4)
    ata4: failed to recover some devices, retrying in 5 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 10 secs
    ata4: classification failed
    ata4: reset failed (errno=-22), retrying in 35 secs
    ata4: classfication failed, assuming ATA
    ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 310)
    ata_piix 0000:00:1f.2: version 2.12
    ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    Also I might add that on my first boot it didn't go this slow - I can't remember if I got the error or not though since I didn't pay attention.
    I don't think it's necessarily a hardware issue, even though this PC had it's issues with linux - had to flash my bios just so grub would detect hard drives, this doesn't seem like one of those.
    At least, I think it isn't since Mandriva booted just fine, and I don't think it's using a different kernel or some such, is it? Altough it was 32bit, but still, I find this quite odd.
    Now if this really is an error, not just buggy software, is there a way to ignore the error - I mean it boots up eventually anyway, just takes a hell of a lot of time.
    Last edited by gajo (2008-06-20 10:12:52)

    I'm going to bring up this issue again, still haven't fixed it and it remains unsolved with the newest kernel.
    The following links seem to have the same issue:
    http://www.ubuntu-forum.net/showthread.php?t=765486
    http://www.slackwarehelp.org/post-6750. … 194ecb9f80
    http://www.archlinux.it/forum/viewtopic.php?pid=11632
    http://www.linuxquestions.org/questions … 26-644368/
    Some of those threads link to this one as well, pretty much all seem to be unresolved or lack any given solution.
    One thing I noticed though, it seems that in nearly all cases the users report to have an MSI motherboard, coincidence? Hope so.
    Any clues on how one might fix this? Facts are, the kernel boots eventually, always, and it works like there is no problem; the issue is that it takes it's time, about 5-10 times the amount it would be normally (or before 2.6.x). Note that in the old kernel the delay was only about 5 seconds or less, with just one error message.
    Also, it seems to boot just fine in Windows, bit sad that Windows seems more stable/reliable eh?
    So where to next? I really want to fix this. It seems Google can't spit out the solution, should I report a bug to the kernel devs and pray that they look it up? Or perhaps it might be feasible to just change the source code of the kernel so it doesn't try 4 times for 10, 10, 30 seconds yet only once for 1 second? Surely it would be a matter of a simple for loop, just a matter of finding it!
    Please, even if you ain't got a solution to the particular issue, at least give me(and the people who google for the problem since this thread seems to be topping the results) an advice on what approach to take next, I'm fairly sure that everything can be fixed with common sense and a bit of C knowledge, only thing that's needed is a bit of experience.

  • Dual boot Windows 7 (64) and Arch Linux (64) problems

    Hello:
    I am new to Arch Linux and just finished installing the 64bit on my laptop. It had a prebuilt Windows 7 (64) installed which I kept but split the hdd from 160Gb to 80Gb and 80Gb. I installed Arch there and set 4 partitions, all of them as Logical - a 64 MB ext2 /boot partition; a 512 MB swap partition; a 15 GB root partition; and the rest as my /home partition. My partitions look like this:
    Disk Drive: /dev/sda
    Size: 160041885696 bytes, 160.0 GB
    Heads: 255 Sectors per Track: 63 Cylinders: 19457
    Name Flags Part Type FS Type [Label] Size (MB)
    sda1 Primary Unknown (27) 12889.02
    sda2 Boot Primary NTFS 106.93
    sda3 Primary NTFS [] 73915.11*
    sda5 Logical Linux ext2 65.81*
    sda6 Logical Linux 509.97*
    sda7 Logical Linux ext2 15002.92*
    sda8 Logical Linux ext2 57549.55*
    The install was succesful(this was running from the core install cd) and I installed GRUB to my /boot but when I restarted it loaded Windows 7. I have used Knoppix USB disc to boot and see my Arch Linux install files and edited the /boot/gur/menu.lst file.
    In Windows I installed EasyBCD 1.7.2 and tried to get NeoGrub bootloader working as a dual boot. I tried getting rid of the boot flag for Windows with cfdisk and setting it to my (Logical) sda5. That did not work. So far the only way I have booted into my Arch Linux install has been by going to the Live CD, choosing "Boot from Existing Linux Install" and editing the command files there.
    root (hd0,4)
    kernel /vmlinuz26 root=/dev/sda3 ro
    initrd /kernel26.img
    My goal is to get a dual boot working for Windows 7 and Arch Linux 64 and continue installing the Xorg and KDE to Arch. I just don't know what the problem is here. I don't mind reinstalling Arch if something went wrong, but I would like to keep my Windows running in order and add Arch on.
    Any help would be greatly appreciated.

    I ran the LiveCD and chose "Install to MBR hd0". I ended up with this:
    setup hd(0,1)
    Checking if "/boot/grub/stage1" exists.....yes
    Checking if "/boot/grub/iso9660_stage1_5" exists.....yes
    Running "embed /boot/grub/iso9660_stage1_5 (hd0,1)".....failed(this is not fatal)
    Running "embed /boot/grub/iso9660_stage1_5 (hd16)".....failed(this is not fatal)
    Running "install /boot/grub/stage1 d (hd0,1) /boot/grub/stage2 p (hd0,1) boot/grub/menu.lst".....failed
    Error 31: File is not sector aligned
    My entry for Windows into the menu.lst looks like this:
    # (0) Arch Linux x64
    title Arch Linux x64
    root (hd0,4)
    kernel /vmlinuz26 root=/dev/disk/by-uuid/3841273c-d91e-41d6-9dbf-716a15d03a01 ro
    initrd /kernel26.img
    # (1) Arch Linux x64
    title Arch Linux x64 Fallback
    root (hd0,4)
    kernel /vmlinuz26 root=/dev/disk/by-uuid/3841273c-d91e-41d6-9dbf-716a15d03a01 ro
    initrd /kernel26-fallback.img
    # (2) Windows 7
    title Windows 7
    rootnoverify (hd0,0)
    makeactive
    chainloader +1

  • Radeon / kms / dri problems

    Hi,
    after messing around a few days with my new arch installation (and probably every other live distro in the last few weeks),
    I'm really tired of the problems related with the open source radeon driver.
    I read the ATI guide as well as the Xorg guide, but my specific problem isn't mentioned anywhere I searched for it.
    It seems that kms isn't working with my graphics card (ATI Radeon HD3870), because none of the distro's and/or kernel versions I tried ever worked when kms was enabled. It simply "displays" a black screen, and nothing ever happens. Now I use kernel 3.2.6-2-ARCH on x86_64.
    The biggest problem isn't kms because I kind of got used to it. What bothers me most is that I get a black screen too when using the radeon driver in xorg.
    No keyboard response, no ssh possible. Not even Xorg.0.log is populated in this scenario.
    I realized that when using the vesa driver, everything is fine (except for pretty slow graphics).
    When playing around with the files in
    /etc/X11/xorg.conf.d
    and disabling dri manually, I also get to see graphics, pretty similar to the vesa driver.
    Is anybody out there with similar problems?
    Thanks in advance, any help is highly appreciated
    Greets
    joe
    20-video.conf
    Section "Device"
    Identifier "ATI Radeon HD3870"
    Driver "radeon"
    Option "AGPMode" "8" #not used when KMS is on
    Option "AGPFastWrite" "off" #could cause instabilities enable it at your own risk
    Option "SWcursor" "off" #software cursor might be necessary on some rare occasions, hence set off by default
    # Option "EnablePageFlip" "on" #supported on all R/RV/RS4xx and older hardware and set off by default
    # Option "AccelMethod" "XAA" #valid options are XAA and EXA. EXA is the newest acceleration method and its the default.
    # Option "RenderAccel" "on" #enabled by default on all radeon hardware
    # Option "ColorTiling" "on" #enabled by default on RV300 and later radeon cards.
    Option "EXAVSync" "off" #default is off, otherwise on
    # Option "EXAPixmaps" "on" #when on icreases 2D performance, but may also cause artifacts on some old cards
    Option "AccelDFS" "on" #default is off, read the radeon manpage for more information
    Option "DRI" "off"
    # Driver "vesa"
    EndSection
    dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.2.6-2-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Feb 16 10:10:02 CET 2012
    [ 0.000000] Command line: root=/dev/sda9 ro radeon.modeset=0 video=1280x1024
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000dfee0000 (usable)
    [ 0.000000] BIOS-e820: 00000000dfee0000 - 00000000dfee3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfee3000 - 00000000dfef0000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000dfef0000 - 00000000dff00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000120000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. P35-DS4/P35-DS4, BIOS F14 06/19/2009
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x120000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CEFFF write-protect
    [ 0.000000] CF000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F00000000 write-back
    [ 0.000000] 1 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 2 base 100000000 mask FE0000000 write-back
    [ 0.000000] 3 base 0DFF00000 mask FFFF00000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000dff00000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xdfee0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000f5030] f5030
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000dfee0000
    [ 0.000000] 0000000000 - 00dfe00000 page 2M
    [ 0.000000] 00dfe00000 - 00dfee0000 page 4k
    [ 0.000000] kernel direct mapping tables up to dfee0000 @ 1fffa000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000120000000
    [ 0.000000] 0100000000 - 0120000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 120000000 @ dfeda000-dfee0000
    [ 0.000000] RAMDISK: 37d68000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f6a20 00014 (v00 GBT )
    [ 0.000000] ACPI: RSDT 00000000dfee3040 00038 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: FACP 00000000dfee30c0 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: DSDT 00000000dfee3180 04B2A (v01 GBT GBTUACPI 00001000 MSFT 0100000C)
    [ 0.000000] ACPI: FACS 00000000dfee0000 00040
    [ 0.000000] ACPI: HPET 00000000dfee7e00 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    [ 0.000000] ACPI: MCFG 00000000dfee7e80 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: APIC 00000000dfee7d00 00084 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: SSDT 00000000dfee8520 003AB (v01 PmRef CpuPm 00003000 INTL 20040311)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000120000000
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000120000000
    [ 0.000000] NODE_DATA [000000011fffb000 - 000000011fffffff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011b600000-ffff88011f5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00120000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[3] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x000dfee0
    [ 0.000000] 0: 0x00100000 -> 0x00120000
    [ 0.000000] On node 0 totalpages: 1048173
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 896800 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2048 pages used for memmap
    [ 0.000000] Normal zone: 129024 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 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 (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000dfee0000 - 00000000dfee3000
    [ 0.000000] PM: Registered nosave memory: 00000000dfee3000 - 00000000dfef0000
    [ 0.000000] PM: Registered nosave memory: 00000000dfef0000 - 00000000dff00000
    [ 0.000000] PM: Registered nosave memory: 00000000dff00000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at dff00000 (gap: dff00000:10100000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011fc00000 s82176 r8192 d24320 u524288
    [ 0.000000] pcpu-alloc: s82176 r8192 d24320 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1029736
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda9 ro radeon.modeset=0 video=1280x1024
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 4046860k/4718592k available (4488k kernel code, 525900k absent, 145832k reserved, 4409k data, 736k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 2333.500 MHz processor.
    [ 0.003337] Calibrating delay loop (skipped), value calculated using timer frequency.. 4668.45 BogoMIPS (lpj=7778333)
    [ 0.003342] pid_max: default: 32768 minimum: 301
    [ 0.003369] Security Framework initialized
    [ 0.003374] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003723] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.005581] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.006743] Mount-cache hash table entries: 256
    [ 0.006907] Initializing cgroup subsys cpuacct
    [ 0.006913] Initializing cgroup subsys memory
    [ 0.006922] Initializing cgroup subsys devices
    [ 0.006924] Initializing cgroup subsys freezer
    [ 0.006926] Initializing cgroup subsys net_cls
    [ 0.006928] Initializing cgroup subsys blkio
    [ 0.006963] CPU: Physical Processor ID: 0
    [ 0.006964] CPU: Processor Core ID: 0
    [ 0.006966] mce: CPU supports 6 MCE banks
    [ 0.006974] CPU0: Thermal monitoring enabled (TM2)
    [ 0.006979] using mwait in idle threads.
    [ 0.008147] ACPI: Core revision 20110623
    [ 0.010032] ftrace: allocating 17394 entries in 69 pages
    [ 0.013728] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.048079] CPU0: Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz stepping 0b
    [ 0.049997] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    [ 0.049997] PEBS disabled due to CPU errata.
    [ 0.049997] ... version: 2
    [ 0.049997] ... bit width: 40
    [ 0.049997] ... generic registers: 2
    [ 0.049997] ... value mask: 000000ffffffffff
    [ 0.049997] ... max period: 000000007fffffff
    [ 0.049997] ... fixed-purpose events: 3
    [ 0.049997] ... event mask: 0000000700000003
    [ 0.066760] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.093341] Booting Node 0, Processors #1
    [ 0.093345] smpboot cpu 1: start_ip = 98000
    [ 0.190016] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.196659] Brought up 2 CPUs
    [ 0.196662] Total of 2 processors activated (9337.59 BogoMIPS).
    [ 0.198466] devtmpfs: initialized
    [ 0.200386] PM: Registering ACPI NVS region at dfee0000 (12288 bytes)
    [ 0.200743] print_constraints: dummy:
    [ 0.200790] NET: Registered protocol family 16
    [ 0.200902] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.200905] ACPI: bus type pci registered
    [ 0.200969] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.200972] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.212178] PCI: Using configuration type 1 for base access
    [ 0.212775] bio: create slab <bio-0> at 0
    [ 0.212775] ACPI: Added _OSI(Module Device)
    [ 0.212775] ACPI: Added _OSI(Processor Device)
    [ 0.212775] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.212775] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.213647] ACPI: EC: Look up EC in DSDT
    [ 0.216762] ACPI: SSDT 00000000dfee7f00 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20040311)
    [ 0.216943] ACPI: Dynamic OEM Table Load:
    [ 0.216946] ACPI: SSDT (null) 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20040311)
    [ 0.217044] ACPI: SSDT 00000000dfee83c0 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.217213] ACPI: Dynamic OEM Table Load:
    [ 0.217215] ACPI: SSDT (null) 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.217342] ACPI: Interpreter enabled
    [ 0.217346] ACPI: (supports S0 S3 S4 S5)
    [ 0.217362] ACPI: Using IOAPIC for interrupt routing
    [ 0.221381] ACPI: No dock devices found.
    [ 0.221383] HEST: Table not found.
    [ 0.221387] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.221434] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.221543] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.221546] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.221548] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.221551] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.221553] pci_root PNP0A03:00: host bridge window [mem 0xdff00000-0xfebfffff]
    [ 0.221565] pci 0000:00:00.0: [8086:29c0] type 0 class 0x000600
    [ 0.221605] pci 0000:00:01.0: [8086:29c1] type 1 class 0x000604
    [ 0.221640] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.221644] pci 0000:00:01.0: PME# disabled
    [ 0.221678] pci 0000:00:1a.0: [8086:2937] type 0 class 0x000c03
    [ 0.221716] pci 0000:00:1a.0: reg 20: [io 0xe100-0xe11f]
    [ 0.221762] pci 0000:00:1a.1: [8086:2938] type 0 class 0x000c03
    [ 0.221800] pci 0000:00:1a.1: reg 20: [io 0xe200-0xe21f]
    [ 0.221848] pci 0000:00:1a.2: [8086:2939] type 0 class 0x000c03
    [ 0.221886] pci 0000:00:1a.2: reg 20: [io 0xe000-0xe01f]
    [ 0.221936] pci 0000:00:1a.7: [8086:293c] type 0 class 0x000c03
    [ 0.221951] pci 0000:00:1a.7: reg 10: [mem 0xf8104000-0xf81043ff]
    [ 0.222032] pci 0000:00:1b.0: [8086:293e] type 0 class 0x000403
    [ 0.222046] pci 0000:00:1b.0: reg 10: [mem 0xf8100000-0xf8103fff 64bit]
    [ 0.222105] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.222109] pci 0000:00:1b.0: PME# disabled
    [ 0.222127] pci 0000:00:1c.0: [8086:2940] type 1 class 0x000604
    [ 0.222188] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.222192] pci 0000:00:1c.0: PME# disabled
    [ 0.222213] pci 0000:00:1c.4: [8086:2948] type 1 class 0x000604
    [ 0.222276] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.222279] pci 0000:00:1c.4: PME# disabled
    [ 0.222298] pci 0000:00:1c.5: [8086:294a] type 1 class 0x000604
    [ 0.222360] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.222363] pci 0000:00:1c.5: PME# disabled
    [ 0.222384] pci 0000:00:1d.0: [8086:2934] type 0 class 0x000c03
    [ 0.222422] pci 0000:00:1d.0: reg 20: [io 0xe300-0xe31f]
    [ 0.222468] pci 0000:00:1d.1: [8086:2935] type 0 class 0x000c03
    [ 0.222505] pci 0000:00:1d.1: reg 20: [io 0xe400-0xe41f]
    [ 0.222552] pci 0000:00:1d.2: [8086:2936] type 0 class 0x000c03
    [ 0.222590] pci 0000:00:1d.2: reg 20: [io 0xe500-0xe51f]
    [ 0.222640] pci 0000:00:1d.7: [8086:293a] type 0 class 0x000c03
    [ 0.222655] pci 0000:00:1d.7: reg 10: [mem 0xf8105000-0xf81053ff]
    [ 0.222732] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
    [ 0.222788] pci 0000:00:1f.0: [8086:2916] type 0 class 0x000601
    [ 0.222862] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
    [ 0.222866] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
    [ 0.222911] pci 0000:00:1f.2: [8086:2922] type 0 class 0x000106
    [ 0.222928] pci 0000:00:1f.2: reg 10: [io 0xe600-0xe607]
    [ 0.222935] pci 0000:00:1f.2: reg 14: [io 0xe700-0xe703]
    [ 0.222942] pci 0000:00:1f.2: reg 18: [io 0xe800-0xe807]
    [ 0.222949] pci 0000:00:1f.2: reg 1c: [io 0xe900-0xe903]
    [ 0.222957] pci 0000:00:1f.2: reg 20: [io 0xea00-0xea1f]
    [ 0.222964] pci 0000:00:1f.2: reg 24: [mem 0xf8106000-0xf81067ff]
    [ 0.223004] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.223008] pci 0000:00:1f.2: PME# disabled
    [ 0.223023] pci 0000:00:1f.3: [8086:2930] type 0 class 0x000c05
    [ 0.223036] pci 0000:00:1f.3: reg 10: [mem 0xf8107000-0xf81070ff 64bit]
    [ 0.223055] pci 0000:00:1f.3: reg 20: [io 0x0500-0x051f]
    [ 0.223108] pci 0000:01:00.0: [1002:9501] type 0 class 0x000300
    [ 0.223121] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.223131] pci 0000:01:00.0: reg 18: [mem 0xf5000000-0xf500ffff 64bit]
    [ 0.223138] pci 0000:01:00.0: reg 20: [io 0xb000-0xb0ff]
    [ 0.223150] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.223178] pci 0000:01:00.0: supports D1 D2
    [ 0.223196] pci 0000:01:00.1: [1002:aa18] type 0 class 0x000403
    [ 0.223208] pci 0000:01:00.1: reg 10: [mem 0xf5010000-0xf5013fff 64bit]
    [ 0.223261] pci 0000:01:00.1: supports D1 D2
    [ 0.223289] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.223292] pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    [ 0.223295] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 0.223299] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.223343] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.223347] pci 0000:00:1c.0: bridge window [io 0xa000-0xafff]
    [ 0.223404] pci 0000:03:00.0: [197b:2363] type 0 class 0x000101
    [ 0.223487] pci 0000:03:00.0: reg 24: [mem 0xf8000000-0xf8001fff]
    [ 0.223547] pci 0000:03:00.0: PME# supported from D3hot
    [ 0.223552] pci 0000:03:00.0: PME# disabled
    [ 0.223580] pci 0000:03:00.1: [197b:2363] type 0 class 0x000101
    [ 0.223602] pci 0000:03:00.1: reg 10: [io 0xc000-0xc007]
    [ 0.223616] pci 0000:03:00.1: reg 14: [io 0xc100-0xc103]
    [ 0.223629] pci 0000:03:00.1: reg 18: [io 0xc200-0xc207]
    [ 0.223642] pci 0000:03:00.1: reg 1c: [io 0xc300-0xc303]
    [ 0.223655] pci 0000:03:00.1: reg 20: [io 0xc400-0xc40f]
    [ 0.223733] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.223746] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
    [ 0.223750] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.223753] pci 0000:00:1c.4: bridge window [mem 0xf8000000-0xf80fffff]
    [ 0.223813] pci 0000:04:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.223831] pci 0000:04:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 0.223860] pci 0000:04:00.0: reg 18: [mem 0xf7000000-0xf7000fff 64bit]
    [ 0.223895] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.223970] pci 0000:04:00.0: supports D1 D2
    [ 0.223972] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.223978] pci 0000:04:00.0: PME# disabled
    [ 0.223999] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.224008] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
    [ 0.224012] pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    [ 0.224015] pci 0000:00:1c.5: bridge window [mem 0xf6000000-0xf7ffffff]
    [ 0.224072] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
    [ 0.224076] pci 0000:00:1e.0: bridge window [io 0x9000-0x9fff]
    [ 0.224083] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.224085] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.224088] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.224090] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.224093] pci 0000:00:1e.0: bridge window [mem 0xdff00000-0xfebfffff] (subtractive decode)
    [ 0.224112] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.224186] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    [ 0.224217] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
    [ 0.224253] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX5._PRT]
    [ 0.224279] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.224356] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.224359] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.224361] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.232086] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11 12 14 *15)
    [ 0.232131] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    [ 0.232172] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
    [ 0.232212] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    [ 0.232252] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    [ 0.232293] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
    [ 0.232333] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 10 11 *12 14 15)
    [ 0.232373] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 9 10 11 12 *14 15)
    [ 0.232459] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.232459] vgaarb: loaded
    [ 0.232459] vgaarb: bridge control possible 0000:01:00.0
    [ 0.232459] PCI: Using ACPI for IRQ routing
    [ 0.233794] PCI: pci_cache_line_size set to 64 bytes
    [ 0.233868] reserve RAM buffer: 000000000009dc00 - 000000000009ffff
    [ 0.233871] reserve RAM buffer: 00000000dfee0000 - 00000000dfffffff
    [ 0.233976] NetLabel: Initializing
    [ 0.233978] NetLabel: domain hash size = 128
    [ 0.233980] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.233992] NetLabel: unlabeled traffic allowed by default
    [ 0.234004] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.234008] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.234013] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.243422] Switching to clocksource hpet
    [ 0.249909] pnp: PnP ACPI init
    [ 0.249926] ACPI: bus type pnp registered
    [ 0.250024] pnp 00:00: [bus 00-3f]
    [ 0.250026] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.250029] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.250031] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.250033] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.250035] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.250037] pnp 00:00: [mem 0xdff00000-0xfebfffff window]
    [ 0.250100] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.250165] pnp 00:01: [io 0x0010-0x001f]
    [ 0.250167] pnp 00:01: [io 0x0022-0x003f]
    [ 0.250169] pnp 00:01: [io 0x0044-0x005f]
    [ 0.250171] pnp 00:01: [io 0x0062-0x0063]
    [ 0.250173] pnp 00:01: [io 0x0065-0x006f]
    [ 0.250174] pnp 00:01: [io 0x0074-0x007f]
    [ 0.250176] pnp 00:01: [io 0x0091-0x0093]
    [ 0.250178] pnp 00:01: [io 0x00a2-0x00bf]
    [ 0.250179] pnp 00:01: [io 0x00e0-0x00ef]
    [ 0.250181] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.250183] pnp 00:01: [io 0x0290-0x029f]
    [ 0.250184] pnp 00:01: [io 0x0800-0x087f]
    [ 0.250186] pnp 00:01: [io 0x0290-0x0294]
    [ 0.250188] pnp 00:01: [io 0x0880-0x088f]
    [ 0.250255] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.250258] system 00:01: [io 0x0290-0x029f] has been reserved
    [ 0.250260] system 00:01: [io 0x0800-0x087f] has been reserved
    [ 0.250263] system 00:01: [io 0x0290-0x0294] has been reserved
    [ 0.250265] system 00:01: [io 0x0880-0x088f] has been reserved
    [ 0.250268] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.250279] pnp 00:02: [dma 4]
    [ 0.250281] pnp 00:02: [io 0x0000-0x000f]
    [ 0.250283] pnp 00:02: [io 0x0080-0x0090]
    [ 0.250285] pnp 00:02: [io 0x0094-0x009f]
    [ 0.250287] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.250321] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.250365] pnp 00:03: [irq 0 disabled]
    [ 0.250376] pnp 00:03: [irq 8]
    [ 0.250378] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.250411] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.250434] pnp 00:04: [io 0x0070-0x0073]
    [ 0.250467] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.250475] pnp 00:05: [io 0x0061]
    [ 0.250505] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.250516] pnp 00:06: [io 0x00f0-0x00ff]
    [ 0.250521] pnp 00:06: [irq 13]
    [ 0.250554] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.250652] pnp 00:07: [io 0x03f0-0x03f5]
    [ 0.250654] pnp 00:07: [io 0x03f7]
    [ 0.250659] pnp 00:07: [irq 6]
    [ 0.250661] pnp 00:07: [dma 2]
    [ 0.250707] pnp 00:07: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.250839] pnp 00:08: [io 0x03f8-0x03ff]
    [ 0.250844] pnp 00:08: [irq 4]
    [ 0.250906] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.251051] pnp 00:09: [io 0x0378-0x037f]
    [ 0.251057] pnp 00:09: [irq 7]
    [ 0.251106] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.251179] pnp 00:0a: [io 0x0060]
    [ 0.251181] pnp 00:0a: [io 0x0064]
    [ 0.251186] pnp 00:0a: [irq 1]
    [ 0.251221] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.251248] pnp 00:0b: [io 0x0400-0x04bf]
    [ 0.251299] system 00:0b: [io 0x0400-0x04bf] has been reserved
    [ 0.251302] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.251455] pnp 00:0c: [mem 0xf0000000-0xf3ffffff]
    [ 0.251513] system 00:0c: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.251517] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.251644] pnp 00:0d: [mem 0x000d2a00-0x000d3fff]
    [ 0.251646] pnp 00:0d: [mem 0x000f0000-0x000f7fff]
    [ 0.251648] pnp 00:0d: [mem 0x000f8000-0x000fbfff]
    [ 0.251649] pnp 00:0d: [mem 0x000fc000-0x000fffff]
    [ 0.251651] pnp 00:0d: [mem 0xdfee0000-0xdfefffff]
    [ 0.251653] pnp 00:0d: [mem 0x00000000-0x0009ffff]
    [ 0.251655] pnp 00:0d: [mem 0x00100000-0xdfedffff]
    [ 0.251657] pnp 00:0d: [mem 0xfec00000-0xfec00fff]
    [ 0.251659] pnp 00:0d: [mem 0xfed10000-0xfed1dfff]
    [ 0.251663] pnp 00:0d: [mem 0xfed20000-0xfed8ffff]
    [ 0.251665] pnp 00:0d: [mem 0xfee00000-0xfee00fff]
    [ 0.251667] pnp 00:0d: [mem 0xffb00000-0xffb7ffff]
    [ 0.251669] pnp 00:0d: [mem 0xfff00000-0xffffffff]
    [ 0.251671] pnp 00:0d: [mem 0x000e0000-0x000effff]
    [ 0.251735] system 00:0d: [mem 0x000d2a00-0x000d3fff] has been reserved
    [ 0.251738] system 00:0d: [mem 0x000f0000-0x000f7fff] could not be reserved
    [ 0.251741] system 00:0d: [mem 0x000f8000-0x000fbfff] could not be reserved
    [ 0.251743] system 00:0d: [mem 0x000fc000-0x000fffff] could not be reserved
    [ 0.251746] system 00:0d: [mem 0xdfee0000-0xdfefffff] could not be reserved
    [ 0.251749] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.251751] system 00:0d: [mem 0x00100000-0xdfedffff] could not be reserved
    [ 0.251754] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.251756] system 00:0d: [mem 0xfed10000-0xfed1dfff] has been reserved
    [ 0.251759] system 00:0d: [mem 0xfed20000-0xfed8ffff] has been reserved
    [ 0.251761] system 00:0d: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.251764] system 00:0d: [mem 0xffb00000-0xffb7ffff] has been reserved
    [ 0.251766] system 00:0d: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.251769] system 00:0d: [mem 0x000e0000-0x000effff] has been reserved
    [ 0.251772] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.251789] pnp 00:0e: [mem 0xffb80000-0xffbfffff]
    [ 0.251833] pnp 00:0e: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.251839] pnp: PnP ACPI: found 15 devices
    [ 0.251840] ACPI: ACPI bus type pnp unregistered
    [ 0.258732] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.258768] pci 0000:00:1c.5: BAR 15: assigned [mem 0xdff00000-0xdfffffff pref]
    [ 0.258772] pci 0000:00:1c.5: BAR 15: assigned [mem 0xf8200000-0xf84fffff pref]
    [ 0.258777] pci 0000:00:1c.4: BAR 15: assigned [mem 0xf8500000-0xf86fffff 64bit pref]
    [ 0.258781] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf8700000-0xf88fffff]
    [ 0.258785] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf8900000-0xf8afffff 64bit pref]
    [ 0.258789] pci 0000:01:00.0: BAR 6: assigned [mem 0xf4000000-0xf401ffff pref]
    [ 0.258792] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.258794] pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    [ 0.258798] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf5ffffff]
    [ 0.258801] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.258805] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.258807] pci 0000:00:1c.0: bridge window [io 0xa000-0xafff]
    [ 0.258812] pci 0000:00:1c.0: bridge window [mem 0xf8700000-0xf88fffff]
    [ 0.258815] pci 0000:00:1c.0: bridge window [mem 0xf8900000-0xf8afffff 64bit pref]
    [ 0.258821] pci 0000:00:1c.4: PCI bridge to [bus 03-03]
    [ 0.258824] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
    [ 0.258828] pci 0000:00:1c.4: bridge window [mem 0xf8000000-0xf80fffff]
    [ 0.258832] pci 0000:00:1c.4: bridge window [mem 0xf8500000-0xf86fffff 64bit pref]
    [ 0.258838] pci 0000:04:00.0: BAR 6: assigned [mem 0xf8200000-0xf820ffff pref]
    [ 0.258840] pci 0000:00:1c.5: PCI bridge to [bus 04-04]
    [ 0.258843] pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    [ 0.258847] pci 0000:00:1c.5: bridge window [mem 0xf6000000-0xf7ffffff]
    [ 0.258851] pci 0000:00:1c.5: bridge window [mem 0xf8200000-0xf84fffff pref]
    [ 0.258856] pci 0000:00:1e.0: PCI bridge to [bus 05-05]
    [ 0.258859] pci 0000:00:1e.0: bridge window [io 0x9000-0x9fff]
    [ 0.258877] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.258881] pci 0000:00:01.0: setting latency timer to 64
    [ 0.258887] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.258890] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.258896] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.258900] pci 0000:00:1c.4: setting latency timer to 64
    [ 0.258908] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.258912] pci 0000:00:1c.5: setting latency timer to 64
    [ 0.258917] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.258921] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.258923] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.258925] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.258928] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.258930] pci_bus 0000:00: resource 8 [mem 0xdff00000-0xfebfffff]
    [ 0.258932] pci_bus 0000:01: resource 0 [io 0xb000-0xbfff]
    [ 0.258934] pci_bus 0000:01: resource 1 [mem 0xf4000000-0xf5ffffff]
    [ 0.258937] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.258939] pci_bus 0000:02: resource 0 [io 0xa000-0xafff]
    [ 0.258941] pci_bus 0000:02: resource 1 [mem 0xf8700000-0xf88fffff]
    [ 0.258943] pci_bus 0000:02: resource 2 [mem 0xf8900000-0xf8afffff 64bit pref]
    [ 0.258945] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.258947] pci_bus 0000:03: resource 1 [mem 0xf8000000-0xf80fffff]
    [ 0.258950] pci_bus 0000:03: resource 2 [mem 0xf8500000-0xf86fffff 64bit pref]
    [ 0.258952] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
    [ 0.258954] pci_bus 0000:04: resource 1 [mem 0xf6000000-0xf7ffffff]
    [ 0.258956] pci_bus 0000:04: resource 2 [mem 0xf8200000-0xf84fffff pref]
    [ 0.258958] pci_bus 0000:05: resource 0 [io 0x9000-0x9fff]
    [ 0.258961] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7]
    [ 0.258963] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff]
    [ 0.258965] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.258967] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.258969] pci_bus 0000:05: resource 8 [mem 0xdff00000-0xfebfffff]
    [ 0.259005] NET: Registered protocol family 2
    [ 0.259137] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.260130] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.263890] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.264389] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.264391] TCP reno registered
    [ 0.264400] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.264438] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.264577] NET: Registered protocol family 1
    [ 0.264739] pci 0000:01:00.0: Boot video device
    [ 0.264751] PCI: CLS 32 bytes, default 64
    [ 0.264806] Unpacking initramfs...
    [ 0.302179] Freeing initrd memory: 2592k freed
    [ 0.302879] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.302883] Placing 64MB software IO TLB between ffff8800dbeda000 - ffff8800dfeda000
    [ 0.302885] software IO TLB at phys 0xdbeda000 - 0xdfeda000
    [ 0.303306] audit: initializing netlink socket (disabled)
    [ 0.303320] type=2000 audit(1329768309.299:1): initialized
    [ 0.315130] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.338613] VFS: Disk quotas dquot_6.5.2
    [ 0.338676] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.338772] msgmni has been set to 7909
    [ 0.338940] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.338964] io scheduler noop registered
    [ 0.338966] io scheduler deadline registered
    [ 0.339000] io scheduler cfq registered (default)
    [ 0.339111] pcieport 0000:00:01.0: setting latency timer to 64
    [ 0.339140] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.339187] pcieport 0000:00:1c.0: setting latency timer to 64
    [ 0.339219] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.339274] pcieport 0000:00:1c.4: setting latency timer to 64
    [ 0.339307] pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    [ 0.339360] pcieport 0000:00:1c.5: setting latency timer to 64
    [ 0.339392] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
    [ 0.339554] intel_idle: MWAIT substates: 0x220
    [ 0.339556] intel_idle: does not run on family 6 model 15
    [ 0.339588] ERST: Table is not found!
    [ 0.339589] GHES: HEST is not enabled!
    [ 0.339655] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.360148] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.490595] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.523556] Linux agpgart interface v0.103
    [ 0.523632] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.523634] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.523753] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.523858] mousedev: PS/2 mouse device common for all mice
    [ 0.523920] rtc_cmos 00:04: RTC can wake from S4
    [ 0.524016] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.524040] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.524049] cpuidle: using governor ladder
    [ 0.524051] cpuidle: using governor menu
    [ 0.524260] TCP cubic registered
    [ 0.524381] NET: Registered protocol family 10
    [ 0.524806] NET: Registered protocol family 17
    [ 0.524810] Registering the dns_resolver key type
    [ 0.524938] PM: Hibernation image not present or could not be loaded.
    [ 0.524943] registered taskstats version 1
    [ 0.536057] rtc_cmos 00:04: setting system clock to 2012-02-20 20:05:09 UTC (1329768309)
    [ 0.536101] Initializing network drop monitor service
    [ 0.537405] Freeing unused kernel memory: 736k freed
    [ 0.537530] Write protecting the kernel read-only data: 8192k
    [ 0.542868] Freeing unused kernel memory: 1636k freed
    [ 0.545368] Freeing unused kernel memory: 660k freed
    [ 0.552316] udevd[37]: starting version 181
    [ 0.562725] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.586477] usbcore: registered new interface driver usbfs
    [ 0.586503] usbcore: registered new interface driver hub
    [ 0.586559] usbcore: registered new device driver usb
    [ 0.589654] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.589690] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.589716] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 0.589719] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 0.589752] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 0.592343] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.593681] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
    [ 0.593700] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xf8104000
    [ 0.597428] SCSI subsystem initialized
    [ 0.605223] libata version 3.00 loaded.
    [ 0.606703] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 0.606886] hub 1-0:1.0: USB hub found
    [ 0.606891] hub 1-0:1.0: 6 ports detected
    [ 0.606992] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 0.607019] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 0.607023] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 0.607032] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 0.610951] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    [ 0.610968] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf8105000
    [ 0.617006] pata_acpi 0000:03:00.1: enabling device (0000 -> 0001)
    [ 0.617013] pata_acpi 0000:03:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.617040] pata_acpi 0000:03:00.1: setting latency timer to 64
    [ 0.617052] pata_acpi 0000:03:00.1: PCI INT B disabled
    [ 0.617278] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.617298] pata_jmicron 0000:03:00.1: setting latency timer to 64
    [ 0.617744] scsi0 : pata_jmicron
    [ 0.617828] scsi1 : pata_jmicron
    [ 0.618265] ata1: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 17
    [ 0.618268] ata2: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 17
    [ 0.623351] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 0.623510] hub 2-0:1.0: USB hub found
    [ 0.623514] hub 2-0:1.0: 6 ports detected
    [ 0.624287] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.624294] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 0.624297] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 0.624313] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 0.624345] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
    [ 0.624476] hub 3-0:1.0: USB hub found
    [ 0.624480] hub 3-0:1.0: 2 ports detected
    [ 0.624556] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 0.624562] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 0.624565] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 0.624572] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 0.624599] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
    [ 0.624720] hub 4-0:1.0: USB hub found
    [ 0.624724] hub 4-0:1.0: 2 ports detected
    [ 0.624794] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.624799] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 0.624802] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 0.624811] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 0.624831] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
    [ 0.624951] hub 5-0:1.0: USB hub found
    [ 0.624955] hub 5-0:1.0: 2 ports detected
    [ 0.625023] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 0.625028] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 0.625031] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 0.625038] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 0.625059] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
    [ 0.625179] hub 6-0:1.0: USB hub found
    [ 0.625183] hub 6-0:1.0: 2 ports detected
    [ 0.625254] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.625259] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 0.625262] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 0.625269] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 0.625297] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
    [ 0.625418] hub 7-0:1.0: USB hub found
    [ 0.625421] hub 7-0:1.0: 2 ports detected
    [ 0.625490] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.625495] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 0.625498] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 0.625506] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 0.625527] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
    [ 0.625645] hub 8-0:1.0: USB hub found
    [ 0.625649] hub 8-0:1.0: 2 ports detected
    [ 0.625725] ahci 0000:00:1f.2: version 3.0
    [ 0.625733] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.625778] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    [ 0.625816] ahci: SSS flag set, parallel bus scan disabled
    [ 0.625848] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
    [ 0.625852] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems
    [ 0.625856] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.657359] scsi2 : ahci
    [ 0.657437] scsi3 : ahci
    [ 0.657507] scsi4 : ahci
    [ 0.657578] scsi5 : ahci
    [ 0.657650] scsi6 : ahci
    [ 0.657718] scsi7 : ahci
    [ 0.657853] ata3: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106100 irq 44
    [ 0.657857] ata4: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106180 irq 44
    [ 0.657859] ata5: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106200 irq 44
    [ 0.657862] ata6: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106280 irq 44
    [ 0.657865] ata7: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106300 irq 44
    [ 0.657867] ata8: SATA max UDMA/133 abar m2048@0xf8106000 port 0xf8106380 irq 44
    [ 0.657896] ahci 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.670048] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    [ 0.670053] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum part
    [ 0.670059] ahci 0000:03:00.0: setting latency timer to 64
    [ 0.670494] scsi8 : ahci
    [ 0.670788] scsi9 : ahci
    [ 0.670874] ata9: SATA max UDMA/133 abar m8192@0xf8000000 port 0xf8000100 irq 16
    [ 0.670878] ata10: SATA max UDMA/133 abar m8192@0xf8000000 port 0xf8000180 irq 16
    [ 0.966690] usb 2-3: new high-speed USB device number 2 using ehci_hcd
    [ 0.983370] ata10: SATA link down (SStatus 0 SControl 300)
    [ 0.990049] ata9: SATA link down (SStatus 0 SControl 300)
    [ 1.140041] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.151383] ata3.00: ATA-8: WDC WD3200AAKS-00VYA0, 12.01B02, max UDMA/133
    [ 1.151387] ata3.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.152173] ata3.00: configured for UDMA/133
    [ 1.152297] scsi 2:0:0:0: Direct-Access ATA WDC WD3200AAKS-0 12.0 PQ: 0 ANSI: 5
    [ 1.303358] Refined TSC clocksource calibration: 2333.333 MHz.
    [ 1.303363] Switching to clocksource tsc
    [ 1.423352] usb 3-1: new low-speed USB device number 2 using uhci_hcd
    [ 1.636760] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.638730] ata4.00: ATAPI: PIONEER DVD-RW DVR-216D, 1.09, max UDMA/66
    [ 1.640744] ata4.00: configured for UDMA/66 (SET_XFERMODE skipped)
    [ 1.652637] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.0/input/input1
    [ 1.652719] generic-usb 0003:046D:C518.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1/input0
    [ 1.682469] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.1/input/input2
    [ 1.682581] generic-usb 0003:046D:C518.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1a.0-1/input1
    [ 1.682660] usbcore: registered new interface driver usbhid
    [ 1.682662] usbhid: USB HID core driver
    [ 1.703319] scsi 3:0:0:0: CD-ROM PIONEER DVD-RW DVR-216D 1.09 PQ: 0 ANSI: 5
    [ 1.833356] usb 8-2: new full-speed USB device number 2 using uhci_hcd
    [ 2.190031] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.190225] ata5.00: ATAPI: PLEXTOR DVDR PX-880SA, 1.12, max UDMA/100
    [ 2.190887] ata5.00: configured for UDMA/100
    [ 2.192517] scsi 4:0:0:0: CD-ROM PLEXTOR DVDR PX-880SA 1.12 PQ: 0 ANSI: 5
    [ 2.676695] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.676900] ata6.00: ATAPI: ATAPI iHAS524 A, BL2J, max UDMA/100
    [ 2.677593] ata6.00: configured for UDMA/100
    [ 2.679182] scsi 5:0:0:0: CD-ROM ATAPI iHAS524 A BL2J PQ: 0 ANSI: 5
    [ 2.996691] ata7: SATA link down (SStatus 0 SControl 300)
    [ 3.316691] ata8: SATA link down (SStatus 0 SControl 300)
    [ 3.323729] sd 2:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 3.323777] sd 2:0:0:0: [sda] Write Protect is off
    [ 3.323780] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.323800] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.386721] sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 sda9 >
    [ 3.387247] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 3.556655] sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
    [ 3.556658] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.556876] sr 3:0:0:0: Attached scsi CD-ROM sr0
    [ 3.560147] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.560302] sr 4:0:0:0: Attached scsi CD-ROM sr1
    [ 3.563594] sr2: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.564247] sr 5:0:0:0: Attached scsi CD-ROM sr2
    [ 4.070817] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.358476] udevd[175]: starting version 181
    [ 5.474506] lp: driver loaded but no devices found
    [ 5.475629] IT8718 SuperIO detected.
    [ 5.475878] parport_pc 00:09: reported by Plug and Play ACPI
    [ 5.475918] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    [ 5.477334] parport0: Printer, Brother HL-1030 series
    [ 5.477416] lp0: using parport0 (interrupt-driven).
    [ 5.517688] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 5.517695] ACPI: Power Button [PWRB]
    [ 5.517765] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.517769] ACPI: Power Button [PWRF]
    [ 5.551233] WARNING! power/level is deprecated; use power/control instead
    [ 5.564973] Floppy drive(s): fd0 is 1.44M
    [ 5.571097] ppdev: user-space parallel port driver
    [ 5.580334] FDC 0 is a post-1991 82077
    [ 5.595497] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 5.606414] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 5.643249] Bluetooth: Core ver 2.16
    [ 5.643265] NET: Registered protocol family 31
    [ 5.643267] Bluetooth: HCI device and connection manager initialized
    [ 5.643270] Bluetooth: HCI socket layer initialized
    [ 5.643271] Bluetooth: L2CAP socket layer initialized
    [ 5.643277] Bluetooth: SCO socket layer initialized
    [ 5.644168] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 5.644419] usbcore: registered new interface driver btusb
    [ 5.652026] iTCO_vendor_support: vendor-support=0
    [ 5.709504] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 5.709631] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
    [ 5.727686] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 5.727705] r8169 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 5.727734] r8169 0000:04:00.0: setting latency timer to 64
    [ 5.727800] r8169 0000:04:00.0: irq 45 for MSI/MSI-X
    [ 5.728211] r8169 0000:04:00.0: eth0: RTL8168b/8111b at 0xffffc90000640000, 00:1a:4d:50:f7:57, XID 18000000 IRQ 45
    [ 5.728214] r8169 0000:04:00.0: eth0: jumbo features [frames: 4080 bytes, tx checksumming: ko]
    [ 5.747940] [drm] Initialized drm 1.1.0 20060810
    [ 5.777332] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 5.777338] pci 0000:01:00.0: setting latency timer to 64
    [ 5.777490] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 5.777492] [drm] No driver support for vblank timestamp query.
    [ 5.777495] [drm] Initialized radeon 1.33.0 20080528 for 0000:01:00.0 on minor 0
    [ 5.851806] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 5.851809] hda_intel: position_fix set to 1 for device 1458:a022
    [ 5.851863] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 5.851886] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
    [ 6.013524] hda_codec: ALC889A: BIOS auto-probing.
    [ 6.029368] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 6.030255] snd_hda_intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 6.030332] snd_hda_intel 0000:01:00.1: irq 47 for MSI/MSI-X
    [ 6.030369] snd_hda_intel 0000:01:00.1: setting latency timer to 64
    [ 6.088913] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 6.089067] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input7
    [ 7.446383] EXT4-fs (sda9): re-mounted. Opts: (null)
    [ 7.545273] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.566720] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.701158] Adding 7823616k swap on /dev/sda7. Priority:-1 extents:1 across:7823616k
    [ 9.038265] r8169 0000:04:00.0: eth0: link down
    [ 9.038272] r8169 0000:04:00.0: eth0: link down
    [ 9.038715] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 11.413267] r8169 0000:04:00.0: eth0: link up
    [ 11.413793] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 19.706297] FS-Cache: Loaded
    [ 19.723537] RPC: Registered named UNIX socket transport module.
    [ 19.723540] RPC: Registered udp transport module.
    [ 19.723542] RPC: Registered tcp transport module.
    [ 19.723543] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 19.751238] FS-Cache: Netfs 'nfs' registered for caching
    [ 21.883339] eth0: no IPv6 routers present
    [ 34.718456] EXT4-fs (sda9): re-mounted. Opts: commit=0
    [ 35.061809] EXT4-fs (sda6): re-mounted. Opts: commit=0
    [ 35.717036] EXT4-fs (sda5): re-mounted. Opts: commit=0
    [ 54.909473] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
    Xorg.0.log ("working one" with dri disabled):
    [ 20.695]
    X.Org X Server 1.11.4
    Release Date: 2012-01-27
    [ 20.713] X Protocol Version 11, Revision 0
    [ 20.713] Build Operating System: Linux 3.2.2-1-ARCH x86_64
    [ 20.713] Current Operating System: Linux noejoe-Desktop 3.2.6-2-ARCH #1 SMP PREEMPT Thu Feb 16 10:10:02 CET 2012 x86_64
    [ 20.713] Kernel command line: root=/dev/sda9 ro radeon.modeset=0 video=1280x1024
    [ 20.713] Build Date: 29 January 2012 03:38:00PM
    [ 20.713]
    [ 20.713] Current version of pixman: 0.24.4
    [ 20.713] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 20.713] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 20.713] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 20 20:05:29 2012
    [ 20.755] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 20.772] (==) No Layout section. Using the first Screen section.
    [ 20.772] (==) No screen section available. Using defaults.
    [ 20.772] (**) |-->Screen "Default Screen Section" (0)
    [ 20.772] (**) | |-->Monitor "<default monitor>"
    [ 20.773] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 20.773] (**) | |-->Device "ATI Radeon HD3870"
    [ 20.773] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 20.773] (==) Automatically adding devices
    [ 20.773] (==) Automatically enabling devices
    [ 20.808] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 20.808] Entry deleted from font path.
    [ 20.808] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 20.808] Entry deleted from font path.
    [ 20.808] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 20.808] Entry deleted from font path.
    [ 20.808] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 20.808] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 20.808] Entry deleted from font path.
    [ 20.808] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 20.808] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 20.808] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 20.808] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 20.808] (II) Loader magic: 0x7ccae0
    [ 20.808] (II) Module ABI versions:
    [ 20.808] X.Org ANSI C Emulation: 0.4
    [ 20.808] X.Org Video Driver: 11.0
    [ 20.808] X.Org XInput driver : 13.0
    [ 20.808] X.Org Server Extension : 6.0
    [ 20.809] (--) PCI:*(0:1:0:0) 1002:9501:1787:2003 rev 0, Mem @ 0xe0000000/268435456, 0xf5000000/65536, I/O @ 0x0000b000/256, BIOS @ 0x????????/131072
    [ 20.809] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 20.809] (II) LoadModule: "extmod"
    [ 20.840] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 20.851] (II) Module extmod: vendor="X.Org Foundation"
    [ 20.851] compiled for 1.11.4, module version = 1.0.0
    [ 20.851] Module class: X.Org Server Extension
    [ 20.851] ABI class: X.Org Server Extension, version 6.0
    [ 20.851] (II) Loading extension MIT-SCREEN-SAVER
    [ 20.851] (II) Loading extension XFree86-VidModeExtension
    [ 20.851] (II) Loading extension XFree86-DGA
    [ 20.851] (II) Loading extension DPMS
    [ 20.851] (II) Loading extension XVideo
    [ 20.851] (II) Loading extension XVideo-MotionCompensation
    [ 20.851] (II) Loading extension X-Resource
    [ 20.851] (II) LoadModule: "dbe"
    [ 20.852] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 20.852] (II) Module dbe: vendor="X.Org Foundation"
    [ 20.852] compiled for 1.11.4, module version = 1.0.0
    [ 20.852] Module class: X.Org Server Extension
    [ 20.852] ABI class: X.Org Server Extension, version 6.0
    [ 20.852] (II) Loading extension DOUBLE-BUFFER
    [ 20.852] (II) LoadModule: "glx"
    [ 20.852] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 20.867] (II) Module glx: vendor="X.Org Foundation"
    [ 20.867] compiled for 1.11.4, module version = 1.0.0
    [ 20.867] ABI class: X.Org Server Extension, version 6.0
    [ 20.867] (==) AIGLX enabled
    [ 20.867] (II) Loading extension GLX
    [ 20.867] (II) LoadModule: "record"
    [ 20.867] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 20.868] (II) Module record: vendor="X.Org Foundation"
    [ 20.868] compiled for 1.11.4, module version = 1.13.0
    [ 20.868] Module class: X.Org Server Extension
    [ 20.868] ABI class: X.Org Server Extension, version 6.0
    [ 20.868] (II) Loading extension RECORD
    [ 20.868] (II) LoadModule: "dri"
    [ 20.868] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 20.879] (II) Module dri: vendor="X.Org Foundation"
    [ 20.879] compiled for 1.11.4, module version = 1.0.0
    [ 20.879] ABI class: X.Org Server Extension, version 6.0
    [ 20.879] (II) Loading extension XFree86-DRI
    [ 20.879] (II) LoadModule: "dri2"
    [ 20.880] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 20.880] (II) Module dri2: vendor="X.Org Foundation"
    [ 20.880] compiled for 1.11.4, module version = 1.2.0
    [ 20.880] ABI class: X.Org Server Extension, version 6.0
    [ 20.880] (II) Loading extension DRI2
    [ 20.880] (II) LoadModule: "radeon"
    [ 20.881] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 20.917] (II) Module radeon: vendor="X.Org Foundation"
    [ 20.917] compiled for 1.11.1.902, module version = 6.14.3
    [ 20.917] Module class: X.Org Video Driver
    [ 20.917] ABI class: X.Org Video Driver, version 11.0
    [ 20.918] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV50

    Thanks for the responses, but catalyst/fglrx never was an option for me.
    Today I changed my graphics card, still had an ATI HD2600XT lying around here.
    Now everything works perfectly, must have been some hardware fault with the other card, although it worked as it should in Windows 7.
    Right now quite happy with kms and gallium

  • Optical drive, camera and bluetooth problems with Acer Aspire 7520

    Hello everyone
    First, my DVD drive just stopped working, it's not being recognized by Arch it seems. This has happened before a few times, but it suddenly started to work. I can open the tray manually, and when I insert a DVD, you can see the led blinking and drive does start to spin, but thats all. I've tried removing and reloading cdrom module with no success. Also, there was a /dev/sr0 before, now it's gone.
    Here is the output from dmesg:
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.34-ARCH (tobias@T-POWA-LX) (gcc version 4.5.0 20100610 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jul 5 22:12:11 CEST 2010
    Command line: root=/dev/disk/by-uuid/bc6d313b-0d53-423c-a845-a35031b4ffdb ro vga=773
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009e000 (usable)
    BIOS-e820: 000000000009e000 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000d2000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 0000000077f50000 (usable)
    BIOS-e820: 0000000077f50000 - 0000000077f65000 (ACPI data)
    BIOS-e820: 0000000077f65000 - 0000000077f66000 (ACPI NVS)
    BIOS-e820: 0000000077f66000 - 0000000080000000 (reserved)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    NX (Execute Disable) protection: active
    DMI present.
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    No AGP bridge found
    last_pfn = 0x77f50 max_arch_pfn = 0x400000000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-D3FFF write-protect
    D4000-E3FFF uncachable
    E4000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 0000000000 mask FF80000000 write-back
    1 disabled
    2 disabled
    3 disabled
    4 disabled
    5 disabled
    6 disabled
    7 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 0000000000001000 - 0000000000010000 (usable) ==> (reserved)
    Scanning 1 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009e000 (usable)
    modified: 000000000009e000 - 00000000000a0000 (reserved)
    modified: 00000000000d2000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 0000000077f50000 (usable)
    modified: 0000000077f50000 - 0000000077f65000 (ACPI data)
    modified: 0000000077f65000 - 0000000077f66000 (ACPI NVS)
    modified: 0000000077f66000 - 0000000080000000 (reserved)
    modified: 00000000e0000000 - 00000000f0000000 (reserved)
    modified: 00000000fec00000 - 00000000fec10000 (reserved)
    modified: 00000000fee00000 - 00000000fee01000 (reserved)
    modified: 00000000fff80000 - 0000000100000000 (reserved)
    initial memory mapped : 0 - 20000000
    found SMP MP-table at [ffff8800000f7c90] f7c90
    init_memory_mapping: 0000000000000000-0000000077f50000
    0000000000 - 0077e00000 page 2M
    0077e00000 - 0077f50000 page 4k
    kernel direct mapping tables up to 77f50000 @ 16000-1a000
    RAMDISK: 37e5f000 - 37ff0000
    ACPI: RSDP 00000000000f7ca0 00024 (v02 ACRSYS)
    ACPI: XSDT 0000000077f5e339 0005C (v01 ACRSYS ACRPRDCT 06040000 LTP 00000000)
    ACPI: SLIC 0000000077f64ace 00176 (v01 ACRSYS ACRPRDCT 06040000 LOHR 00000000)
    ACPI: FACP 0000000077f64c44 000F4 (v03 NVIDIA MCP67-M 06040000 PTL_ 000F4240)
    ACPI: DSDT 0000000077f5e395 066C5 (v01 NVIDIA MCP67 06040000 MSFT 03000000)
    ACPI: FACS 0000000077f65fc0 00040
    ACPI: SSDT 0000000077f64d38 001C4 (v01 PTLTD POWERNOW 06040000 LTP 00000001)
    ACPI: MCFG 0000000077f64efc 0003C (v01 Nvidia NVDAACPI 06040000 NVDA 00000000)
    ACPI: HPET 0000000077f64f38 00038 (v01 PTLTD HPETTBL 06040000 LTP 00000001)
    ACPI: APIC 0000000077f64f70 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    ACPI: BOOT 0000000077f64fd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    ACPI: Local APIC address 0xfee00000
    [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880002000000-ffff880003bfffff] on node 0
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    DMA32 0x00001000 -> 0x00100000
    Normal empty
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0x00000010 -> 0x0000009e
    0: 0x00000100 -> 0x00077f50
    On node 0 totalpages: 491230
    DMA zone: 56 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3926 pages, LIFO batch:0
    DMA32 zone: 6662 pages used for memmap
    DMA32 zone: 480586 pages, LIFO batch:31
    Detected use of extended apic ids on hypertransport bus
    ACPI: PM-Timer IO Port: 0x1008
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x10de8201 base: 0xfed00000
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    nr_irqs_gsi: 24
    early_res array is doubled to 64 at [18100 - 188ff]
    PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    PM: Registered nosave memory: 00000000000d2000 - 0000000000100000
    Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:2 nr_node_ids:1
    PERCPU: Embedded 29 pages/cpu @ffff880001800000 s88232 r8192 d22360 u1048576
    pcpu-alloc: s88232 r8192 d22360 u1048576 alloc=1*2097152
    pcpu-alloc: [0] 0 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 484512
    Kernel command line: root=/dev/disk/by-uuid/bc6d313b-0d53-423c-a845-a35031b4ffdb ro vga=773
    PID hash table entries: 4096 (order: 3, 32768 bytes)
    Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Checking aperture...
    No AGP bridge found
    Node 0: aperture @ 9960000000 size 32 MB
    Aperture beyond 4GB. Ignoring.
    Subtract (49 early reservations)
    #1 [0001000000 - 00016e1178] TEXT DATA BSS
    #2 [0037e5f000 - 0037ff0000] RAMDISK
    #3 [00016e2000 - 00016e20ed] BRK
    #4 [00000f7ca0 - 0000100000] BIOS reserved
    #5 [00000f7c90 - 00000f7ca0] MP-table mpf
    #6 [000009e000 - 000009e471] BIOS reserved
    #7 [000009e5c5 - 00000f7c90] BIOS reserved
    #8 [000009e471 - 000009e5c5] MP-table mpc
    #9 [0000010000 - 0000012000] TRAMPOLINE
    #10 [0000012000 - 0000016000] ACPI WAKEUP
    #11 [0000016000 - 0000018000] PGTABLE
    #12 [00016e2100 - 00016e3100] BOOTMEM
    #13 [0000018000 - 00000180f0] BOOTMEM
    #14 [0001ee4000 - 0001ee5000] BOOTMEM
    #15 [0001ee5000 - 0001ee6000] BOOTMEM
    #16 [0002000000 - 0003c00000] MEMMAP 0
    #17 [00016e3100 - 00016fb100] BOOTMEM
    #18 [00016fb100 - 0001713100] BOOTMEM
    #19 [0001714000 - 0001715000] BOOTMEM
    #20 [00016e1180 - 00016e11c1] BOOTMEM
    #21 [00016e1200 - 00016e1243] BOOTMEM
    #22 [00016e1280 - 00016e1520] BOOTMEM
    #23 [00016e1540 - 00016e15a8] BOOTMEM
    #24 [00016e15c0 - 00016e1628] BOOTMEM
    #25 [00016e1640 - 00016e16a8] BOOTMEM
    #26 [00016e16c0 - 00016e1728] BOOTMEM
    #27 [00016e1740 - 00016e17a8] BOOTMEM
    #28 [00016e17c0 - 00016e1828] BOOTMEM
    #29 [00016e1840 - 00016e18a8] BOOTMEM
    #30 [00016e18c0 - 00016e1928] BOOTMEM
    #31 [00016e1940 - 00016e19a8] BOOTMEM
    #32 [00016e19c0 - 00016e1a28] BOOTMEM
    #33 [00016e1a40 - 00016e1aa8] BOOTMEM
    #34 [00016e1ac0 - 00016e1ae0] BOOTMEM
    #35 [00016e1b00 - 00016e1b47] BOOTMEM
    #36 [00016e1b80 - 00016e1bc7] BOOTMEM
    #37 [0001800000 - 000181d000] BOOTMEM
    #38 [0001900000 - 000191d000] BOOTMEM
    #39 [00016e1c00 - 00016e1c08] BOOTMEM
    #40 [00016e1c40 - 00016e1c48] BOOTMEM
    #41 [00016e1c80 - 00016e1c88] BOOTMEM
    #42 [00016e1cc0 - 00016e1cd0] BOOTMEM
    #43 [00016e1d00 - 00016e1e40] BOOTMEM
    #44 [00016e1e40 - 00016e1ea0] BOOTMEM
    #45 [00016e1ec0 - 00016e1f20] BOOTMEM
    #46 [0001715000 - 000171d000] BOOTMEM
    #47 [000191d000 - 0001b1d000] BOOTMEM
    #48 [0001b1d000 - 0001c1d000] BOOTMEM
    Memory: 1924012k/1965376k available (3484k kernel code, 456k absent, 40908k reserved, 1796k data, 480k init)
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Hierarchical RCU implementation.
    NR_IRQS:768
    Extended CMOS year: 2000
    spurious 8259A interrupt: IRQ7.
    Console: colour dummy device 80x25
    console [tty0] enabled
    allocated 19660800 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    hpet clockevent registered
    Fast TSC calibration using PIT
    Detected 1800.462 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 3602.96 BogoMIPS (lpj=6001540)
    Security Framework initialized
    Mount-cache hash table entries: 256
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    tseg: 0077f80000
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 5 MCE banks
    using C1E aware idle routine
    Performance Events: AMD PMU driver.
    ... version: 0
    ... bit width: 48
    ... generic registers: 4
    ... value mask: 0000ffffffffffff
    ... max period: 00007fffffffffff
    ... fixed-purpose events: 0
    ... event mask: 000000000000000f
    ACPI: Core revision 20100121
    Setting APIC routing to flat
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: AMD Athlon(tm) 64 X2 Dual-Core Processor TK-55 stepping 01
    System has AMD C1E enabled
    Switch to broadcast mode on CPU0
    Booting Node 0, Processors #1 Ok.
    Switch to broadcast mode on CPU1
    Brought up 2 CPUs
    Total of 2 processors activated (7204.45 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    node 0 link 0: io port [1000, fffff]
    TOM: 0000000080000000 aka 2048M
    node 0 link 0: mmio [a0000, bffff]
    node 0 link 0: mmio [80000000, dfffffff]
    node 0 link 0: mmio [e0000000, efffffff]
    node 0 link 0: mmio [f0000000, fe0bffff]
    bus: [00, ff] on node 0 link 0
    bus: 00 index 0 [io 0x0000-0xffff]
    bus: 00 index 1 [mem 0x000a0000-0x000bffff]
    bus: 00 index 2 [mem 0x80000000-0xfcffffffff]
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x10, I/O: command/status = 0x66, data = 0x62
    ACPI: No dock devices found.
    PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cffff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x000f0000-0x000fffff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff] (ignored)
    pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xfebfffff] (ignored)
    pci 0000:00:01.0: reg 10: [io 0x1d00-0x1dff]
    pci 0000:00:01.1: reg 10: [io 0x3080-0x30bf]
    pci 0000:00:01.1: reg 20: [io 0x3040-0x307f]
    pci 0000:00:01.1: reg 24: [io 0x3000-0x303f]
    pci 0000:00:01.1: PME# supported from D3hot D3cold
    pci 0000:00:01.1: PME# disabled
    pci 0000:00:01.3: reg 10: [mem 0xf2400000-0xf247ffff]
    pci 0000:00:02.0: reg 10: [mem 0xf2686000-0xf2686fff]
    pci 0000:00:02.0: supports D1 D2
    pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:02.0: PME# disabled
    pci 0000:00:02.1: reg 10: [mem 0xf2689000-0xf26890ff]
    pci 0000:00:02.1: supports D1 D2
    pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:02.1: PME# disabled
    pci 0000:00:04.0: reg 10: [mem 0xf2687000-0xf2687fff]
    pci 0000:00:04.0: supports D1 D2
    pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:04.0: PME# disabled
    pci 0000:00:04.1: reg 10: [mem 0xf2689400-0xf26894ff]
    pci 0000:00:04.1: supports D1 D2
    pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:04.1: PME# disabled
    pci 0000:00:07.0: reg 10: [mem 0xf2680000-0xf2683fff]
    pci 0000:00:07.0: PME# supported from D3hot D3cold
    pci 0000:00:07.0: PME# disabled
    pci 0000:00:09.0: reg 10: [io 0x30f0-0x30f7]
    pci 0000:00:09.0: reg 14: [io 0x30e4-0x30e7]
    pci 0000:00:09.0: reg 18: [io 0x30e8-0x30ef]
    pci 0000:00:09.0: reg 1c: [io 0x30e0-0x30e3]
    pci 0000:00:09.0: reg 20: [io 0x30d0-0x30df]
    pci 0000:00:09.0: reg 24: [mem 0xf2684000-0xf2685fff]
    pci 0000:00:0a.0: reg 10: [mem 0xf2688000-0xf2688fff]
    pci 0000:00:0a.0: reg 14: [io 0x30f8-0x30ff]
    pci 0000:00:0a.0: reg 18: [mem 0xf2689c00-0xf2689cff]
    pci 0000:00:0a.0: reg 1c: [mem 0xf2689800-0xf268980f]
    pci 0000:00:0a.0: supports D1 D2
    pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:0a.0: PME# disabled
    pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:0c.0: PME# disabled
    pci 0000:00:0d.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:0d.0: PME# disabled
    pci 0000:00:12.0: reg 10: [mem 0xf1000000-0xf1ffffff]
    pci 0000:00:12.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
    pci 0000:00:12.0: reg 1c: [mem 0xf0000000-0xf0ffffff 64bit]
    pci 0000:00:12.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    PCI: peer root bus 00 res updated from pci conf
    pci 0000:01:04.0: proprietary Ricoh MMC controller disabled (via firewire function)
    pci 0000:01:04.0: MMC cards are now supported by standard SDHCI controller
    pci 0000:01:04.0: reg 10: [mem 0xf2300000-0xf23007ff]
    pci 0000:01:04.0: PME# supported from D0 D3hot D3cold
    pci 0000:01:04.0: PME# disabled
    pci 0000:01:04.1: reg 10: [mem 0xf2300800-0xf23008ff]
    pci 0000:01:04.1: supports D1 D2
    pci 0000:01:04.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:01:04.1: PME# disabled
    pci 0000:01:04.2: reg 10: [mem 0xf2301000-0xf23010ff]
    pci 0000:01:04.2: supports D1 D2
    pci 0000:01:04.2: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:01:04.2: PME# disabled
    pci 0000:01:04.3: reg 10: [mem 0xf2301400-0xf23014ff]
    pci 0000:01:04.3: supports D1 D2
    pci 0000:01:04.3: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:01:04.3: PME# disabled
    pci 0000:00:08.0: PCI bridge to [bus 01-01] (subtractive decode)
    pci 0000:00:08.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:08.0: bridge window [mem 0xf2300000-0xf23fffff]
    pci 0000:00:08.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:08.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    pci 0000:00:08.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    pci 0000:00:08.0: bridge window [mem 0x80000000-0xfcffffffff] (subtractive decode)
    pci 0000:00:0c.0: PCI bridge to [bus 03-04]
    pci 0000:00:0c.0: bridge window [io 0x4000-0x4fff]
    pci 0000:00:0c.0: bridge window [mem 0xf2000000-0xf21fffff]
    pci 0000:00:0c.0: bridge window [mem 0xf2800000-0xf29fffff 64bit pref]
    pci 0000:05:00.0: reg 10: [mem 0xf2200000-0xf220ffff 64bit]
    pci 0000:00:0d.0: PCI bridge to [bus 05-05]
    pci 0000:00:0d.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:0d.0: bridge window [mem 0xf2200000-0xf22fffff]
    pci 0000:00:0d.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
    ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 11) *10
    ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 *11)
    ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 11) *0, disabled.
    ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
    ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
    ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *0, disabled.
    ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *10
    ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *10
    ACPI: PCI Interrupt Link [LUS0] (IRQs 20 21 22 23) *11
    ACPI: PCI Interrupt Link [LUS2] (IRQs 20 21 22 23) *7
    ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *11
    ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *10
    ACPI: PCI Interrupt Link [LGPU] (IRQs 17) *10
    ACPI: PCI Interrupt Link [LPID] (IRQs 20 21 22 23) *0, disabled.
    ACPI: PCI Interrupt Link [LSI0] (IRQs 20 21 22 23) *5
    ACPI: PCI Interrupt Link [Z00N] (IRQs 20 21 22 23) *10
    ACPI: PCI Interrupt Link [Z00O] (IRQs 20 21 22 23) *11
    ACPI: PCI Interrupt Link [LPMU] (IRQs 18) *11
    vgaarb: device added: PCI:0000:00:12.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    reserve RAM buffer: 000000000009e000 - 000000000009ffff
    reserve RAM buffer: 0000000077f50000 - 0000000077ffffff
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31
    hpet0: 3 comparators, 32-bit 25.000000 MHz counter
    Switching to clocksource hpet
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 13 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:01: [io 0x0360-0x0361] has been reserved
    system 00:01: [io 0x04d0-0x04d1] has been reserved
    system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
    system 00:0a: [io 0x1000-0x107f] has been reserved
    system 00:0a: [io 0x1080-0x10ff] has been reserved
    system 00:0a: [io 0x1400-0x147f] has been reserved
    system 00:0a: [io 0x1480-0x14ff] has been reserved
    system 00:0a: [io 0x1800-0x187f] has been reserved
    system 00:0a: [io 0x1880-0x18ff] has been reserved
    system 00:0c: [mem 0xffc00000-0xffffffff] could not be reserved
    system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
    system 00:0c: [mem 0xfee00000-0xfeefffff] could not be reserved
    system 00:0c: [mem 0xfed00000-0xfed00fff] has been reserved
    system 00:0c: [mem 0xfef00000-0xfef00fff] has been reserved
    pci 0000:00:12.0: BAR 6: assigned [mem 0x80000000-0x8001ffff pref]
    pci 0000:00:08.0: PCI bridge to [bus 01-01]
    pci 0000:00:08.0: bridge window [io disabled]
    pci 0000:00:08.0: bridge window [mem 0xf2300000-0xf23fffff]
    pci 0000:00:08.0: bridge window [mem pref disabled]
    pci 0000:00:0c.0: PCI bridge to [bus 03-04]
    pci 0000:00:0c.0: bridge window [io 0x4000-0x4fff]
    pci 0000:00:0c.0: bridge window [mem 0xf2000000-0xf21fffff]
    pci 0000:00:0c.0: bridge window [mem 0xf2800000-0xf29fffff 64bit pref]
    pci 0000:00:0d.0: PCI bridge to [bus 05-05]
    pci 0000:00:0d.0: bridge window [io disabled]
    pci 0000:00:0d.0: bridge window [mem 0xf2200000-0xf22fffff]
    pci 0000:00:0d.0: bridge window [mem pref disabled]
    pci 0000:00:08.0: setting latency timer to 64
    pci 0000:00:0c.0: setting latency timer to 64
    pci 0000:00:0d.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 6 [mem 0x80000000-0xfcffffffff]
    pci_bus 0000:01: resource 1 [mem 0xf2300000-0xf23fffff]
    pci_bus 0000:01: resource 4 [io 0x0000-0xffff]
    pci_bus 0000:01: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:01: resource 6 [mem 0x80000000-0xfcffffffff]
    pci_bus 0000:03: resource 0 [io 0x4000-0x4fff]
    pci_bus 0000:03: resource 1 [mem 0xf2000000-0xf21fffff]
    pci_bus 0000:03: resource 2 [mem 0xf2800000-0xf29fffff 64bit pref]
    pci_bus 0000:05: resource 1 [mem 0xf2200000-0xf22fffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    TCP: Hash tables configured (established 262144 bind 65536)
    TCP reno registered
    UDP hash table entries: 1024 (order: 3, 32768 bytes)
    UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    NET: Registered protocol family 1
    pci 0000:00:00.0: Found enabled HT MSI Mapping
    pci 0000:00:00.0: Found enabled HT MSI Mapping
    pci 0000:00:00.0: Found enabled HT MSI Mapping
    pci 0000:00:00.0: Found enabled HT MSI Mapping
    pci 0000:00:00.0: Found enabled HT MSI Mapping
    pci 0000:00:00.0: Found enabled HT MSI Mapping
    pci 0000:00:12.0: Boot video device
    PCI: CLS 64 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1604k freed
    Simple Boot Flag at 0x36 set to 0x1
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1280047128.390:1): initialized
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    msgmni has been set to 3760
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pcieport 0000:00:0c.0: setting latency timer to 64
    pcieport 0000:00:0c.0: irq 24 for MSI/MSI-X
    pcieport 0000:00:0d.0: setting latency timer to 64
    pcieport 0000:00:0d.0: irq 25 for MSI/MSI-X
    pcieport 0000:00:0c.0: Requesting control of PCIe PME from ACPI BIOS
    Firmware did not grant requested _OSC control
    pcieport 0000:00:0c.0: Failed to receive control of PCIe PME service: no _OSC support
    pcie_pme: probe of 0000:00:0c.0:pcie01 failed with error -13
    pcieport 0000:00:0d.0: Requesting control of PCIe PME from ACPI BIOS
    Firmware did not grant requested _OSC control
    pcieport 0000:00:0d.0: Failed to receive control of PCIe PME service: no _OSC support
    pcie_pme: probe of 0000:00:0d.0:pcie01 failed with error -13
    vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90010100000, using 1536k, total 131072k
    vesafb: mode is 1024x768x8, linelength=1024, pages=3
    vesafb: scrolling: redraw
    vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    Console: switching to colour frame buffer device 128x48
    fb0: VESA VGA frame buffer device
    Linux agpgart interface v0.103
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    PM: Resume from disk failed.
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 480k freed
    udev: starting version 158
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ahci 0000:00:09.0: version 3.0
    ACPI: PCI Interrupt Link [LSI0] enabled at IRQ 23
    ahci 0000:00:09.0: PCI INT A -> Link[LSI0] -> GSI 23 (level, low) -> IRQ 23
    ahci 0000:00:09.0: irq 26 for MSI/MSI-X
    ahci 0000:00:09.0: controller can do NCQ, turning on CAP_NCQ
    ahci 0000:00:09.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl IDE mode
    ahci 0000:00:09.0: flags: 64bit ncq sntf led clo pmp pio slum part
    ahci 0000:00:09.0: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    ata1: SATA max UDMA/133 abar m8192@0xf2684000 port 0xf2684100 irq 26
    ata2: SATA max UDMA/133 abar m8192@0xf2684000 port 0xf2684180 irq 26
    ata3: SATA max UDMA/133 abar m8192@0xf2684000 port 0xf2684200 irq 26
    ata4: SATA max UDMA/133 abar m8192@0xf2684000 port 0xf2684280 irq 26
    ata2: SATA link down (SStatus 0 SControl 300)
    ata4: SATA link down (SStatus 0 SControl 300)
    ata3: SATA link down (SStatus 0 SControl 300)
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata1.00: ATA-7: WDC WD1600BEVS-22RST0, 04.01G04, max UDMA/133
    ata1.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 31/32)
    ata1.00: configured for UDMA/133
    scsi 0:0:0:0: Direct-Access ATA WDC WD1600BEVS-2 04.0 PQ: 0 ANSI: 5
    sd 0:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3
    sd 0:0:0:0: [sda] Attached SCSI disk
    EXT4-fs (sda1): mounted filesystem with ordered data mode
    rtc_cmos 00:04: RTC can wake from S4
    rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one year, y3k, 114 bytes nvram, hpet irqs
    udev: starting version 159
    fuse init (API version 7.13)
    forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
    ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 22
    forcedeth 0000:00:0a.0: PCI INT A -> Link[LMAC] -> GSI 22 (level, low) -> IRQ 22
    forcedeth 0000:00:0a.0: setting latency timer to 64
    ACPI: Invalid active0 threshold
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [THRM] (34 C)
    ACPI: WMI: Skipping duplicate GUID 05901221-D566-11D1-B2F0-00A0C9062910
    [Firmware Bug]: ACPI(IGPU) defines _DOD but not _DOS
    input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input1
    ACPI: Video Device [IGPU] (multi-head: yes rom: no post: no)
    ACPI: WMI: Mapper loaded
    input: PC Speaker as /devices/platform/pcspkr/input/input2
    forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:1b:38:4e:9e:40
    forcedeth 0000:00:0a.0: highdma pwrctl mgmt gbit lnktim msi desc-v3
    k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
    vboxdrv: Trying to deactivate the NMI watchdog permanently...
    vboxdrv: Successfully done.
    vboxdrv: Found 2 processor cores.
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    VBoxDrv: dbg - g_abExecMemory=ffffffffa01f2560
    vboxdrv: fAsync=1 offMin=0x4e21e offMax=0x4e21e
    vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'.
    vboxdrv: Successfully loaded version 3.2.0 (interface 0x00140001).
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    lirc_dev: IR Remote Control driver registered, major 61
    i2c i2c-0: nForce2 SMBus adapter at 0x3040
    i2c i2c-1: nForce2 SMBus adapter at 0x3000
    input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    ACPI: EC: GPE storm detected, transactions will use polling mode
    EDAC MC: Ver: 2.1.0 Jul 5 2010
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 21
    ehci_hcd 0000:00:02.1: PCI INT B -> Link[LUS2] -> GSI 21 (level, low) -> IRQ 21
    ehci_hcd 0000:00:02.1: setting latency timer to 64
    ehci_hcd 0000:00:02.1: EHCI Host Controller
    ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:02.1: debug port 1
    ehci_hcd 0000:00:02.1: cache line size of 64 is not supported
    ehci_hcd 0000:00:02.1: irq 21, io mem 0xf2689000
    ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00
    ACPI: Lid Switch [LID]
    input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4
    ACPI: Sleep Button [SLPB]
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
    ACPI: Power Button [PWRB]
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
    ACPI: Power Button [PWRF]
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 5 ports detected
    ACPI: PCI Interrupt Link [Z00O] enabled at IRQ 20
    ehci_hcd 0000:00:04.1: PCI INT B -> Link[Z00O] -> GSI 20 (level, low) -> IRQ 20
    ehci_hcd 0000:00:04.1: setting latency timer to 64
    ehci_hcd 0000:00:04.1: EHCI Host Controller
    ehci_hcd 0000:00:04.1: new USB bus registered, assigned bus number 2
    ehci_hcd 0000:00:04.1: debug port 1
    ehci_hcd 0000:00:04.1: cache line size of 64 is not supported
    ehci_hcd 0000:00:04.1: irq 20, io mem 0xf2689400
    lirc_dev: lirc_register_driver: sample_rate: 0
    enecir: KB3926B detected
    enecir: chip is 0x3909 - 0x24, 0xc0
    enecir: driver has been succesfully loaded
    ehci_hcd 0000:00:04.1: USB 2.0 started, EHCI 1.00
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 5 ports detected
    ACPI: AC Adapter [ACAD] (off-line)
    ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
    firewire_ohci 0000:01:04.0: PCI INT A -> Link[LNK1] -> GSI 11 (level, low) -> IRQ 11
    firewire_ohci: Added fw-ohci device 0000:01:04.0, OHCI v1.0, 4 IR + 4 IT contexts, quirks 0x0
    usb 1-3: new high speed USB device using ehci_hcd and address 2
    hub 1-0:1.0: unable to enumerate USB device on port 3
    ACPI: Battery Slot [BAT1] (battery present)
    nvidia: module license 'NVIDIA' taints kernel.
    Disabling lock debugging due to kernel taint
    firewire_core: created device fw0: GUID 00023f78c5006d9b, S400
    ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 23
    ohci_hcd 0000:00:02.0: PCI INT A -> Link[LUS0] -> GSI 23 (level, low) -> IRQ 23
    ohci_hcd 0000:00:02.0: setting latency timer to 64
    ohci_hcd 0000:00:02.0: OHCI Host Controller
    ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 3
    ohci_hcd 0000:00:02.0: irq 23, io mem 0xf2686000
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 5 ports detected
    ACPI: PCI Interrupt Link [Z00N] enabled at IRQ 22
    ohci_hcd 0000:00:04.0: PCI INT A -> Link[Z00N] -> GSI 22 (level, low) -> IRQ 22
    ohci_hcd 0000:00:04.0: setting latency timer to 64
    ohci_hcd 0000:00:04.0: OHCI Host Controller
    ohci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 4
    ohci_hcd 0000:00:04.0: irq 22, io mem 0xf2687000
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 5 ports detected
    EDAC amd64_edac: Ver: 3.3.0 Jul 5 2010
    EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3).
    EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    (Note that use of the override may cause unknown side effects.)
    amd64_edac: probe of 0000:00:18.2 failed with error -22
    cfg80211: Calling CRDA to update world regulatory domain
    ACPI: PCI Interrupt Link [LGPU] enabled at IRQ 17
    nvidia 0000:00:12.0: PCI INT A -> Link[LGPU] -> GSI 17 (level, low) -> IRQ 17
    nvidia 0000:00:12.0: setting latency timer to 64
    vgaarb: device changed decodes: PCI:0000:00:12.0,olddecodes=io+mem,decodes=none:owns=io+mem
    NVRM: loading NVIDIA UNIX x86_64 Kernel Module 256.35 Wed Jun 16 18:42:44 PDT 2010
    sdhci: Secure Digital Host Controller Interface driver
    sdhci: Copyright(c) Pierre Ossman
    sdhci-pci 0000:01:04.1: SDHCI controller found [1180:0822] (rev 22)
    ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
    sdhci-pci 0000:01:04.1: PCI INT B -> Link[LNK2] -> GSI 11 (level, low) -> IRQ 11
    sdhci-pci 0000:01:04.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Registered led device: mmc0::
    mmc0: SDHCI controller on PCI [0000:01:04.1] using DMA
    usb 3-3: new full speed USB device using ohci_hcd and address 2
    ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
    ath5k 0000:05:00.0: PCI INT A -> Link[LK4E] -> GSI 19 (level, low) -> IRQ 19
    ath5k 0000:05:00.0: setting latency timer to 64
    ath5k 0000:05:00.0: registered as 'phy0'
    usb 3-3: not running at top speed; connect to a high speed hub
    ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
    HDA Intel 0000:00:07.0: PCI INT A -> Link[LAZA] -> GSI 21 (level, low) -> IRQ 21
    hda_intel: Disable MSI for Nvidia chipset
    HDA Intel 0000:00:07.0: setting latency timer to 64
    Linux video capture interface: v2.00
    input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input7
    uvcvideo: Found UVC 1.00 device Acer CrystalEye webcam (064e:a101)
    input: Acer CrystalEye webcam as /devices/pci0000:00/0000:00:02.0/usb3/3-3/3-3:1.0/input/input8
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input9
    ath: EEPROM regdomain: 0x65
    ath: EEPROM indicates we should expect a direct regpair map
    ath: Country alpha2 being used: 00
    ath: Regpair used: 0x65
    phy0: Selected rate control algorithm 'minstrel'
    Registered led device: ath5k-phy0::rx
    Registered led device: ath5k-phy0::tx
    ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70)
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:07.0/input/input10
    ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100121/evregion-474)
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPC0.ECOK] (Node ffff88007781ffc0), AE_TIME
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPC0.ACAD._PSR] (Node ffff8800778259e0), AE_TIME
    ACPI Exception: AE_TIME, Error reading AC Adapter state (20100121/ac-141)
    EXT4-fs (sda2): mounted filesystem with ordered data mode
    Adding 2152704k swap on /dev/sda3. Priority:-1 extents:1 across:2152704k
    forcedeth 0000:00:0a.0: irq 27 for MSI/MSI-X
    eth0: no link during initialization.
    Clocksource tsc unstable (delta = 4398046404009 ns)
    ata1.00: configured for UDMA/133
    ata1: EH complete
    sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    nvclock:2261 freeing invalid memtype f1000000-f1010000
    nvclock:2261 freeing invalid memtype f1010000-f1030000
    wlan0: Trigger new scan to find an IBSS to join
    wlan0: Trigger new scan to find an IBSS to join
    wlan0: Trigger new scan to find an IBSS to join
    wlan0: Creating new IBSS network, BSSID b2:0a:28:21:7c:ac
    ip_tables: (C) 2000-2006 Netfilter Core Team
    nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
    nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or
    sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
    wlan0: deauthenticating from 00:1e:e5:45:bf:58 by local choice (reason=3)
    wlan0: authenticate with 00:1e:e5:45:bf:58 (try 1)
    wlan0: authenticated
    wlan0: associate with 00:1e:e5:45:bf:58 (try 1)
    wlan0: RX AssocResp from 00:1e:e5:45:bf:58 (capab=0x411 status=0 aid=1)
    wlan0: associated
    Intel AES-NI instructions are not detected.
    padlock: VIA PadLock not detected.
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    ADDRCONF(NETDEV_UP): eth0: link is not ready
    wlan0: no IPv6 routers present
    CE: hpet increased min_delta_ns to 7500 nsec
    ata1.00: configured for UDMA/133
    ata1: EH complete
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Now, the camera issue is a bit different. It worked before with no problems. But now, when I start guvcview, it opens it's main window, and a second window that usually show picture from camera, just appears for a moment and disappears. The led next to my camera turns on, and stays that way. Also, yesterday when I was trying to test the camera, guvcview stuck in a uninteruptible state, so I couldn't kill him in any way. Even after I close guvcview, the camera led is still on, but he is not among active processes. Although in the guvcview output below it says that the device is in use, I don't know how, because I rebooted my laptop and then I tried to run it.
    This is what guvcview outputs in console after I start and then close it:
    guvcview 1.3.0
    video device: /dev/video0
    /dev/video0 - device 1
    Init. Acer CrystalEye webcam (location: usb-0000:00:02.0-3)
    { pixelformat = 'MJPG', description = 'MJPEG' }
    { discrete: width = 640, height = 480 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 352, height = 288 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 320, height = 240 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 176, height = 144 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 160, height = 120 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { pixelformat = 'RGB3', description = 'RGB3' }
    { discrete: width = 640, height = 480 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 352, height = 288 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 320, height = 240 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 176, height = 144 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 160, height = 120 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { pixelformat = 'BGR3', description = 'BGR3' }
    { discrete: width = 640, height = 480 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 352, height = 288 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 320, height = 240 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 176, height = 144 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 160, height = 120 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { pixelformat = 'YU12', description = 'YU12' }
    { discrete: width = 640, height = 480 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 352, height = 288 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 320, height = 240 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 176, height = 144 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 160, height = 120 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { pixelformat = 'YV12', description = 'YV12' }
    { discrete: width = 640, height = 480 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 352, height = 288 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 320, height = 240 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 176, height = 144 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    { discrete: width = 160, height = 120 }
    Time interval between frame: 1/30, 1/20, 1/15, 1/10, 1/5, 1/1,
    vid:064e
    pid:a101
    driver:uvcvideo
    checking format: 1196444237
    VIDIOC_G_COMP:: Invalid argument
    compression control not supported
    fps is set to 1/30
    V4L2_CTRL_FLAG_NEXT_CTRL supported
    libv4l2: error turning on stream: Timer expired
    VIDIOC_STREAMON - Unable to start capture: Timer expired
    fps is set to 1/30
    libv4l2: error turning on stream: Device or resource busy
    VIDIOC_STREAMON - Unable to start capture: Device or resource busy
    libv4l2: error turning on stream: Device or resource busy
    VIDIOC_STREAMON - Unable to start capture: Device or resource busy
    write /home/amar/.guvcviewrc OK
    free controls
    cleaned allocations - 100%
    Closing portaudio ...OK
    Closing GTK... OK
    For the bluetooth, I really never managed to get it working. The bluetooth daemons starts with no problems, but hcitool dev shows no devices. I read the wiki, and the only thing I didn't try is the hid2hci tool, I couldn't figure out what to use for devpath argument.
    Thanks.

    for DVD:
    which DE you use ?
    post your
    /etc/fstab

  • Problem with xfce4-session.

    Hello, I'm not sure whether I'm posting in the correct section of the forums but anyway, here's the problem, after upgrading the system xfce started crashing randomly (It definitely crashes when I try to suspend first time, then it does it correctly). I took a look in Xorg and fglrx log files, they didn't contain any errors. However, dmesg listed a segfault of xfce4-session in libglib, is there any solution for that problem or I just have to wait until the upgrade. Also, I have and AMD E-450 APU, and a proprietary catalyst driver from catalyst-stable. Here is the output from dmesg (the segfault message is in the end):
    [ 0.000000] PM: Registered nosave memory: 00000000afb64000 - 00000000afb6c000
    [ 0.000000] PM: Registered nosave memory: 00000000afb6c000 - 00000000afb91000
    [ 0.000000] PM: Registered nosave memory: 00000000afb91000 - 00000000afbd4000
    [ 0.000000] PM: Registered nosave memory: 00000000afd47000 - 00000000afef7000
    [ 0.000000] PM: Registered nosave memory: 00000000aff00000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    [ 0.000000] PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    [ 0.000000] PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 0000000100000000
    [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    [ 0.000000] e820: [mem 0xaff00000-0xfebfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s84544 r8192 d21952 u1048576
    [ 0.000000] pcpu-alloc: s84544 r8192 d21952 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 966665
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lqx root=UUID=ee58701b-54f4-4a5e-a884-636f3ac8cb2f ro nomodeset usbcore.autosuspend=1 quiet usbcore.autosuspend=0 nomodeset nmi_watchdog=0 pcie_aspm=force
    [ 0.000000] PCIe ASPM is forcibly enabled
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3782720k/5242880k available (4438k kernel code, 1314812k absent, 145348k reserved, 2809k data, 640k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:33024 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.001000] tsc: Detected 1646.401 MHz processor
    [ 0.000005] Calibrating delay loop (skipped), value calculated using timer frequency.. 3292.80 BogoMIPS (lpj=1646401)
    [ 0.000010] pid_max: default: 32768 minimum: 301
    [ 0.000063] Security Framework initialized
    [ 0.000068] SELinux: Disabled at boot.
    [ 0.000071] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000073] Yama: becoming mindful.
    [ 0.000095] Mount-cache hash table entries: 256
    [ 0.000418] tseg: 00aff00000
    [ 0.000422] CPU: Physical Processor ID: 0
    [ 0.000424] CPU: Processor Core ID: 0
    [ 0.000426] mce: CPU supports 6 MCE banks
    [ 0.000442] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4
    tlb_flushall_shift: 5
    [ 0.000558] Freeing SMP alternatives: 16k freed
    [ 0.002455] ACPI: Core revision 20121018
    [ 0.015032] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.025024] smpboot: CPU0: AMD E-450 APU with Radeon(tm) HD Graphics (fam: 14, model: 02, stepping: 00)
    [ 0.126038] Performance Events: AMD PMU driver.
    [ 0.126044] ... version: 0
    [ 0.126047] ... bit width: 48
    [ 0.126048] ... generic registers: 4
    [ 0.126050] ... value mask: 0000ffffffffffff
    [ 0.126051] ... max period: 00007fffffffffff
    [ 0.126053] ... fixed-purpose events: 0
    [ 0.126054] ... event mask: 000000000000000f
    [ 0.134178] smpboot: Booting Node 0, Processors #1 OK
    [ 0.147430] Brought up 2 CPUs
    [ 0.147435] smpboot: Total of 2 processors activated (6585.60 BogoMIPS)
    [ 0.148250] devtmpfs: initialized
    [ 0.148666] PM: Registering ACPI NVS region [mem 0xafaf7000-0xafb3efff] (294912 bytes)
    [ 0.148681] PM: Registering ACPI NVS region [mem 0xafb49000-0xafb4bfff] (12288 bytes)
    [ 0.148683] PM: Registering ACPI NVS region [mem 0xafb4d000-0xafb4dfff] (4096 bytes)
    [ 0.148686] PM: Registering ACPI NVS region [mem 0xafb64000-0xafb6bfff] (32768 bytes)
    [ 0.148689] PM: Registering ACPI NVS region [mem 0xafb91000-0xafbd3fff] (274432 bytes)
    [ 0.149151] regulator-dummy: no parameters
    [ 0.149293] NET: Registered protocol family 16
    [ 0.150271] ACPI: bus type pci registered
    [ 0.150593] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.150599] PCI: not using MMCONFIG
    [ 0.150601] PCI: Using configuration type 1 for base access
    [ 0.150602] PCI: Using configuration type 1 for extended access
    [ 0.155916] bio: create slab <bio-0> at 0
    [ 0.156315] ACPI: Added _OSI(Module Device)
    [ 0.156319] ACPI: Added _OSI(Processor Device)
    [ 0.156321] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.156323] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.158103] ACPI: EC: Look up EC in DSDT
    [ 0.160056] ACPI: Executed 3 blocks of module-level executable AML code
    [ 0.172510] ACPI: Interpreter enabled
    [ 0.172527] ACPI: (supports S0 S3 S4 S5)
    [ 0.172576] ACPI: Using IOAPIC for interrupt routing
    [ 0.172886] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.172961] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.213033] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.213391] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.245487] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    [ 0.245850] ACPI: No dock devices found.
    [ 0.245858] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.246163] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.246166] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.246887] PCI host bridge to bus 0000:00
    [ 0.246895] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.246899] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.246906] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.246910] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.246913] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.246916] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.246919] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.246923] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
    [ 0.246938] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
    [ 0.246999] pci 0000:00:01.0: [1002:9806] type 00 class 0x030000
    [ 0.247013] pci 0000:00:01.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.247023] pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    [ 0.247032] pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    [ 0.247093] pci 0000:00:01.0: supports D1 D2
    [ 0.247118] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
    [ 0.247130] pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    [ 0.247202] pci 0000:00:01.1: supports D1 D2
    [ 0.247388] pci 0000:00:04.0: [1022:1512] type 01 class 0x060400
    [ 0.247482] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 0.247576] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.247602] pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    [ 0.247615] pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    [ 0.247629] pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    [ 0.247642] pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    [ 0.247655] pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    [ 0.247669] pci 0000:00:11.0: reg 24: [mem 0xfeb4d000-0xfeb4d3ff]
    [ 0.247749] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.247767] pci 0000:00:12.0: reg 10: [mem 0xfeb4c000-0xfeb4cfff]
    [ 0.247863] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.247889] pci 0000:00:12.2: reg 10: [mem 0xfeb4b000-0xfeb4b0ff]
    [ 0.247997] pci 0000:00:12.2: supports D1 D2
    [ 0.248000] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.248033] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.248052] pci 0000:00:13.0: reg 10: [mem 0xfeb4a000-0xfeb4afff]
    [ 0.248150] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.248175] pci 0000:00:13.2: reg 10: [mem 0xfeb49000-0xfeb490ff]
    [ 0.248289] pci 0000:00:13.2: supports D1 D2
    [ 0.248292] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.248325] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.248433] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.248461] pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 0.248548] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.248571] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.248673] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.248732] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.248750] pci 0000:00:14.5: reg 10: [mem 0xfeb48000-0xfeb48fff]
    [ 0.248848] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
    [ 0.248953] pci 0000:00:15.0: supports D1 D2
    [ 0.248991] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
    [ 0.249095] pci 0000:00:15.1: supports D1 D2
    [ 0.249133] pci 0000:00:15.2: [1002:43a2] type 01 class 0x060400
    [ 0.249237] pci 0000:00:15.2: supports D1 D2
    [ 0.249282] pci 0000:00:15.3: [1002:43a3] type 01 class 0x060400
    [ 0.249387] pci 0000:00:15.3: supports D1 D2
    [ 0.249426] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
    [ 0.249474] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
    [ 0.249518] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
    [ 0.249564] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
    [ 0.249621] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
    [ 0.249665] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
    [ 0.249711] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
    [ 0.249755] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
    [ 0.249928] pci 0000:00:04.0: PCI bridge to [bus 01]
    [ 0.250055] pci 0000:00:14.4: PCI bridge to [bus 02] (subtractive decode)
    [ 0.250067] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.250070] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.250074] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.250077] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.250080] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.250083] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.250086] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 0.250216] pci 0000:03:00.0: [14e4:4727] type 00 class 0x028000
    [ 0.250259] pci 0000:03:00.0: reg 10: [mem 0xfea00000-0xfea03fff 64bit]
    [ 0.250422] pci 0000:03:00.0: supports D1 D2
    [ 0.250425] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.252383] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.252400] pci 0000:00:15.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.252481] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.252587] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.252610] pci 0000:05:00.0: reg 10: [io 0xe000-0xe0ff]
    [ 0.252649] pci 0000:05:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
    [ 0.252674] pci 0000:05:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
    [ 0.252777] pci 0000:05:00.0: supports D1 D2
    [ 0.252780] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.254339] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.254353] pci 0000:00:15.2: bridge window [io 0xe000-0xefff]
    [ 0.254369] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.254451] pci 0000:00:15.3: PCI bridge to [bus 06]
    [ 0.254501] pci_bus 0000:00: on NUMA node 0
    [ 0.254602] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE20._PRT]
    [ 0.254674] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE21._PRT]
    [ 0.254726] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE22._PRT]
    [ 0.254777] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE23._PRT]
    [ 0.254856] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE4._PRT]
    [ 0.254913] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.254916] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.259554] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    [ 0.259704] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    [ 0.259814] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    [ 0.259920] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 11 14 15) *0
    [ 0.260007] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
    [ 0.260075] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
    [ 0.260142] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
    [ 0.260210] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
    [ 0.260719] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.260732] vgaarb: loaded
    [ 0.260733] vgaarb: bridge control possible 0000:00:01.0
    [ 0.261239] ACPI: bus type usb registered
    [ 0.261372] usbcore: registered new interface driver usbfs
    [ 0.261438] usbcore: registered new interface driver hub
    [ 0.261565] usbcore: registered new device driver usb
    [ 0.262092] PCI: Using ACPI for IRQ routing
    [ 0.273018] PCI: pci_cache_line_size set to 64 bytes
    [ 0.273142] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.273146] e820: reserve RAM buffer [mem 0xafaf7000-0xafffffff]
    [ 0.273149] e820: reserve RAM buffer [mem 0xafb54000-0xafffffff]
    [ 0.273151] e820: reserve RAM buffer [mem 0xafd47000-0xafffffff]
    [ 0.273154] e820: reserve RAM buffer [mem 0xaff00000-0xafffffff]
    [ 0.273543] NetLabel: Initializing
    [ 0.273546] NetLabel: domain hash size = 128
    [ 0.273547] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.273565] NetLabel: unlabeled traffic allowed by default
    [ 0.273680] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.273687] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.275723] Switching to clocksource hpet
    [ 0.281493] pnp: PnP ACPI init
    [ 0.281511] ACPI: bus type pnp registered
    [ 0.281854] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.281861] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.282965] system 00:01: [io 0x040b] has been reserved
    [ 0.282969] system 00:01: [io 0x04d6] has been reserved
    [ 0.282972] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.282979] system 00:01: [io 0x0c14] has been reserved
    [ 0.282984] system 00:01: [io 0x0c50-0x0c51] has been reserved
    [ 0.282987] system 00:01: [io 0x0c52] has been reserved
    [ 0.282990] system 00:01: [io 0x0c6c] has been reserved
    [ 0.282994] system 00:01: [io 0x0c6f] has been reserved
    [ 0.282997] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.283000] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.283004] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.283007] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.283010] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.283014] system 00:01: [io 0x0800-0x089f] has been reserved
    [ 0.283017] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    [ 0.283020] system 00:01: [io 0x0900-0x090f] has been reserved
    [ 0.283024] system 00:01: [io 0x0910-0x091f] has been reserved
    [ 0.283027] system 00:01: [io 0xfe00-0xfefe] has been reserved
    [ 0.283033] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.283037] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.283041] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.283045] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.283049] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.283054] system 00:01: [mem 0xfed00000-0xfed00fff] has been reserved
    [ 0.283057] system 00:01: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.283062] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.283085] pnp 00:02: [dma 4]
    [ 0.283236] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.283356] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.283484] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.283686] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.283691] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.283937] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.284106] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.284264] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.284487] pnp 00:09: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
    [ 0.285108] system 00:0a: [mem 0xb0000000-0xbfffffff] has been reserved
    [ 0.285113] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.297800] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.297811] pnp: PnP ACPI: found 12 devices
    [ 0.297813] ACPI: ACPI bus type pnp unregistered
    [ 0.303106] pci 0000:00:04.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.303114] pci 0000:00:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.303119] pci 0000:00:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    [ 0.303173] pci 0000:00:15.0: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 0.303178] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 0.303192] pci 0000:00:15.1: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
    [ 0.303196] pci 0000:00:15.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
    [ 0.303200] pci 0000:00:15.1: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
    [ 0.303213] pci 0000:00:15.2: bridge window [mem 0x00100000-0x000fffff] to [bus 05] add_size 400000
    [ 0.303226] pci 0000:00:15.3: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000
    [ 0.303230] pci 0000:00:15.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
    [ 0.303234] pci 0000:00:15.3: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000
    [ 0.303253] pci 0000:00:04.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303257] pci 0000:00:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303261] pci 0000:00:15.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303264] pci 0000:00:15.1: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303268] pci 0000:00:15.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303271] pci 0000:00:15.2: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
    [ 0.303275] pci 0000:00:15.3: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303278] pci 0000:00:15.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303281] pci 0000:00:04.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303285] pci 0000:00:15.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303288] pci 0000:00:15.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303291] pci 0000:00:15.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303300] pci 0000:00:04.0: BAR 14: assigned [mem 0xd0100000-0xd02fffff]
    [ 0.303305] pci 0000:00:04.0: BAR 15: assigned [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303310] pci 0000:00:15.0: BAR 15: assigned [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303315] pci 0000:00:15.1: BAR 14: assigned [mem 0xd0700000-0xd08fffff]
    [ 0.303320] pci 0000:00:15.1: BAR 15: assigned [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303324] pci 0000:00:15.2: BAR 14: assigned [mem 0xd0b00000-0xd0efffff]
    [ 0.303328] pci 0000:00:15.3: BAR 14: assigned [mem 0xd0f00000-0xd10fffff]
    [ 0.303332] pci 0000:00:15.3: BAR 15: assigned [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303339] pci 0000:00:04.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.303345] pci 0000:00:15.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.303349] pci 0000:00:15.1: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.303354] pci 0000:00:15.3: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.303361] pci 0000:00:04.0: PCI bridge to [bus 01]
    [ 0.303367] pci 0000:00:04.0: bridge window [io 0x1000-0x1fff]
    [ 0.303373] pci 0000:00:04.0: bridge window [mem 0xd0100000-0xd02fffff]
    [ 0.303378] pci 0000:00:04.0: bridge window [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303385] pci 0000:00:14.4: PCI bridge to [bus 02]
    [ 0.303470] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.303474] pci 0000:00:15.0: bridge window [io 0x2000-0x2fff]
    [ 0.303481] pci 0000:00:15.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.303487] pci 0000:00:15.0: bridge window [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303495] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.303499] pci 0000:00:15.1: bridge window [io 0x3000-0x3fff]
    [ 0.303506] pci 0000:00:15.1: bridge window [mem 0xd0700000-0xd08fffff]
    [ 0.303512] pci 0000:00:15.1: bridge window [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303521] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.303525] pci 0000:00:15.2: bridge window [io 0xe000-0xefff]
    [ 0.303532] pci 0000:00:15.2: bridge window [mem 0xd0b00000-0xd0efffff]
    [ 0.303537] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.303545] pci 0000:00:15.3: PCI bridge to [bus 06]
    [ 0.303549] pci 0000:00:15.3: bridge window [io 0x4000-0x4fff]
    [ 0.303557] pci 0000:00:15.3: bridge window [mem 0xd0f00000-0xd10fffff]
    [ 0.303562] pci 0000:00:15.3: bridge window [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303627] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.303631] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.303634] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.303637] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.303640] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.303643] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.303647] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.303650] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
    [ 0.303653] pci_bus 0000:01: resource 1 [mem 0xd0100000-0xd02fffff]
    [ 0.303656] pci_bus 0000:01: resource 2 [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303660] pci_bus 0000:02: resource 4 [io 0x0000-0x03af]
    [ 0.303663] pci_bus 0000:02: resource 5 [io 0x03e0-0x0cf7]
    [ 0.303666] pci_bus 0000:02: resource 6 [io 0x03b0-0x03df]
    [ 0.303669] pci_bus 0000:02: resource 7 [io 0x0d00-0xffff]
    [ 0.303672] pci_bus 0000:02: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.303675] pci_bus 0000:02: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.303678] pci_bus 0000:02: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.303681] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    [ 0.303684] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.303687] pci_bus 0000:03: resource 2 [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303691] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.303693] pci_bus 0000:04: resource 1 [mem 0xd0700000-0xd08fffff]
    [ 0.303752] pci_bus 0000:04: resource 2 [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303755] pci_bus 0000:05: resource 0 [io 0xe000-0xefff]
    [ 0.303758] pci_bus 0000:05: resource 1 [mem 0xd0b00000-0xd0efffff]
    [ 0.303761] pci_bus 0000:05: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.303765] pci_bus 0000:06: resource 0 [io 0x4000-0x4fff]
    [ 0.303768] pci_bus 0000:06: resource 1 [mem 0xd0f00000-0xd10fffff]
    [ 0.303771] pci_bus 0000:06: resource 2 [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303836] NET: Registered protocol family 2
    [ 0.304049] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.304316] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.304574] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.304683] TCP: reno registered
    [ 0.304693] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.304845] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.305013] NET: Registered protocol family 1
    [ 0.305042] pci 0000:00:01.0: Boot video device
    [ 0.305384] PCI: CLS 64 bytes, default 64
    [ 0.305471] Unpacking initramfs...
    [ 0.400016] Freeing initrd memory: 2664k freed
    [ 0.401721] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.401733] software IO TLB [mem 0xabaf7000-0xafaf7000] (64MB) mapped at [ffff8800abaf7000-ffff8800afaf6fff]
    [ 0.401984] LVT offset 0 assigned for vector 0x400
    [ 0.402067] perf: AMD IBS detected (0x000000ff)
    [ 0.402950] audit: initializing netlink socket (disabled)
    [ 0.402971] type=2000 audit(1367137456.294:1): initialized
    [ 0.403912] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.410965] VFS: Disk quotas dquot_6.5.2
    [ 0.411207] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.411535] msgmni has been set to 7393
    [ 0.412281] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.412285] io scheduler noop registered
    [ 0.412287] io scheduler deadline registered
    [ 0.412295] io scheduler cfq registered
    [ 0.412435] io scheduler bfq registered (default)
    [ 0.413822] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [ 0.415487] Linux agpgart interface v0.103
    [ 0.415820] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.415822] vesafb: scrolling: redraw
    [ 0.415826] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.416298] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010100000, using 3072k, total 3072k
    [ 0.477778] Console: switching to colour frame buffer device 128x48
    [ 0.530645] fb0: VESA VGA frame buffer device
    [ 0.530917] ACPI: acpi_idle registered with cpuidle
    [ 0.557297] GHES: HEST is not enabled!
    [ 0.557305] XENFS: not registering filesystem on non-xen platform
    [ 0.557737] libphy: Fixed MDIO Bus: probed
    [ 0.557999] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PSM1] at 0x60,0x64 irq 1,12
    [ 0.561580] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.561601] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.562037] mousedev: PS/2 mouse device common for all mice
    [ 0.562175] cpuidle: using governor ladder
    [ 0.562284] cpuidle: using governor menu
    [ 0.562288] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.562699] TCP: vegas registered
    [ 0.562701] TCP: yeah registered
    [ 0.562786] Key type dns_resolver registered
    [ 0.563728] registered taskstats version 1
    [ 0.564483] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.564936] powernow-k8: this CPU is not supported anymore, using acpi-cpufreq instead.
    [ 0.566831] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 0.567786] Freeing unused kernel memory: 640k freed
    [ 0.568164] CFS CPU scheduler.
    [ 0.584465] systemd-udevd[507]: starting version 202
    [ 0.653357] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.655531] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.655963] ehci-pci: EHCI PCI platform driver
    [ 0.656097] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.656109] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 1
    [ 0.656128] QUIRK: Enable AMD PLL fix
    [ 0.656224] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb4c000
    [ 0.657747] SCSI subsystem initialized
    [ 0.661333] ACPI: bus type scsi registered
    [ 0.665103] libata version 3.00 loaded.
    [ 0.711249] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.711257] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.711260] usb usb1: Product: OHCI Host Controller
    [ 0.711263] usb usb1: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.711266] usb usb1: SerialNumber: 0000:00:12.0
    [ 0.711963] hub 1-0:1.0: USB hub found
    [ 0.711978] hub 1-0:1.0: 5 ports detected
    [ 0.712324] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 0.712335] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 2
    [ 0.712343] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.712361] ehci-pci 0000:00:12.2: debug port 1
    [ 0.712428] ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb4b000
    [ 0.718188] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.718242] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [ 0.718249] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.718255] usb usb2: Product: EHCI Host Controller
    [ 0.718260] usb usb2: Manufacturer: Linux 3.8.8-1-lqx ehci_hcd
    [ 0.718264] usb usb2: SerialNumber: 0000:00:12.2
    [ 0.718762] hub 2-0:1.0: USB hub found
    [ 0.718770] hub 2-0:1.0: 5 ports detected
    [ 0.719034] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 0.719043] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 3
    [ 0.719061] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.719099] ehci-pci 0000:00:13.2: debug port 1
    [ 0.719142] ehci-pci 0000:00:13.2: irq 17, io mem 0xfeb49000
    [ 0.725166] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.725211] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
    [ 0.725218] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.725224] usb usb3: Product: EHCI Host Controller
    [ 0.725230] usb usb3: Manufacturer: Linux 3.8.8-1-lqx ehci_hcd
    [ 0.725235] usb usb3: SerialNumber: 0000:00:13.2
    [ 0.725648] hub 3-0:1.0: USB hub found
    [ 0.725656] hub 3-0:1.0: 5 ports detected
    [ 0.725886] ahci 0000:00:11.0: version 3.0
    [ 0.726156] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
    [ 0.726162] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 0.730354] scsi0 : ahci
    [ 0.730816] scsi1 : ahci
    [ 0.731197] scsi2 : ahci
    [ 0.731481] scsi3 : ahci
    [ 0.731816] scsi4 : ahci
    [ 0.732139] scsi5 : ahci
    [ 0.732460] ata1: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d100 irq 19
    [ 0.732464] ata2: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d180 irq 19
    [ 0.732468] ata3: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d200 irq 19
    [ 0.732471] ata4: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d280 irq 19
    [ 0.732475] ata5: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d300 irq 19
    [ 0.732478] ata6: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d380 irq 19
    [ 0.732661] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 0.732683] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
    [ 0.732720] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfeb4a000
    [ 0.787137] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.787142] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.787145] usb usb4: Product: OHCI Host Controller
    [ 0.787148] usb usb4: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.787151] usb usb4: SerialNumber: 0000:00:13.0
    [ 0.787659] hub 4-0:1.0: USB hub found
    [ 0.787670] hub 4-0:1.0: 5 ports detected
    [ 0.787909] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 0.787918] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 5
    [ 0.787944] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfeb48000
    [ 0.842042] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.842046] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.842049] usb usb5: Product: OHCI Host Controller
    [ 0.842052] usb usb5: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.842054] usb usb5: SerialNumber: 0000:00:14.5
    [ 0.842401] hub 5-0:1.0: USB hub found
    [ 0.842410] hub 5-0:1.0: 2 ports detected
    [ 1.036735] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.036809] ata3: SATA link down (SStatus 0 SControl 300)
    [ 1.037712] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.037754] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.037797] ata6: SATA link down (SStatus 0 SControl 300)
    [ 1.121601] usb 2-5: new high-speed USB device number 3 using ehci-pci
    [ 1.191503] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.197711] ata1.00: ATA-8: ST500LM012 HN-M500MBB, 2AR10002, max UDMA/133
    [ 1.197719] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.203906] ata1.00: configured for UDMA/133
    [ 1.204335] scsi 0:0:0:0: Direct-Access ATA ST500LM012 HN-M5 2AR1 PQ: 0 ANSI: 5
    [ 1.212034] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.212041] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.212125] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.212130] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.212166] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.239240] usb 2-5: New USB device found, idVendor=12d1, idProduct=1506
    [ 1.239251] usb 2-5: New USB device strings: Mfr=4, Product=3, SerialNumber=0
    [ 1.239257] usb 2-5: Product: HUAWEI Mobile
    [ 1.239263] usb 2-5: Manufacturer: Huawei Technologies
    [ 1.239601] sda: sda1 sda2 sda3 sda4
    [ 1.241058] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.248373] Initializing USB Mass Storage driver...
    [ 1.248653] scsi6 : usb-storage 2-5:1.5
    [ 1.249032] scsi7 : usb-storage 2-5:1.6
    [ 1.250887] usbcore: registered new interface driver usb-storage
    [ 1.250892] USB Mass Storage support registered.
    [ 1.346272] usb 3-4: new high-speed USB device number 2 using ehci-pci
    [ 1.402164] tsc: Refined TSC clocksource calibration: 1646.493 MHz
    [ 1.402180] Switching to clocksource tsc
    [ 1.463721] usb 3-4: New USB device found, idVendor=2232, idProduct=1020
    [ 1.463730] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 1.463737] usb 3-4: Product: WebCam SC-0311139N
    [ 1.463743] usb 3-4: Manufacturer: Image Processor
    [ 1.463748] usb 3-4: SerialNumber: SM3711
    [ 1.690741] usb 1-3: new full-speed USB device number 2 using ohci_hcd
    [ 1.847612] usb 1-3: New USB device found, idVendor=0a5c, idProduct=219c
    [ 1.847624] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 1.847631] usb 1-3: Product: Broadcom BCM2070 Bluetooth Device
    [ 1.847637] usb 1-3: Manufacturer: Broadcom Corp
    [ 1.847642] usb 1-3: SerialNumber: 30144A229E4B
    [ 2.058659] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.250157] scsi 6:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 2
    [ 2.250876] scsi 7:0:0:0: Direct-Access HUAWEI TF CARD Storage PQ: 0 ANSI: 2
    [ 2.302154] sd 7:0:0:0: [sdb] Attached SCSI removable disk
    [ 2.827197] systemd[1]: systemd 202 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.065305] systemd[1]: Inserted module 'autofs4'
    [ 3.083044] systemd[1]: Set hostname to <REM>.
    [ 3.104478] systemd[1]: /etc/mtab is not a symlink or not pointing to /proc/self/mounts. This is not supported anymore. Please make sure to replace this file by a symlink to avoid incorrect or misleading mount(8) output.
    [ 3.673989] systemd[1]: logged here: 'Support for option SysVStartPriority= has been disabled at compile time and is ignored': 0
    [ 3.928323] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.928445] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.928473] systemd[1]: Starting Remote File Systems.
    [ 3.928499] systemd[1]: Reached target Remote File Systems.
    [ 3.928520] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.928571] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.928589] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.928636] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.928654] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.928708] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.928727] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.928777] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.928798] systemd[1]: Starting Encrypted Volumes.
    [ 3.928818] systemd[1]: Reached target Encrypted Volumes.
    [ 3.928949] systemd[1]: Starting udev Kernel Socket.
    [ 3.928994] systemd[1]: Listening on udev Kernel Socket.
    [ 3.929083] systemd[1]: Starting udev Control Socket.
    [ 3.929127] systemd[1]: Listening on udev Control Socket.
    [ 3.929179] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.929401] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.929433] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.929511] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.929537] systemd[1]: Starting Journal Socket.
    [ 3.929627] systemd[1]: Listening on Journal Socket.
    [ 3.929668] systemd[1]: Mounting Debug File System...
    [ 3.941501] systemd[1]: Starting Setup Virtual Console...
    [ 3.948777] systemd[1]: Starting udev Coldplug all Devices...
    [ 4.302692] systemd[1]: Started Set Up Additional Binary Formats.
    [ 4.302896] systemd[1]: Starting Create static device nodes in /dev...
    [ 4.311080] systemd[1]: Mounting Huge Pages File System...
    [ 4.333926] systemd[1]: Starting Apply Kernel Variables...
    [ 4.344029] systemd[1]: Starting Journal Service...
    [ 4.354053] systemd[1]: Started Journal Service.
    [ 4.354159] systemd[1]: Mounting POSIX Message Queue File System...
    [ 4.398484] systemd[1]: Starting Load Kernel Modules...
    [ 4.405897] systemd[1]: Expecting device dev-sda2.device...
    [ 4.405958] systemd[1]: Started File System Check on Root Device.
    [ 4.405985] systemd[1]: Mounting Temporary Directory...
    [ 4.444783] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 5.141813] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15
    [ 5.523573] vboxdrv: Found 2 processor cores.
    [ 5.523876] vboxdrv: fAsync=0 offMin=0x37b offMax=0x21cc
    [ 5.524228] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 5.524230] vboxdrv: Successfully loaded version 4.2.12_OSE (interface 0x001a0004).
    [ 5.585084] systemd-udevd[1417]: starting version 202
    [ 6.551072] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
    [ 6.551149] ACPI: Lid Switch [LID]
    [ 6.551279] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 6.551286] ACPI: Power Button [PWRB]
    [ 6.551432] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    [ 6.551436] ACPI: Sleep Button [SLPB]
    [ 6.551556] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 6.551560] ACPI: Power Button [PWRF]
    [ 6.557442] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.570168] ACPI: AC Adapter [ADP1] (on-line)
    [ 6.576119] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 6.581379] acpi device:31: registered as cooling_device2
    [ 6.581414] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 6.581535] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 6.685232] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.685246] ACPI: Battery Slot [BAT1] (battery present)
    [ 6.830273] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 6.830383] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 7.576782] [drm] Initialized drm 1.1.0 20060810
    [ 7.618495] [drm] VGACON disable radeon kernel modesetting.
    [ 7.620005] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 7.620007] [drm] No driver support for vblank timestamp query.
    [ 7.620012] [drm] Initialized radeon 1.33.0 20080528 for 0000:00:01.0 on minor 0
    [ 7.767784] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 7.767790] Disabling lock debugging due to kernel taint
    [ 7.783921] <6>[fglrx] Maximum main memory to use for locked dma buffers: 3540 MBytes.
    [ 7.784096] <6>[fglrx] vendor: 1002 device: 9806 count: 1
    [ 7.784621] <6>[fglrx] ioport: bar 1, base 0xf000, size: 0x100
    [ 7.785024] <6>[fglrx] Kernel PAT support is enabled
    [ 7.785057] <6>[fglrx] module loaded - fglrx 9.1.11 [Dec 19 2012] with 1 minors
    [ 8.571990] Adding 4194300k swap on /dev/sda2. Priority:-1 extents:1 across:4194300k
    [ 10.299762] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 10.935682] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
    [ 10.950057] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x16, 0x0a.
    [ 11.022649] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input7
    [ 11.032941] microcode: CPU0: patch_level=0x05000101
    [ 14.667774] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 14.684494] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
    [ 14.684678] sp5100_tco: PCI Revision ID: 0x42
    [ 14.684818] sp5100_tco: Using 0xfed80b00 for watchdog MMIO address
    [ 14.684869] sp5100_tco: Last reboot was not triggered by watchdog.
    [ 14.685016] sp5100_tco: initialized (0xffffc9000003eb00). heartbeat=60 sec (nowayout=0)
    [ 14.913699] systemd-logind[1501]: Watching system buttons on /dev/input/event1 (Lid Switch)
    [ 14.914754] systemd-logind[1501]: Watching system buttons on /dev/input/event2 (Power Button)
    [ 14.915967] systemd-logind[1501]: Watching system buttons on /dev/input/event3 (Sleep Button)
    [ 14.916946] systemd-logind[1501]: Watching system buttons on /dev/input/event4 (Power Button)
    [ 14.925385] systemd-logind[1501]: Watching system buttons on /dev/input/event5 (Video Bus)
    [ 14.993314] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 14.993343] microcode: CPU1: patch_level=0x05000101
    [ 14.994827] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 15.200573] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 15.200964] r8169 0000:05:00.0: irq 40 for MSI/MSI-X
    [ 15.204405] r8169 0000:05:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000034000, 50:b7:c3:02:d7:05, XID 0c900800 IRQ 40
    [ 15.204413] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 15.290455] systemd-udevd[1420]: renamed network interface eth0 to enp5s0
    [ 15.292678] systemd-sysctl[2033]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 15.404438] samsung_laptop: detected SABI interface: SwSmi@
    [ 15.404444] samsung_laptop: Backlight controlled by ACPI video driver
    [ 15.452716] fglrx_pci 0000:00:01.0: irq 41 for MSI/MSI-X
    [ 15.453760] <6>[fglrx] Firegl kernel thread PID: 2044
    [ 15.453957] <6>[fglrx] Firegl kernel thread PID: 2045
    [ 15.454361] <6>[fglrx] Firegl kernel thread PID: 2046
    [ 15.454513] <6>[fglrx] IRQ 41 Enabled
    [ 15.459141] <6>[fglrx] Gart USWC size:1156 M.
    [ 15.459145] <6>[fglrx] Gart cacheable size:458 M.
    [ 15.459152] <6>[fglrx] Reserved FB block: Shared offset:0, size:1000000
    [ 15.459154] <6>[fglrx] Reserved FB block: Unshared offset:fc54000, size:3a0000
    [ 15.459157] <6>[fglrx] Reserved FB block: Unshared offset:fff4000, size:c000
    [ 15.461998] systemd-sysctl[2047]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 15.698292] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 16.424442] kvm: Nested Virtualization enabled
    [ 16.424448] kvm: Nested Paging enabled
    [ 16.499708] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.716267] Bluetooth: Core ver 2.16
    [ 16.718230] NET: Registered protocol family 31
    [ 16.718232] Bluetooth: HCI device and connection manager initialized
    [ 16.718245] Bluetooth: HCI socket layer initialized
    [ 16.718249] Bluetooth: L2CAP socket layer initialized
    [ 16.718259] Bluetooth: SCO socket layer initialized
    [ 16.733212] media: Linux media interface: v0.10
    [ 16.782160] lib80211: common routines for IEEE802.11 drivers
    [ 16.782166] lib80211_crypt: registered algorithm 'NULL'
    [ 16.784149] Linux video capture interface: v2.00
    [ 16.815091] usbcore: registered new interface driver usbserial
    [ 16.816124] usbcore: registered new interface driver usbserial_generic
    [ 16.817094] usbserial: USB Serial support registered for generic
    [ 16.906678] usbcore: registered new interface driver option
    [ 16.909342] usbserial: USB Serial support registered for GSM modem (1-port)
    [ 16.909431] option 2-5:1.0: GSM modem (1-port) converter detected
    [ 16.912145] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB0
    [ 16.912225] option 2-5:1.3: GSM modem (1-port) converter detected
    [ 16.915130] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB1
    [ 16.915190] option 2-5:1.4: GSM modem (1-port) converter detected
    [ 16.921982] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB2
    [ 16.986926] systemd-udevd[1427]: error opening ATTR{/sys/devices/pci0000:00/0000:00:12.2/usb2/2-5/2-5:1.5/host6/scsi_host/host6/link_power_management_policy} for writing: No such file or directory
    [ 16.988089] uvcvideo: Found UVC 1.00 device WebCam SC-0311139N (2232:1020)
    [ 16.993277] systemd-udevd[1428]: error opening ATTR{/sys/devices/pci0000:00/0000:00:12.2/usb2/2-5/2-5:1.6/host7/scsi_host/host7/link_power_management_policy} for writing: No such file or directory
    [ 17.002663] input: WebCam SC-0311139N as /devices/pci0000:00/0000:00:13.2/usb3/3-4/3-4:1.0/input/input8
    [ 17.011802] usbcore: registered new interface driver uvcvideo
    [ 17.011808] USB Video Class driver (1.1.1)
    [ 17.036157] snd_hda_intel 0000:00:01.1: irq 42 for MSI/MSI-X
    [ 17.055032] usbcore: registered new interface driver cdc_wdm
    [ 17.076782] qmi_wwan 2-5:1.1: cdc-wdm0: USB WDM device
    [ 17.085492] qmi_wwan 2-5:1.1 wwan0: register 'qmi_wwan' at usb-0000:00:12.2-5, WWAN/QMI device, 02:50:f3:00:00:00
    [ 17.088340] usbcore: registered new interface driver qmi_wwan
    [ 17.173910] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input9
    [ 17.402599] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 17.546699] input: HDA ATI SB Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
    [ 17.549997] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
    [ 17.554480] lib80211_crypt: registered algorithm 'TKIP'
    [ 17.557087] eth0: Broadcom BCM4727 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 17.587070] sr0: scsi-1 drive
    [ 17.587077] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 17.590908] sr 6:0:0:0: Attached scsi CD-ROM sr0
    [ 17.764781] systemd-udevd[1426]: renamed network interface wwan0 to wwp0s18f2u5i1
    [ 17.767245] systemd-sysctl[2747]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.772802] systemd-udevd[1427]: renamed network interface eth0 to wlp3s0
    [ 17.776265] systemd-sysctl[2756]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.780048] systemd-sysctl[2755]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.786438] systemd-sysctl[2759]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 18.086526] usbcore: registered new interface driver btusb
    [ 18.769655] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff880136590af8 (20121018/exresop-422)
    [ 18.769669] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 18.769676] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 18.769691] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 20.495319] vboxpci: IOMMU not found (not registered)
    [ 22.447778] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 22.447784] Bluetooth: BNEP filters: protocol multicast
    [ 22.447799] Bluetooth: BNEP socket layer initialized
    [ 22.595480] Bluetooth: RFCOMM TTY layer initialized
    [ 22.595500] Bluetooth: RFCOMM socket layer initialized
    [ 22.595502] Bluetooth: RFCOMM ver 1.11
    [ 24.407804] r8169 0000:05:00.0 enp5s0: link down
    [ 24.815261] NET: Registered protocol family 10
    [ 24.815665] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
    [ 31.811205] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15,commit=0
    [ 32.023742] WARNING! power/level is deprecated; use power/control instead
    [ 162.594332] fuse init (API version 7.20)
    [ 181.712247] xfce4-session[4386]: segfault at ffffffff00000000 ip 00007fe7c8be9537 sp 00007fffd9c3f2e0 error 5 in libglib-2.0.so.0.3600.1[7fe7c8b86000+fc000]
    [ 183.784141] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 184.997887] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff88013aae2948 (20121018/exresop-422)
    [ 184.997901] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 184.997908] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 184.997923] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 405.815701] NET: Registered protocol family 17
    [ 1429.517360] xfce4-session[5257]: segfault at ffffffff00000000 ip 00007f53c2ee6537 sp 00007fff6060c2d0 error 5 in libglib-2.0.so.0.3600.1[7f53c2e83000+fc000]
    [ 1430.198201] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15,commit=600
    [ 1431.620829] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=600,commit=600
    [ 1432.769216] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 1434.176644] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff880136590360 (20121018/exresop-422)
    [ 1434.176667] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 1434.176680] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 1434.176709] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 1477.326788] usb 1-3: USB disconnect, device number 2
    Any help appreciated.
    Last edited by NinjaBus (2013-04-28 09:12:19)

    hadrons123 wrote:does it happen if you use the default arch kernel?
    Yes, it keeps happening even with the default kernel when I try to shut down/suspend the computer (Alt-F4 key combination). I've read on some russian forum that it's the problem in recently upgraded glib2 (as they think), however downgrade didn't help. I'll try to check whether xfce4-session is to blame.
    EDIT: It's definitely not xfce4-session, I tried previous version. Also, while running downgrade I saw that there is a newer version of glib2 in ARM, which is much more unstable, so I'm using 2.36.1-1.
    Last edited by NinjaBus (2013-04-28 15:49:59)

  • Problem with Intel/ATI Hybrid Graphics

    Hi, I Just got a new laptop with the intel(hd4400)/ati(hd8670m) hybrid graphics. I followed exactly this https://wiki.archlinux.org/index.php/Hy … ons_So_Far, trying to disable my discrete card, but I did not have vgaswitcheroo under /sys/kernel/debug. Then I did a reboot, it stopped booting after FSCK, no login for me. I did add radeon and i915 to MODULES in /etc/mkinitcpio.conf if that's what you are wondering. I had to chroot with Arch installer and add a basic 20-intel.conf file to be able to boot into my DE.
    dmesg output below shows that I had radeon loaded, but still no vgaswitcheroo directory.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000006efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000006f000-0x000000000006ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000070000-0x0000000000087fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000094d5ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000094d60000-0x0000000095d5ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000095d60000-0x000000009a36efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009a36f000-0x000000009aebefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000015f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by INSYDE Corp.
    [ 0.000000] efi: ACPI=0x9affe000 ACPI 2.0=0x9affe014 SMBIOS=0x9aebef98
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
    [ 0.000000] efi: mem02: type=0, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    [ 0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem04: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x000000000009f000) (0MB)
    [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001051000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000001051000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f51000) (15MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000002f51000-0x000000003737a000) (836MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x000000003737a000-0x00000000379b5000) (6MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x00000000379b5000-0x000000006d8c0000) (863MB)
    [ 0.000000] efi: mem12: type=2, attr=0xf, range=[0x000000006d8c0000-0x0000000092d70000) (596MB)
    [ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x0000000092d70000-0x0000000092d90000) (0MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000092d90000-0x0000000093ee1000) (17MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x0000000093ee1000-0x0000000094d60000) (14MB)
    [ 0.000000] efi: mem16: type=0, attr=0xf, range=[0x0000000094d60000-0x0000000095d60000) (16MB)
    [ 0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000095d60000-0x0000000095f52000) (1MB)
    [ 0.000000] efi: mem18: type=1, attr=0xf, range=[0x0000000095f52000-0x0000000095f6f000) (0MB)
    [ 0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000095f6f000-0x0000000097260000) (18MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x0000000097260000-0x0000000097262000) (0MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x0000000097262000-0x0000000097272000) (0MB)
    [ 0.000000] efi: mem22: type=2, attr=0xf, range=[0x0000000097272000-0x000000009727c000) (0MB)
    [ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x000000009727c000-0x0000000097c77000) (9MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x0000000097c77000-0x0000000097c7a000) (0MB)
    [ 0.000000] efi: mem25: type=4, attr=0xf, range=[0x0000000097c7a000-0x0000000097c81000) (0MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x0000000097c81000-0x0000000097c82000) (0MB)
    [ 0.000000] efi: mem27: type=4, attr=0xf, range=[0x0000000097c82000-0x0000000097db2000) (1MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x0000000097db2000-0x0000000097db3000) (0MB)
    [ 0.000000] efi: mem29: type=4, attr=0xf, range=[0x0000000097db3000-0x0000000097e0a000) (0MB)
    [ 0.000000] efi: mem30: type=3, attr=0xf, range=[0x0000000097e0a000-0x0000000097e17000) (0MB)
    [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x0000000097e17000-0x0000000097e1f000) (0MB)
    [ 0.000000] efi: mem32: type=3, attr=0xf, range=[0x0000000097e1f000-0x0000000097e20000) (0MB)
    [ 0.000000] efi: mem33: type=4, attr=0xf, range=[0x0000000097e20000-0x0000000097e2c000) (0MB)
    [ 0.000000] efi: mem34: type=3, attr=0xf, range=[0x0000000097e2c000-0x0000000097e34000) (0MB)
    [ 0.000000] efi: mem35: type=4, attr=0xf, range=[0x0000000097e34000-0x0000000097e4c000) (0MB)
    [ 0.000000] efi: mem36: type=7, attr=0xf, range=[0x0000000097e4c000-0x0000000097e4d000) (0MB)
    [ 0.000000] efi: mem37: type=4, attr=0xf, range=[0x0000000097e4d000-0x0000000097e50000) (0MB)
    [ 0.000000] efi: mem38: type=3, attr=0xf, range=[0x0000000097e50000-0x0000000097e57000) (0MB)
    [ 0.000000] efi: mem39: type=4, attr=0xf, range=[0x0000000097e57000-0x0000000097e6e000) (0MB)
    [ 0.000000] efi: mem40: type=3, attr=0xf, range=[0x0000000097e6e000-0x0000000097ee9000) (0MB)
    [ 0.000000] efi: mem41: type=4, attr=0xf, range=[0x0000000097ee9000-0x0000000097efc000) (0MB)
    [ 0.000000] efi: mem42: type=7, attr=0xf, range=[0x0000000097efc000-0x0000000097efd000) (0MB)
    [ 0.000000] efi: mem43: type=4, attr=0xf, range=[0x0000000097efd000-0x0000000097f0b000) (0MB)
    [ 0.000000] efi: mem44: type=7, attr=0xf, range=[0x0000000097f0b000-0x0000000097f0d000) (0MB)
    [ 0.000000] efi: mem45: type=4, attr=0xf, range=[0x0000000097f0d000-0x000000009810f000) (2MB)
    [ 0.000000] efi: mem46: type=3, attr=0xf, range=[0x000000009810f000-0x0000000098111000) (0MB)
    [ 0.000000] efi: mem47: type=4, attr=0xf, range=[0x0000000098111000-0x0000000099f6f000) (30MB)
    [ 0.000000] efi: mem48: type=3, attr=0xf, range=[0x0000000099f6f000-0x000000009a36f000) (4MB)
    [ 0.000000] efi: mem49: type=5, attr=0x800000000000000f, range=[0x000000009a36f000-0x000000009a56f000) (2MB)
    [ 0.000000] efi: mem50: type=6, attr=0x800000000000000f, range=[0x000000009a56f000-0x000000009aabf000) (5MB)
    [ 0.000000] efi: mem51: type=0, attr=0xf, range=[0x000000009aabf000-0x000000009aebf000) (4MB)
    [ 0.000000] efi: mem52: type=10, attr=0xf, range=[0x000000009aebf000-0x000000009afbf000) (1MB)
    [ 0.000000] efi: mem53: type=9, attr=0xf, range=[0x000000009afbf000-0x000000009afff000) (0MB)
    [ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x000000009afff000-0x000000009b000000) (0MB)
    [ 0.000000] efi: mem55: type=7, attr=0xf, range=[0x0000000100000000-0x000000015f600000) (1526MB)
    [ 0.000000] efi: mem56: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem57: type=0, attr=0x0, range=[0x000000009b000000-0x000000009fa00000) (74MB)
    [ 0.000000] efi: mem58: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    [ 0.000000] efi: mem59: type=0, attr=0x0, range=[0x00000000fe101000-0x00000000fe113000) (0MB)
    [ 0.000000] efi: mem60: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb10000) (0MB)
    [ 0.000000] efi: mem61: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem62: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed1c000) (0MB)
    [ 0.000000] efi: mem63: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem64: type=11, attr=0x8000000000000001, range=[0x00000000fed20000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem65: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x0000000100000000) (4MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Dell Inc. Inspiron 3537/028XKX, BIOS A05 08/30/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x15f600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7F80000000 write-back
    [ 0.000000] 1 base 0080000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 009B000000 mask 7FFF000000 uncachable
    [ 0.000000] 3 base 009C000000 mask 7FFC000000 uncachable
    [ 0.000000] 4 base 00FFC00000 mask 7FFFC00000 write-protect
    [ 0.000000] 5 base 0100000000 mask 7F80000000 write-back
    [ 0.000000] 6 base 015F600000 mask 7FFFE00000 uncachable
    [ 0.000000] 7 base 015F800000 mask 7FFF800000 uncachable
    [ 0.000000] 8 base 0160000000 mask 7FE0000000 uncachable
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff88000007e000] 7e000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
    [ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
    [ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15f400000-0x15f5fffff]
    [ 0.000000] [mem 0x15f400000-0x15f5fffff] page 2M
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15c000000-0x15f3fffff]
    [ 0.000000] [mem 0x15c000000-0x15f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x15bffffff]
    [ 0.000000] [mem 0x100000000-0x13fffffff] page 1G
    [ 0.000000] [mem 0x140000000-0x15bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x94bfffff] page 2M
    [ 0.000000] [mem 0x94c00000-0x94d5ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] [mem 0x95d60000-0x95dfffff] page 4k
    [ 0.000000] [mem 0x95e00000-0x9a1fffff] page 2M
    [ 0.000000] [mem 0x9a200000-0x9a36efff] page 4k
    [ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
    [ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9afff000-0x9affffff]
    [ 0.000000] [mem 0x9afff000-0x9affffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x3737a000-0x379b4fff]
    [ 0.000000] ACPI: RSDP 000000009affe014 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 000000009affe210 000AC (v01 DELL CL09 00000001 01000013)
    [ 0.000000] ACPI: FACP 000000009aff8000 0010C (v05 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20130517/tbfadt-202)
    [ 0.000000] ACPI: DSDT 000000009afe9000 0B8AC (v01 DELL CL09 00000000 ASL 00040000)
    [ 0.000000] ACPI: FACS 000000009afb8000 00040
    [ 0.000000] ACPI: SLIC 000000009affd000 00176 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: UEFI 000000009affc000 00236 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: FPDT 000000009affa000 00044 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASF! 000000009aff9000 000A5 (v32 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: HPET 000000009aff7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: APIC 000000009aff6000 0008C (v03 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: MCFG 000000009aff5000 0003C (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afe8000 006FE (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 000000009afe6000 00028 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASPT 000000009afe4000 00034 (v07 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: DBGP 000000009afe3000 00034 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdd000 00539 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdc000 00AD8 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd8000 0343C (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd5000 01E3D (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BGRT 000000009afd7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000015f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x15f5fffff]
    [ 0.000000] NODE_DATA [mem 0x15f5f8000-0x15f5fcfff]
    [ 0.000000] [ffffea0000000000-ffffea00057fffff] PMD -> [ffff88015ac00000-ffff88015ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x15f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0006efff]
    [ 0.000000] node 0: [mem 0x00070000-0x00087fff]
    [ 0.000000] node 0: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] node 0: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] node 0: [mem 0x9afff000-0x9affffff]
    [ 0.000000] node 0: [mem 0x100000000-0x15f5fffff]
    [ 0.000000] On node 0 totalpages: 1018102
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 22 pages reserved
    [ 0.000000] DMA zone: 3974 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 9742 pages used for memmap
    [ 0.000000] DMA32 zone: 623472 pages, LIFO batch:31
    [ 0.000000] Normal zone: 6104 pages used for memmap
    [ 0.000000] Normal zone: 390656 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 56
    [ 0.000000] PM: Registered nosave memory: [mem 0x0006f000-0x0006ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x94d60000-0x95d5ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9a36f000-0x9aebefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9aebf000-0x9afbefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9afbf000-0x9affefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b000000-0x9f9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfe100fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe113000-0xfeafffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb10000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [ 0.000000] e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88015f200000 s86528 r8192 d24064 u262144
    [ 0.000000] pcpu-alloc: s86528 r8192 d24064 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1002170
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3856592K/4072408K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 215816K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:1016 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2294.570 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4590.35 BogoMIPS (lpj=7648566)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000040] init_memory_mapping: [mem 0x9a36f000-0x9a56efff]
    [ 0.000042] [mem 0x9a36f000-0x9a56efff] page 4k
    [ 0.000064] init_memory_mapping: [mem 0x9a56f000-0x9aabefff]
    [ 0.000066] [mem 0x9a56f000-0x9a5fffff] page 4k
    [ 0.000067] [mem 0x9a600000-0x9a9fffff] page 2M
    [ 0.000069] [mem 0x9aa00000-0x9aabefff] page 4k
    [ 0.059748] Security Framework initialized
    [ 0.059759] AppArmor: AppArmor disabled by boot time parameter
    [ 0.059761] Yama: becoming mindful.
    [ 0.060120] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.061320] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.061810] Mount-cache hash table entries: 256
    [ 0.062052] Initializing cgroup subsys memory
    [ 0.062063] Initializing cgroup subsys devices
    [ 0.062065] Initializing cgroup subsys freezer
    [ 0.062067] Initializing cgroup subsys net_cls
    [ 0.062069] Initializing cgroup subsys blkio
    [ 0.062098] CPU: Physical Processor ID: 0
    [ 0.062100] CPU: Processor Core ID: 0
    [ 0.062105] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.063398] mce: CPU supports 7 MCE banks
    [ 0.063415] CPU0: Thermal monitoring enabled (TM1)
    [ 0.063429] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.063562] Freeing SMP alternatives memory: 20K (ffffffff819e6000 - ffffffff819eb000)
    [ 0.064699] ACPI: Core revision 20130517
    [ 0.077923] ACPI: All ACPI Tables successfully acquired
    [ 0.083767] ftrace: allocating 20100 entries in 79 pages
    [ 0.096243] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.129231] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (fam: 06, model: 45, stepping: 01)
    [ 0.129240] TSC deadline timer enabled
    [ 0.129252] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.129261] ... version: 3
    [ 0.129262] ... bit width: 48
    [ 0.129263] ... generic registers: 4
    [ 0.129265] ... value mask: 0000ffffffffffff
    [ 0.129267] ... max period: 0000ffffffffffff
    [ 0.129268] ... fixed-purpose events: 3
    [ 0.129269] ... event mask: 000000070000000f
    [ 0.167457] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.152681] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.209878] Brought up 4 CPUs
    [ 0.209882] smpboot: Total of 4 processors activated (18363.41 BogoMIPS)
    [ 0.215147] devtmpfs: initialized
    [ 0.216459] PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
    [ 0.217451] RTC time: 2:22:13, date: 11/08/13
    [ 0.217501] NET: Registered protocol family 16
    [ 0.217661] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.217663] ACPI: bus type PCI registered
    [ 0.217666] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.217737] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.217740] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.252752] PCI: Using configuration type 1 for base access
    [ 0.252922] dmi type 0xB1 record - unknown flag
    [ 0.253726] bio: create slab <bio-0> at 0
    [ 0.253868] ACPI: Added _OSI(Module Device)
    [ 0.253870] ACPI: Added _OSI(Processor Device)
    [ 0.253872] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.253874] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.256659] ACPI: EC: Look up EC in DSDT
    [ 0.259524] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.272874] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.274013] ACPI: SSDT 000000009ae7dc18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.274706] ACPI: Dynamic OEM Table Load:
    [ 0.274709] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.282313] ACPI: SSDT 000000009ae7d618 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.283108] ACPI: Dynamic OEM Table Load:
    [ 0.283111] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.301675] ACPI: SSDT 000000009ae7cd98 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.302368] ACPI: Dynamic OEM Table Load:
    [ 0.302370] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.431586] ACPI: Interpreter enabled
    [ 0.431597] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
    [ 0.431606] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.431630] ACPI: (supports S0 S3 S4 S5)
    [ 0.431632] ACPI: Using IOAPIC for interrupt routing
    [ 0.431666] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.431855] ACPI: No dock devices found.
    [ 0.634551] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [ 0.634846] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.635302] acpi PNP0A08:00: ACPI _OSC control (0x1d) granted
    [ 0.635816] PCI host bridge to bus 0000:00
    [ 0.635820] pci_bus 0000:00: root bus resource [bus 00-fe]
    [ 0.635823] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.635825] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.635828] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.635830] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.635832] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.635834] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.635836] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.635838] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.635840] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.635842] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.635844] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.635846] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.635848] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.635850] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.635852] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.635854] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    [ 0.635856] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
    [ 0.635867] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.636037] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.636053] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
    [ 0.636062] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 0.636069] pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
    [ 0.636232] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.636243] pci 0000:00:03.0: reg 0x10: [mem 0xc0810000-0xc0813fff 64bit]
    [ 0.636435] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.636456] pci 0000:00:14.0: reg 0x10: [mem 0xc0800000-0xc080ffff 64bit]
    [ 0.636523] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.636647] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.636693] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.636717] pci 0000:00:16.0: reg 0x10: [mem 0xc0818000-0xc081801f 64bit]
    [ 0.636795] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.636949] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.636965] pci 0000:00:1b.0: reg 0x10: [mem 0xc0814000-0xc0817fff 64bit]
    [ 0.637037] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.637182] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
    [ 0.637255] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.637400] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.637446] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.637518] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.637662] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
    [ 0.637734] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.637885] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.638879] pci 0000:00:1d.0: reg 0x10: [mem 0xc081c000-0xc081c3ff]
    [ 0.644729] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.644857] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.644903] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.645161] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
    [ 0.645179] pci 0000:00:1f.2: reg 0x10: [io 0x5088-0x508f]
    [ 0.645188] pci 0000:00:1f.2: reg 0x14: [io 0x5094-0x5097]
    [ 0.645196] pci 0000:00:1f.2: reg 0x18: [io 0x5080-0x5087]
    [ 0.645205] pci 0000:00:1f.2: reg 0x1c: [io 0x5090-0x5093]
    [ 0.645213] pci 0000:00:1f.2: reg 0x20: [io 0x5060-0x507f]
    [ 0.645222] pci 0000:00:1f.2: reg 0x24: [mem 0xc081b000-0xc081b7ff]
    [ 0.645264] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.645401] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.645417] pci 0000:00:1f.3: reg 0x10: [mem 0xc0819000-0xc08190ff 64bit]
    [ 0.645440] pci 0000:00:1f.3: reg 0x20: [io 0x5040-0x505f]
    [ 0.645679] pci 0000:01:00.0: [10ec:8136] type 00 class 0x020000
    [ 0.645710] pci 0000:01:00.0: reg 0x10: [io 0x4000-0x40ff]
    [ 0.645750] pci 0000:01:00.0: reg 0x18: [mem 0xc0700000-0xc0700fff 64bit]
    [ 0.645779] pci 0000:01:00.0: reg 0x20: [mem 0xc0400000-0xc0403fff 64bit pref]
    [ 0.645873] pci 0000:01:00.0: supports D1 D2
    [ 0.645875] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.652308] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.652312] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.652316] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.652322] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.652414] pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
    [ 0.652447] pci 0000:02:00.0: reg 0x10: [mem 0xc0600000-0xc067ffff 64bit]
    [ 0.652527] pci 0000:02:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    [ 0.652608] pci 0000:02:00.0: supports D1 D2
    [ 0.652610] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.658964] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.658970] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.659066] pci 0000:03:00.0: [1002:6660] type 00 class 0x038000
    [ 0.659093] pci 0000:03:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.659113] pci 0000:03:00.0: reg 0x18: [mem 0xc0500000-0xc053ffff 64bit]
    [ 0.659127] pci 0000:03:00.0: reg 0x20: [io 0x3000-0x30ff]
    [ 0.659154] pci 0000:03:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    [ 0.659233] pci 0000:03:00.0: supports D1 D2
    [ 0.659235] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
    [ 0.665628] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.665632] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.665636] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.665642] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.665658] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.726347] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726411] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726470] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726529] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726588] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726646] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726705] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726765] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.727383] ACPI: Enabled 5 GPEs in block 00 to 7F
    [ 0.727392] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.727488] Found 1 acpi root devices
    [ 0.727533] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    [ 0.727642] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.727647] vgaarb: loaded
    [ 0.727648] vgaarb: bridge control possible 0000:00:02.0
    [ 0.727700] PCI: Using ACPI for IRQ routing
    [ 0.734096] PCI: pci_cache_line_size set to 64 bytes
    [ 0.734149] e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
    [ 0.734151] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    [ 0.734152] e820: reserve RAM buffer [mem 0x94d60000-0x97ffffff]
    [ 0.734154] e820: reserve RAM buffer [mem 0x9a36f000-0x9bffffff]
    [ 0.734157] e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
    [ 0.734158] e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
    [ 0.734265] NetLabel: Initializing
    [ 0.734267] NetLabel: domain hash size = 128
    [ 0.734268] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.734282] NetLabel: unlabeled traffic allowed by default
    [ 0.734302] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.734309] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.736336] Switched to clocksource hpet
    [ 0.741791] pnp: PnP ACPI init
    [ 0.741808] ACPI: bus type PNP registered
    [ 0.741844] pnp 00:00: [dma 4]
    [ 0.741872] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.741898] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.742037] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.742091] system 00:03: [io 0x0680-0x069f] has been reserved
    [ 0.742094] system 00:03: [io 0xfd60-0xfd63] has been reserved
    [ 0.742096] system 00:03: [io 0xffff] has been reserved
    [ 0.742099] system 00:03: [io 0xffff] has been reserved
    [ 0.742101] system 00:03: [io 0xffff] has been reserved
    [ 0.742103] system 00:03: [io 0x1800-0x18fe] could not be reserved
    [ 0.742106] system 00:03: [io 0x164e-0x164f] has been reserved
    [ 0.742109] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.742169] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.742223] system 00:05: [io 0x1854-0x1857] has been reserved
    [ 0.742227] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.742290] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.742323] pnp 00:07: Plug and Play ACPI device, IDs DLL05eb PNP0f13 (active)
    [ 0.799825] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.799828] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.799831] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.799833] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.799836] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.799838] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.799840] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.799843] system 00:08: [mem 0xff000000-0xff000fff] has been reserved
    [ 0.799845] system 00:08: [mem 0xff010000-0xffffffff] could not be reserved
    [ 0.799848] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.799850] system 00:08: [mem 0x9fa22000-0x9fa22fff] has been reserved
    [ 0.799853] system 00:08: [mem 0x9fa10000-0x9fa1ffff] has been reserved
    [ 0.799856] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.800510] pnp: PnP ACPI: found 9 devices
    [ 0.800512] ACPI: bus type PNP unregistered
    [ 0.807188] pci 0000:02:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 0.807192] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 0.807227] pci 0000:00:1c.3: BAR 15: assigned [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807230] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.807234] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.807240] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.807244] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807251] pci 0000:02:00.0: BAR 6: assigned [mem 0x9fb00000-0x9fb0ffff pref]
    [ 0.807254] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.807259] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.807263] pci 0000:00:1c.3: bridge window [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807270] pci 0000:03:00.0: BAR 6: assigned [mem 0xc0540000-0xc055ffff pref]
    [ 0.807272] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.807275] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.807280] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.807285] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807584] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.807586] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.807589] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.807591] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.807593] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.807595] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.807597] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.807599] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.807601] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.807603] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.807605] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.807607] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.807609] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.807611] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.807613] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.807615] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
    [ 0.807617] pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff]
    [ 0.807619] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 0.807622] pci_bus 0000:01: resource 1 [mem 0xc0700000-0xc07fffff]
    [ 0.807624] pci_bus 0000:01: resource 2 [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807626] pci_bus 0000:02: resource 1 [mem 0xc0600000-0xc06fffff]
    [ 0.807628] pci_bus 0000:02: resource 2 [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807630] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    [ 0.807632] pci_bus 0000:03: resource 1 [mem 0xc0500000-0xc05fffff]
    [ 0.807635] pci_bus 0000:03: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807677] NET: Registered protocol family 2
    [ 0.807890] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808027] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808127] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.808150] TCP: reno registered
    [ 0.808162] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808181] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808261] NET: Registered protocol family 1
    [ 0.808274] pci 0000:00:02.0: Boot video device
    [ 0.823082] PCI: CLS 64 bytes, default 64
    [ 0.823122] Unpacking initramfs...
    [ 0.982411] Freeing initrd memory: 6380K (ffff88003737a000 - ffff8800379b5000)
    [ 0.982417] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.982420] software IO TLB [mem 0x8ed70000-0x92d70000] (64MB) mapped at [ffff88008ed70000-ffff880092d6ffff]
    [ 0.982447] Simple Boot Flag at 0x44 set to 0x1
    [ 0.982626] Scanning for low memory corruption every 60 seconds
    [ 0.982970] audit: initializing netlink socket (disabled)
    [ 0.982981] type=2000 audit(1383877333.966:1): initialized
    [ 1.000018] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.001570] zbud: loaded
    [ 1.001748] VFS: Disk quotas dquot_6.5.2
    [ 1.001801] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.001998] msgmni has been set to 7672
    [ 1.002265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.002308] io scheduler noop registered
    [ 1.002311] io scheduler deadline registered
    [ 1.002344] io scheduler cfq registered (default)
    [ 1.002441] pcieport 0000:00:1c.0: irq 56 for MSI/MSI-X
    [ 1.002526] pcieport 0000:00:1c.3: irq 57 for MSI/MSI-X
    [ 1.002598] pcieport 0000:00:1c.4: irq 58 for MSI/MSI-X
    [ 1.002681] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 1.002684] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002688] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 1.002706] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 1.002708] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002712] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 1.002728] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 1.002730] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002734] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 1.002751] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.002769] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.002888] efifb: probing for efifb
    [ 1.003509] efifb: framebuffer at 0xb0000000, mapped to 0xffffc90020e00000, using 4160k, total 4160k
    [ 1.003511] efifb: mode is 1366x768x32, linelength=5504, pages=1
    [ 1.003513] efifb: scrolling: redraw
    [ 1.003515] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 1.007477] Console: switching to colour frame buffer device 170x48
    [ 1.011265] fb0: EFI VGA frame buffer device
    [ 1.011272] intel_idle: MWAIT substates: 0x11142120
    [ 1.011274] intel_idle: v0.4 model 0x45
    [ 1.011275] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.011336] GHES: HEST is not enabled!
    [ 1.011398] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.011946] Linux agpgart interface v0.103
    [ 1.012027] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.032274] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.032308] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.032411] mousedev: PS/2 mouse device common for all mice
    [ 1.032672] rtc_cmos 00:04: RTC can wake from S4
    [ 1.032819] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 1.032857] rtc_cmos 00:04: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 1.032871] Intel P-state driver initializing.
    [ 1.032884] Intel pstate controlling: cpu 0
    [ 1.032911] Intel pstate controlling: cpu 1
    [ 1.032923] Intel pstate controlling: cpu 2
    [ 1.032935] Intel pstate controlling: cpu 3
    [ 1.033105] cpuidle: using governor ladder
    [ 1.033295] cpuidle: using governor menu
    [ 1.033356] drop_monitor: Initializing network drop monitor service
    [ 1.033431] TCP: cubic registered
    [ 1.033524] NET: Registered protocol family 10
    [ 1.033688] NET: Registered protocol family 17
    [ 1.033697] Key type dns_resolver registered
    [ 1.033905] PM: Hibernation image not present or could not be loaded.
    [ 1.033915] registered taskstats version 1
    [ 1.034407] Magic number: 5:662:358
    [ 1.034483] rtc_cmos 00:04: setting system clock to 2013-11-08 02:22:14 UTC (1383877334)
    [ 1.035212] Freeing unused kernel memory: 1140K (ffffffff818c9000 - ffffffff819e6000)
    [ 1.035213] Write protecting the kernel read-only data: 8192k
    [ 1.037442] Freeing unused kernel memory: 1084K (ffff8800024f1000 - ffff880002600000)
    [ 1.038163] Freeing unused kernel memory: 352K (ffff8800027a8000 - ffff880002800000)
    [ 1.045866] systemd-udevd[57]: starting version 208
    [ 1.050291] [drm] Initialized drm 1.1.0 20060810
    [ 1.053926] [drm] radeon kernel modesetting enabled.
    [ 1.053955] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 1.053962] radeon 0000:03:00.0: enabling device (0000 -> 0003)
    [ 1.054153] [drm] initializing kernel modesetting (HAINAN 0x1002:0x6660 0x1028:0x05EA).
    [ 1.054190] [drm] register mmio base: 0xC0500000
    [ 1.054191] [drm] register mmio size: 262144
    [ 1.055856] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.982382] tsc: Refined TSC clocksource calibration: 2294.688 MHz
    [ 2.566653] ATOM BIOS: Dell
    [ 2.566668] [drm] GPU not posted. posting now...
    [ 2.570040] radeon 0000:03:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
    [ 2.570042] radeon 0000:03:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
    [ 2.570044] [drm] Detected VRAM RAM=1024M, BAR=256M
    [ 2.570045] [drm] RAM width 64bits DDR
    [ 2.570094] [TTM] Zone kernel: Available graphics memory: 1965320 kiB
    [ 2.570095] [TTM] Initializing pool allocator
    [ 2.570099] [TTM] Initializing DMA pool allocator
    [ 2.570117] [drm] radeon: 1024M of VRAM memory ready
    [ 2.570118] [drm] radeon: 512M of GTT memory ready.
    [ 2.570129] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 2.570456] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 2.570460] [drm] PCIE gen 2 link speeds already enabled
    [ 2.570620] [drm] Loading HAINAN Microcode
    [ 2.981834] Switched to clocksource tsc
    [ 2.993997] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 2.994098] radeon 0000:03:00.0: WB enabled
    [ 2.994100] radeon 0000:03:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880156e63c00
    [ 2.994102] radeon 0000:03:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04 and cpu addr 0xffff880156e63c04
    [ 2.994103] radeon 0000:03:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08 and cpu addr 0xffff880156e63c08
    [ 2.994104] radeon 0000:03:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880156e63c0c
    [ 2.994106] radeon 0000:03:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10 and cpu addr 0xffff880156e63c10
    [ 2.994107] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.994108] [drm] Driver supports precise vblank timestamp query.
    [ 2.994126] radeon 0000:03:00.0: irq 59 for MSI/MSI-X
    [ 2.994137] radeon 0000:03:00.0: radeon: using MSI.
    [ 2.994157] [drm] radeon: irq initialized.
    [ 3.013688] [drm] ring test on 0 succeeded in 1 usecs
    [ 3.013694] [drm] ring test on 1 succeeded in 1 usecs
    [ 3.013698] [drm] ring test on 2 succeeded in 1 usecs
    [ 3.013761] [drm] ring test on 3 succeeded in 2 usecs
    [ 3.013770] [drm] ring test on 4 succeeded in 1 usecs
    [ 3.015377] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 3.015424] [drm] ib test on ring 1 succeeded in 0 usecs
    [ 3.015476] [drm] ib test on ring 2 succeeded in 0 usecs
    [ 3.015496] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 3.015517] [drm] ib test on ring 4 succeeded in 1 usecs
    [ 3.015656] [drm] Radeon Display Connectors
    [ 3.015663] [drm] Internal thermal controller without fan control
    [ 3.015712] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 3.015739] == power state 0 ==
    [ 3.015740] ui class: none
    [ 3.015742] internal class: boot
    [ 3.015744] caps:
    [ 3.015746] uvd vclk: 0 dclk: 0
    [ 3.015748] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.015749] status: c r b
    [ 3.015752] == power state 1 ==
    [ 3.015753] ui class: performance
    [ 3.015754] internal class: none
    [ 3.015756] caps:
    [ 3.015758] uvd vclk: 0 dclk: 0
    [ 3.015760] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015761] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.015763] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.015765] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.015767] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.015768] status:
    [ 3.015769] == power state 2 ==
    [ 3.015771] ui class: battery
    [ 3.015772] internal class: none
    [ 3.015773] caps:
    [ 3.015775] uvd vclk: 0 dclk: 0
    [ 3.015777] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015778] power level 1 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015780] power level 2 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015781] status:
    [ 3.023133] switching from power state:
    [ 3.023135] ui class: none
    [ 3.023136] internal class: boot
    [ 3.023138] caps:
    [ 3.023139] uvd vclk: 0 dclk: 0
    [ 3.023141] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.023142] status: c b
    [ 3.023143] switching to power state:
    [ 3.023144] ui class: performance
    [ 3.023145] internal class: none
    [ 3.023147] caps:
    [ 3.023148] uvd vclk: 0 dclk: 0
    [ 3.023149] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.023151] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.023152] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.023154] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.023155] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.023156] status: r
    [ 3.024470] [drm] radeon: dpm initialized
    [ 3.024475] radeon 0000:03:00.0: No connectors reported connected with modes
    [ 3.024477] [drm] Cannot find any crtc or sizes - going 1024x768
    [ 3.026968] [drm] fb mappable at 0xA1150000
    [ 3.026970] [drm] vram apper at 0xA0000000
    [ 3.026971] [drm] size 3145728
    [ 3.026972] [drm] fb depth is 24
    [ 3.026973] [drm] pitch is 4096
    [ 3.026976] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 3.027040] radeon 0000:03:00.0: fb1: radeondrmfb frame buffer device
    [ 3.027042] radeon 0000:03:00.0: registered panic notifier
    [ 3.027053] [drm] Initialized radeon 2.34.0 20080528 for 0000:03:00.0 on minor 0
    [ 3.027978] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0D:00/input/input1
    [ 3.028026] ACPI: Lid Switch [LID0]
    [ 3.028063] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input2
    [ 3.028066] ACPI: Power Button [PWRB]
    [ 3.028114] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 3.028116] ACPI: Power Button [PWRF]
    [ 3.031882] [drm] Memory usable by graphics device = 2048M
    [ 3.031886] checking generic (b0000000 410000) vs hw (b0000000 10000000)
    [ 3.031888] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 3.031900] Console: switching to colour dummy device 80x25
    [ 3.031959] i915 0000:00:02.0: setting latency timer to 64
    [ 3.056716] i915 0000:00:02.0: irq 60 for MSI/MSI-X
    [ 3.056723] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.056724] [drm] Driver supports precise vblank timestamp query.
    [ 3.056784] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.101180] fbcon: inteldrmfb (fb0) is primary device
    [ 4.361087] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 4.707482] Console: switching to colour frame buffer device 170x48
    [ 4.712160] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 4.712553] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 4.713578] ACPI Error: [\_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    [ 4.713584] ACPI Error: Method parse/execution failed [\_SB_.PCI0.RP05.PEGP.DD02._BCL] (Node ffff880159325d98), AE_NOT_FOUND (20130517/psparse-536)
    [ 4.713871] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
    [ 4.713930] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:2f/LNXVIDEO:00/input/input4
    [ 4.715381] acpi device:55: registered as cooling_device0
    [ 4.715415] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 4.715455] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 4.715487] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 1
    [ 4.738967] ACPI: bus type USB registered
    [ 4.738999] usbcore: registered new interface driver usbfs
    [ 4.739016] usbcore: registered new interface driver hub
    [ 4.739050] usbcore: registered new device driver usb
    [ 4.739638] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 4.739642] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.739649] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 4.739721] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 4.739741] xhci_hcd 0000:00:14.0: irq 61 for MSI/MSI-X
    [ 4.740145] xHCI xhci_add_endpoint called for root hub
    [ 4.740148] xHCI xhci_check_bandwidth called for root hub
    [ 4.740208] hub 1-0:1.0: USB hub found
    [ 4.740218] hub 1-0:1.0: 9 ports detected
    [ 4.741007] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.741164] ehci-pci: EHCI PCI platform driver
    [ 4.742756] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.742760] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 4.743091] xHCI xhci_add_endpoint called for root hub
    [ 4.743093] xHCI xhci_check_bandwidth called for root hub
    [ 4.743135] hub 2-0:1.0: USB hub found
    [ 4.743141] hub 2-0:1.0: 4 ports detected
    [ 4.743425] SCSI subsystem initialized
    [ 4.745035] ACPI: bus type ATA registered
    [ 4.745122] libata version 3.00 loaded.
    [ 4.747867] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 4.747875] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 4.747880] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 4.747891] ehci-pci 0000:00:1d.0: debug port 2
    [ 4.751784] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 4.751800] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc081c000
    [ 4.760774] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 4.760925] hub 3-0:1.0: USB hub found
    [ 4.760930] hub 3-0:1.0: 2 ports detected
    [ 4.761082] ahci 0000:00:1f.2: version 3.0
    [ 4.761230] ahci 0000:00:1f.2: irq 62 for MSI/MSI-X
    [ 4.774140] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x3 impl SATA mode
    [ 4.774146] ahci 0000:00:1f.2: flags: 64bit ncq led clo only pio slum part deso sadm sds apst
    [ 4.774151] ahci 0000:00:1f.2: setting latency timer to 64
    [ 4.774614] scsi0 : ahci
    [ 4.774722] scsi1 : ahci
    [ 4.774798] scsi2 : ahci
    [ 4.774868] ata1: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b100 irq 62
    [ 4.774871] ata2: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b180 irq 62
    [ 4.774873] ata3: DUMMY
    [ 5.067345] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 5.094002] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.094032] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 5.099568] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A5HH, SD12, max UDMA/100
    [ 5.100914] ata2.00: configured for UDMA/100
    [ 5.129572] ata1.00: ATA-8: ST500LT012-1DG142, 0001SDM1, max UDMA/133
    [ 5.129577] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 5.191169] hub 3-1:1.0: USB hub found
    [ 5.191237] hub 3-1:1.0: 8 ports detected
    [ 5.255854] ata1.00: configured for UDMA/133
    [ 5.256061] scsi 0:0:0:0: Direct-Access ATA ST500LT012-1DG14 0001 PQ: 0 ANSI: 5
    [ 5.261341] scsi 1:0:0:0: CD-ROM PLDS DVD+-RW DU-8A5HH SD12 PQ: 0 ANSI: 5
    [ 5.263686] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 5.263691] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 5.263724] sd 0:0:0:0: [sda] Write Protect is off
    [ 5.263727] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 5.263737] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.269320] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 5.269323] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 5.269521] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 5.332482] sda: sda1 sda2
    [ 5.333235] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 5.457253] usb 3-1.7: new high-speed USB device number 3 using ehci-pci
    [ 5.549500] device-mapper: uevent: version 1.0.3
    [ 5.549652] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: [email protected]
    [ 5.554331] bio: create slab <bio-1> at 1
    [ 5.607167] usb 3-1.8: new high-speed USB device number 4 using ehci-pci
    [ 6.510287] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.581705] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 7.582431] systemd[1]: Set hostname to <archins3537>.
    [ 8.087615] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 8.087670] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 8.087682] systemd[1]: Starting Login Prompts.
    [ 8.087692] systemd[1]: Reached target Login Prompts.
    [ 8.087700] systemd[1]: Starting Remote File Systems.
    [ 8.087707] systemd[1]: Reached target Remote File Systems.
    [ 8.087715] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 8.087736] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 8.087743] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 8.087762] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 8.087769] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 8.087789] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 8.087796] systemd[1]: Starting Delayed Shutdown Socket.
    [ 8.087813] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 8.087822] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 8.087851] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 8.087858] systemd[1]: Starting Paths.
    [ 8.087865] systemd[1]: Reached target Paths.
    [ 8.087878] systemd[1]: Starting udev Kernel Socket.
    [ 8.087895] systemd[1]: Listening on udev Kernel Socket.
    [ 8.087904] systemd[1]: Starting udev Control Socket.
    [ 8.087920] systemd[1]: Listening on udev Control Socket.
    [ 8.087944] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 8.088034] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 8.088043] systemd[1]: Starting Encrypted Volumes.
    [ 8.088051] systemd[1]: Reached target Encrypted Volumes.
    [ 8.088059] systemd[1]: Starting Journal Socket.
    [ 8.088098] systemd[1]: Listening on Journal Socket.
    [ 8.094096] systemd[1]: Started Set Up Additional Binary Formats.
    [ 8.146808] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 8.147345] systemd[1]: Starting udev Coldplug all Devices...
    [ 8.147641] systemd[1]: Starting Setup Virtual Console...
    [ 8.156662] systemd[1]: Started Load Kernel Modules.
    [ 8.156702] systemd[1]: Mounted FUSE Control File System.
    [ 8.156719] systemd[1]: Mounting Debug File System...
    [ 8.160118] systemd[1]: Starting Apply Kernel Variables...
    [ 8.160456] systemd[1]: Mounting POSIX Message Queue File System...
    [ 8.160770] systemd[1]: Mounting Configuration File System...
    [ 8.161235] systemd[1]: Starting Journal Service...
    [ 8.161549] systemd[1]: Started Journal Service.
    [ 8.407759] systemd-journald[153]: Vacuuming done, freed 0 bytes
    [ 8.622532] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
    [ 8.834003] systemd-udevd[177]: starting version 208
    [ 9.449711] ACPI: Requesting acpi_cpufreq
    [ 9.652388] snd_hda_intel 0000:00:03.0: irq 63 for MSI/MSI-X
    [ 9.652512] snd_hda_intel 0000:00:1b.0: irq 64 for MSI/MSI-X
    [ 9.703295] ACPI: AC Adapter [ACAD] (off-line)
    [ 9.734702] wmi: Mapper loaded
    [ 9.767167] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 9.900528] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x15
    [ 9.914682] ACPI: Battery Slot [BAT1] (battery present)
    [ 9.946497] hda_codec: invalid CONNECT_LIST verb 5[1]:0
    [ 9.946555] hda_codec: invalid CONNECT_LIST verb 6[1]:0
    [ 9.946621] hda_codec: invalid CONNECT_LIST verb 7[1]:0
    [ 9.948456] input: HDA Intel MID HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input7
    [ 9.948585] input: HDA Intel MID HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input8
    [ 9.948656] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
    [ 9.953096] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
    [ 9.953371] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 9.953378] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953384] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953388] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953392] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953394] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953398] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953402] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \IO_D 3 (20130517/utaddress-251)
    [ 9.953406] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953407] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 9.953792] mei_me 0000:00:16.0: setting latency timer to 64
    [ 9.953838] mei_me 0000:00:16.0: irq 65 for MSI/MSI-X
    [ 9.956390] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 9.956608] ACPI Warning: 0x0000000000005040-0x000000000000505f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 9.956615] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.231648] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 10.250684] cfg80211: Calling CRDA to update world regulatory domain
    [ 10.307646] input: Dell WMI hotkeys as /devices/virtual/input/input11
    [ 10.310649] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313166] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313536] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313923] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 10.347294] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 10.347309] r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 10.347544] r8169 0000:01:00.0: irq 66 for MSI/MSI-X
    [ 10.347727] r8169 0000:01:00.0 eth0: RTL8106e at 0xffffc90022cee000, 74:86:7a:50:ce:f4, XID 04900000 IRQ 66
    [ 10.381911] iTCO_vendor_support: vendor-support=0
    [ 10.393283] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 10.393324] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 10.393578] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 10.400848] systemd-udevd[183]: renamed network interface eth0 to enp1s0
    [ 10.416483] ath: EEPROM regdomain: 0x60
    [ 10.416486] ath: EEPROM indicates we should expect a direct regpair map
    [ 10.416489] ath: Country alpha2 being used: 00
    [ 10.416490] ath: Regpair used: 0x60
    [ 10.614808] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 10.615079] ieee80211 phy0: Atheros AR9565 Rev:1 mem=0xffffc90035180000, irq=19
    [ 10.643067] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 10.643619] systemd-udevd[189]: renamed network interface wlan0 to wlp2s0
    [ 10.646589] scsi3 : SCSI emulation for RTS5139 USB card reader
    [ 10.646742]

    Cdh wrote:
    You didn't give much information so...
    Blacklisting is now done via /etc/modprobe.d/*.conf files
    For example:
    /etc/modprobe.d/disable-radeon.conf would contain
    install radeon /bin/false
    You can also write "blacklist radeon" instead but that only prevents loading it automatically on itself while booting. You can still modprobe it and if it is a dependency of an automatically loaded module it will still get loaded. With the install ... /bin/false there is no way to load it.
    Also you need to make sure that it is not in the modules array in /etc/mkinitcpio.conf (or that your disable-radeon.conf is in the files array) because the initramfs is its own mini-system that doesn't know about the module configuration otherwise.
    but thats the problem ! i need radeon module to start because vgaswitcheroo needs it ! and then trun it off because 'I' dont need it ! anyway i ll give 'bin/false' method a try !

  • Problem with failing ata link

    Hello,
    I might be in the wrong section, but I got a serious issue I can´t track down!
    Lets start with the symptoms:
    on BIOS-HW-initialisation I get randomly a S.M.A.R.T. error for my root-HD (if the error occurs ARCH won´t boot, but WIN7 does from the same drive without any problems!)
    if ARCH start usually everything is fine, but:
    recently, during normal usage of ARCH, my second HD with my home-partition disappeared (still listed on /etc/mtab, but no more in fdisk -l or lsblk)
    I know, that I can´t exclude possible hardware-problems, but since my second HD never showed any problems via S.M.A.R.T. I wouldn´t consider it as origin of the problem.
    Maybe this is due to a problematic ata-chip on my mainboard (ASRock 880g Extreme3)?
    This could maybe explain the errors randomly between both drives.
    As additional information:
    Earlier I experienced problems booting ARCH with some 'frozen ata links' already, which were related to my DVD-drive (at least they disappeared after I plugged it off).
    The errormessages did not point to the DVD-drive, but to my earlier root-HD, which broke after a short lifetime of maybe 1.5 years.
    I don´t know if this could be a mainboard related problem.
    Can those problems affect the sanity of harddrives?
    Then why didn´t WIN7 had any problems at all? (Okay maybe WIN7 simply ignores problems...)
    I used Kubuntu previously of ARCH and sata-related error messages came after the migration to ARCH.
    I would think, that this could lead to a driver/kernel related issue, but to be honest, I am not enough into this matter...
    My search in the WWW didn´t lead to any helping clues...
    So if someone more experienced could give me some advice on interpreting the situation and my syslog I would be very thankful!
    If you need more information, tell me and I will update the post!
    Thanks and greeting!
    Malte
    uname -a: Linux 3.4.4-2-ARCH #1 SMP PREEMPT Sun Jun 24 18:59:47 CEST 2012 x86_64 GNU/Linux
    This is the syslog (sda is the data-HD):
    Jul 12 13:12:34 localhost kernel: [ 3620.597956] ata3: hard resetting link
    Jul 12 13:12:35 localhost kernel: [ 3621.082485] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:35 localhost kernel: [ 3621.088099] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x100)
    Jul 12 13:12:40 localhost kernel: [ 3626.079118] ata3: hard resetting link
    Jul 12 13:12:40 localhost kernel: [ 3626.565475] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:40 localhost kernel: [ 3626.571103] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x100)
    Jul 12 13:12:40 localhost kernel: [ 3626.571122] ata3: limiting SATA link speed to 1.5 Gbps
    Jul 12 13:12:45 localhost kernel: [ 3631.562105] ata3: hard resetting link
    Jul 12 13:12:47 localhost kernel: [ 3633.770658] ata3: SATA link down (SStatus 1 SControl 310)
    Jul 12 13:12:47 localhost kernel: [ 3633.770674] ata3.00: disabled
    Jul 12 13:12:47 localhost kernel: [ 3633.784024] ata3: hard resetting link
    Jul 12 13:12:48 localhost kernel: [ 3634.670054] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:48 localhost kernel: [ 3634.789959] ata3: hard resetting link
    Jul 12 13:12:49 localhost kernel: [ 3635.276308] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:49 localhost kernel: [ 3635.412888] ata3: hard resetting link
    Jul 12 13:12:50 localhost kernel: [ 3635.899221] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:50 localhost kernel: [ 3636.015842] ata3: hard resetting link
    Jul 12 13:12:50 localhost kernel: [ 3636.502157] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:50 localhost kernel: [ 3636.635375] sd 2:0:0:0: [sda] Result: hostbyte=0x00 driverbyte=0x08
    Jul 12 13:12:50 localhost kernel: [ 3636.635378] sd 2:0:0:0: [sda] Sense Key : 0xb [current] [descriptor]
    Jul 12 13:12:50 localhost kernel: [ 3636.635380] Descriptor sense data with sense descriptors (in hex):
    Jul 12 13:12:50 localhost kernel: [ 3636.635382] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    Jul 12 13:12:50 localhost kernel: [ 3636.635386] 6f 9a 2a 2f
    Jul 12 13:12:50 localhost kernel: [ 3636.635388] sd 2:0:0:0: [sda] ASC=0x0 ASCQ=0x0
    Jul 12 13:12:50 localhost kernel: [ 3636.635390] sd 2:0:0:0: [sda] CDB: cdb[0]=0x28: 28 00 6f 9a 2a 2f 00 01 00 00
    Jul 12 13:12:50 localhost kernel: [ 3636.635418] sd 2:0:0:0: [sda] killing request
    Jul 12 13:12:50 localhost kernel: [ 3636.635429] ata3: EH complete
    Jul 12 13:12:50 localhost kernel: [ 3636.635440] ata3.00: detaching (SCSI 2:0:0:0)
    Jul 12 13:12:50 localhost kernel: [ 3636.635467] sd 2:0:0:0: [sda] Unhandled error code
    Jul 12 13:12:50 localhost kernel: [ 3636.635469] sd 2:0:0:0: [sda] Result: hostbyte=0x01 driverbyte=0x00
    Jul 12 13:12:50 localhost kernel: [ 3636.635471] sd 2:0:0:0: [sda] CDB: cdb[0]=0x28: 28 00 6f 9a 2b 2f 00 01 00 00
    Jul 12 13:12:50 localhost kernel: [ 3636.641628] sd 2:0:0:0: [sda] Synchronizing SCSI cache
    Jul 12 13:12:50 localhost kernel: [ 3636.641659] sd 2:0:0:0: [sda] Result: hostbyte=0x04 driverbyte=0x00
    Jul 12 13:12:50 localhost kernel: [ 3636.641662] sd 2:0:0:0: [sda] Stopping disk
    Jul 12 13:12:50 localhost kernel: [ 3636.641667] sd 2:0:0:0: [sda] START_STOP FAILED
    Jul 12 13:12:50 localhost kernel: [ 3636.641669] sd 2:0:0:0: [sda] Result: hostbyte=0x04 driverbyte=0x00
    fdisk -l (as you can see, only my root-HD sdb is present...)
    [root@rechenknecht ~]# fdisk -l
    Disk /dev/sdb: 500.1 GB, 500107862016 bytes
    255 Köpfe, 63 Sektoren/Spur, 60801 Zylinder, zusammen 976773168 Sektoren
    Einheiten = Sektoren von 1 × 512 = 512 Bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x4e93d8b3
    Gerät boot. Anfang Ende Blöcke Id System
    /dev/sdb1 * 2048 206847 102400 7 HPFS/NTFS/exFAT
    /dev/sdb2 206848 102402047 51097600 7 HPFS/NTFS/exFAT
    /dev/sdb3 102402048 800643071 349120512 7 HPFS/NTFS/exFAT
    /dev/sdb4 800643072 976773167 88065048 5 Erweiterte
    /dev/sdb5 * 800643135 801028631 192748+ 83 Linux
    /dev/sdb6 801028695 820524977 9748141+ 82 Linux Swap / Solaris
    /dev/sdb7 820525041 976773167 78124063+ 83 Linux
    cat /etc/mtab (still a mounted sda in mtab?)
    [root@rechenknecht ~]# cat /etc/mtab
    rootfs / rootfs rw 0 0
    proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
    sys /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
    dev /dev devtmpfs rw,nosuid,relatime,size=4054648k,nr_inodes=1013662,mode=755 0 0
    run /run tmpfs rw,nosuid,nodev,relatime,mode=755 0 0
    /dev/sdb7 / ext4 rw,relatime,data=ordered 0 0
    devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
    shm /dev/shm tmpfs rw,nosuid,nodev,relatime 0 0
    tmpfs /tmp tmpfs rw,nosuid,nodev,relatime 0 0
    /dev/sdb5 /boot ext4 rw,relatime,data=ordered 0 0
    /dev/sda1 /mnt/daten ext4 rw,relatime,data=ordered 0 0
    binfmt /proc/sys/fs/binfmt_misc binfmt_misc rw,relatime 0 0
    cat /var/log/dmesg.log
    [root@rechenknecht ~]# cat /var/log/dmesg.log
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.4-2-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 (GCC) ) #1 SMP PREEMPT Sun Jun 24 18:59:47 CEST 2012
    [ 0.000000] Command line: root=/dev/sdb7 ro nomodeset vga=0
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009b800 (usable)
    [ 0.000000] BIOS-e820: 000000000009b800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000c7ea0000 (usable)
    [ 0.000000] BIOS-e820: 00000000c7ea0000 - 00000000c7eb0000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000c7eb0000 - 00000000c7ee0000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000c7ee0000 - 00000000c7f00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000238000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./880G Extreme3, BIOS P1.70 06/21/2010
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x238000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000C0000000 mask FFFFF8000000 write-back
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 0000000238000000 aka 9088M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000c8000000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xc7ea0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000c7ea0000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00c7e00000 page 2M
    [ 0.000000] 00c7e00000 - 00c7ea0000 page 4k
    [ 0.000000] kernel direct mapping tables up to c7ea0000 @ 1fffd000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000238000000
    [ 0.000000] 0100000000 - 0200000000 page 1G
    [ 0.000000] 0200000000 - 0238000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 238000000 @ c7e9e000-c7ea0000
    [ 0.000000] RAMDISK: 37d19000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000fa940 00014 (v00 ACPIAM)
    [ 0.000000] ACPI: RSDT 00000000c7ea0000 00044 (v01 062110 RSDT2249 20100621 MSFT 00000097)
    [ 0.000000] ACPI: FACP 00000000c7ea0200 00084 (v01 A_M_I OEMFACP 12000601 MSFT 00000097)
    [ 0.000000] ACPI: DSDT 00000000c7ea0450 07D9F (v01 AS368 AS368164 00000164 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000c7eb0000 00040
    [ 0.000000] ACPI: APIC 00000000c7ea0390 0007C (v01 062110 APIC2249 20100621 MSFT 00000097)
    [ 0.000000] ACPI: MCFG 00000000c7ea0410 0003C (v01 062110 OEMMCFG 20100621 MSFT 00000097)
    [ 0.000000] ACPI: OEMB 00000000c7eb0040 00072 (v01 062110 OEMB2249 20100621 MSFT 00000097)
    [ 0.000000] ACPI: SRAT 00000000c7eaa450 000E8 (v03 AMD FAM_F_10 00000002 AMD 00000001)
    [ 0.000000] ACPI: AAFT 00000000c7eaa540 00027 (v01 062110 OEMAAFT 20100621 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000c7eaa570 00038 (v01 062110 OEMHPET 20100621 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000c7eaa5b0 0088C (v01 A M I POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
    [ 0.000000] SRAT: Node 0 PXM 0 0-a0000
    [ 0.000000] SRAT: Node 0 PXM 0 100000-c8000000
    [ 0.000000] SRAT: Node 0 PXM 0 100000000-238000000
    [ 0.000000] NUMA: Node 0 [0,a0000) + [100000,c8000000) -> [0,c8000000)
    [ 0.000000] NUMA: Node 0 [0,c8000000) + [100000000,238000000) -> [0,238000000)
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000238000000
    [ 0.000000] NODE_DATA [0000000237ffc000 - 0000000237ffffff]
    [ 0.000000] [ffffea0000000000-ffffea0008dfffff] PMD -> [ffff88022f600000-ffff8802375fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00238000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009b
    [ 0.000000] 0: 0x00000100 -> 0x000c7ea0
    [ 0.000000] 0: 0x00100000 -> 0x00238000
    [ 0.000000] On node 0 totalpages: 2096683
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3910 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 798432 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19968 pages used for memmap
    [ 0.000000] Normal zone: 1257984 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
    [ 0.000000] SMP: Allowing 6 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009b000 - 000000000009c000
    [ 0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000
    [ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000c7ea0000 - 00000000c7eb0000
    [ 0.000000] PM: Registered nosave memory: 00000000c7eb0000 - 00000000c7ee0000
    [ 0.000000] PM: Registered nosave memory: 00000000c7ee0000 - 00000000c7f00000
    [ 0.000000] PM: Registered nosave memory: 00000000c7f00000 - 00000000fff00000
    [ 0.000000] PM: Registered nosave memory: 00000000fff00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at c7f00000 (gap: c7f00000:38000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:6 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff880237c00000 s82880 r8192 d23616 u262144
    [ 0.000000] pcpu-alloc: s82880 r8192 d23616 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 - -
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2060326
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sdb7 ro nomodeset vga=0
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ bc000000 size 32 MB
    [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
    [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    [ 0.000000] Please enable the IOMMU option in the BIOS setup
    [ 0.000000] This costs you 64 MB of RAM
    [ 0.000000] Mapping aperture over 65536 KB of RAM @ bc000000
    [ 0.000000] PM: Registered nosave memory: 00000000bc000000 - 00000000c0000000
    [ 0.000000] Memory: 8109296k/9306112k available (4538k kernel code, 919380k absent, 277436k reserved, 4308k data, 740k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:728 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 3422.215 MHz processor.
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 6847.61 BogoMIPS (lpj=11407383)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000025] Security Framework initialized
    [ 0.000029] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000418] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002612] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003622] Mount-cache hash table entries: 256
    [ 0.003775] Initializing cgroup subsys cpuacct
    [ 0.003777] Initializing cgroup subsys memory
    [ 0.003784] Initializing cgroup subsys devices
    [ 0.003786] Initializing cgroup subsys freezer
    [ 0.003787] Initializing cgroup subsys net_cls
    [ 0.003789] Initializing cgroup subsys blkio
    [ 0.003808] tseg: 0000000000
    [ 0.003818] CPU: Physical Processor ID: 0
    [ 0.003819] CPU: Processor Core ID: 0
    [ 0.003821] mce: CPU supports 6 MCE banks
    [ 0.003825] LVT offset 0 assigned for vector 0xf9
    [ 0.004362] ACPI: Core revision 20120320
    [ 0.007773] ftrace: allocating 17820 entries in 70 pages
    [ 0.014762] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.047742] CPU0: AMD Phenom(tm) II X4 965 Processor stepping 03
    [ 0.153366] Performance Events: AMD PMU driver.
    [ 0.153369] ... version: 0
    [ 0.153370] ... bit width: 48
    [ 0.153371] ... generic registers: 4
    [ 0.153372] ... value mask: 0000ffffffffffff
    [ 0.153373] ... max period: 00007fffffffffff
    [ 0.153374] ... fixed-purpose events: 0
    [ 0.153375] ... event mask: 000000000000000f
    [ 0.173405] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.193370] Booting Node 0, Processors #1
    [ 0.206528] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.216703] #2
    [ 0.229898] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.240014] #3
    [ 0.253215] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.253239] Brought up 4 CPUs
    [ 0.253241] Total of 4 processors activated (27388.45 BogoMIPS).
    [ 0.257652] devtmpfs: initialized
    [ 0.259104] PM: Registering ACPI NVS region [mem 0xc7eb0000-0xc7edffff] (196608 bytes)
    [ 0.259606] NET: Registered protocol family 16
    [ 0.259683] node 0 link 0: io port [1000, ffffff]
    [ 0.259685] TOM: 00000000c8000000 aka 3200M
    [ 0.259687] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    [ 0.259689] node 0 link 0: mmio [a0000, bffff]
    [ 0.259691] node 0 link 0: mmio [c8000000, dfffffff]
    [ 0.259693] node 0 link 0: mmio [e0000000, efffffff] ==> none
    [ 0.259694] node 0 link 0: mmio [f0000000, ffefffff]
    [ 0.259696] TOM2: 0000000238000000 aka 9088M
    [ 0.259697] bus: [00, 07] on node 0 link 0
    [ 0.259699] bus: 00 index 0 [io 0x0000-0xffff]
    [ 0.259700] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
    [ 0.259701] bus: 00 index 2 [mem 0xc8000000-0xdfffffff]
    [ 0.259702] bus: 00 index 3 [mem 0xf0000000-0xffffffff]
    [ 0.259704] bus: 00 index 4 [mem 0x238000000-0xfcffffffff]
    [ 0.259748] ACPI: bus type pci registered
    [ 0.259790] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.259792] PCI: not using MMCONFIG
    [ 0.259793] PCI: Using configuration type 1 for base access
    [ 0.259794] PCI: Using configuration type 1 for extended access
    [ 0.260241] bio: create slab <bio-0> at 0
    [ 0.260287] ACPI: Added _OSI(Module Device)
    [ 0.260288] ACPI: Added _OSI(Processor Device)
    [ 0.260289] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.260290] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.260774] ACPI: EC: Look up EC in DSDT
    [ 0.261441] ACPI: Executed 4 blocks of module-level executable AML code
    [ 0.263476] ACPI: Interpreter enabled
    [ 0.263480] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.263496] ACPI: Using IOAPIC for interrupt routing
    [ 0.263622] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.264266] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.282569] ACPI: No dock devices found.
    [ 0.282572] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.282625] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.282707] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.282709] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.282710] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.282712] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff]
    [ 0.282714] pci_root PNP0A03:00: host bridge window [mem 0xc7f00000-0xdfffffff]
    [ 0.282715] pci_root PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff]
    [ 0.282737] PCI host bridge to bus 0000:00
    [ 0.282739] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.282740] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.282742] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.282744] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    [ 0.282745] pci_bus 0000:00: root bus resource [mem 0xc7f00000-0xdfffffff]
    [ 0.282747] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 0.282756] pci 0000:00:00.0: [1022:9601] type 00 class 0x060000
    [ 0.282831] pci 0000:00:02.0: [1022:9603] type 01 class 0x060400
    [ 0.282858] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.282875] pci 0000:00:09.0: [1022:9608] type 01 class 0x060400
    [ 0.282901] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    [ 0.282912] pci 0000:00:0a.0: [1022:9609] type 01 class 0x060400
    [ 0.282938] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.282993] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.283009] pci 0000:00:11.0: reg 10: [io 0xb000-0xb007]
    [ 0.283015] pci 0000:00:11.0: reg 14: [io 0xa000-0xa003]
    [ 0.283022] pci 0000:00:11.0: reg 18: [io 0x9000-0x9007]
    [ 0.283029] pci 0000:00:11.0: reg 1c: [io 0x8000-0x8003]
    [ 0.283036] pci 0000:00:11.0: reg 20: [io 0x7000-0x700f]
    [ 0.283043] pci 0000:00:11.0: reg 24: [mem 0xfe5ffc00-0xfe5fffff]
    [ 0.283093] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.283102] pci 0000:00:12.0: reg 10: [mem 0xfe5fe000-0xfe5fefff]
    [ 0.283157] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.283170] pci 0000:00:12.2: reg 10: [mem 0xfe5ff800-0xfe5ff8ff]
    [ 0.283229] pci 0000:00:12.2: supports D1 D2
    [ 0.283230] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.283247] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.283256] pci 0000:00:13.0: reg 10: [mem 0xfe5fd000-0xfe5fdfff]
    [ 0.283308] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.283322] pci 0000:00:13.2: reg 10: [mem 0xfe5ff400-0xfe5ff4ff]
    [ 0.283380] pci 0000:00:13.2: supports D1 D2
    [ 0.283381] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.283398] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.283449] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    [ 0.283459] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    [ 0.283466] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    [ 0.283473] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    [ 0.283479] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    [ 0.283486] pci 0000:00:14.1: reg 20: [io 0xff00-0xff0f]
    [ 0.283513] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.283528] pci 0000:00:14.2: reg 10: [mem 0xfe5f4000-0xfe5f7fff 64bit]
    [ 0.283576] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.283587] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.283641] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.283671] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.283681] pci 0000:00:14.5: reg 10: [mem 0xfe5fc000-0xfe5fcfff]
    [ 0.283732] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
    [ 0.283783] pci 0000:00:15.0: supports D1 D2
    [ 0.283804] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    [ 0.283813] pci 0000:00:16.0: reg 10: [mem 0xfe5f3000-0xfe5f3fff]
    [ 0.283864] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    [ 0.283878] pci 0000:00:16.2: reg 10: [mem 0xfe5ff000-0xfe5ff0ff]
    [ 0.283936] pci 0000:00:16.2: supports D1 D2
    [ 0.283937] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.283953] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    [ 0.283965] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    [ 0.283974] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    [ 0.283984] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    [ 0.283996] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    [ 0.284069] pci 0000:04:00.0: [1002:6738] type 00 class 0x030000
    [ 0.284082] pci 0000:04:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.284092] pci 0000:04:00.0: reg 18: [mem 0xfe8e0000-0xfe8fffff 64bit]
    [ 0.284098] pci 0000:04:00.0: reg 20: [io 0xe000-0xe0ff]
    [ 0.284111] pci 0000:04:00.0: reg 30: [mem 0xfe8c0000-0xfe8dffff pref]
    [ 0.284141] pci 0000:04:00.0: supports D1 D2
    [ 0.284162] pci 0000:04:00.1: [1002:aa88] type 00 class 0x040300
    [ 0.284174] pci 0000:04:00.1: reg 10: [mem 0xfe8bc000-0xfe8bffff 64bit]
    [ 0.284231] pci 0000:04:00.1: supports D1 D2
    [ 0.293145] pci 0000:00:02.0: PCI bridge to [bus 04-04]
    [ 0.293150] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.293152] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe8fffff]
    [ 0.293155] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.293193] pci 0000:01:00.0: [1033:0194] type 00 class 0x0c0330
    [ 0.293208] pci 0000:01:00.0: reg 10: [mem 0xfe6fe000-0xfe6fffff 64bit]
    [ 0.293279] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.303139] pci 0000:00:09.0: PCI bridge to [bus 01-01]
    [ 0.303144] pci 0000:00:09.0: bridge window [mem 0xfe600000-0xfe6fffff]
    [ 0.303183] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.303195] pci 0000:02:00.0: reg 10: [io 0xc800-0xc8ff]
    [ 0.303213] pci 0000:02:00.0: reg 18: [mem 0xcffff000-0xcfffffff 64bit pref]
    [ 0.303225] pci 0000:02:00.0: reg 20: [mem 0xcfff8000-0xcfffbfff 64bit pref]
    [ 0.303277] pci 0000:02:00.0: supports D1 D2
    [ 0.303278] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.313132] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.313137] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    [ 0.313140] pci 0000:00:0a.0: bridge window [mem 0xcff00000-0xcfffffff 64bit pref]
    [ 0.313187] pci 0000:05:06.0: [1814:0601] type 00 class 0x028000
    [ 0.313204] pci 0000:05:06.0: reg 10: [mem 0xfe9f0000-0xfe9fffff]
    [ 0.313322] pci 0000:00:14.4: PCI bridge to [bus 05-05] (subtractive decode)
    [ 0.313326] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.313330] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.313331] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.313333] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.313335] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    [ 0.313336] pci 0000:00:14.4: bridge window [mem 0xc7f00000-0xdfffffff] (subtractive decode)
    [ 0.313338] pci 0000:00:14.4: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 0.313388] pci 0000:03:00.0: [1106:3403] type 00 class 0x0c0010
    [ 0.313408] pci 0000:03:00.0: reg 10: [mem 0xfe7ff800-0xfe7fffff 64bit]
    [ 0.313419] pci 0000:03:00.0: reg 18: [io 0xd800-0xd8ff]
    [ 0.313504] pci 0000:03:00.0: supports D2
    [ 0.313505] pci 0000:03:00.0: PME# supported from D2 D3hot D3cold
    [ 0.323166] pci 0000:00:15.0: PCI bridge to [bus 03-03]
    [ 0.323171] pci 0000:00:15.0: bridge window [io 0xd000-0xdfff]
    [ 0.323174] pci 0000:00:15.0: bridge window [mem 0xfe700000-0xfe7fffff]
    [ 0.323192] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.323279] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
    [ 0.323297] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE9._PRT]
    [ 0.323311] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
    [ 0.323332] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
    [ 0.323371] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE20._PRT]
    [ 0.323386] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.323388] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.323389] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.325822] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11 14 15) *0
    [ 0.325859] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11 14 15) *0
    [ 0.325896] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11 14 15) *0
    [ 0.325932] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11 14 15) *0
    [ 0.325959] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11 14 15) *0
    [ 0.325980] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11 14 15) *0
    [ 0.326001] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11 14 15) *0
    [ 0.326021] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11 14 15) *0
    [ 0.326094] vgaarb: device added: PCI:0000:04:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.326096] vgaarb: loaded
    [ 0.326097] vgaarb: bridge control possible 0000:04:00.0
    [ 0.326125] PCI: Using ACPI for IRQ routing
    [ 0.332165] PCI: pci_cache_line_size set to 64 bytes
    [ 0.332227] reserve RAM buffer: 000000000009b800 - 000000000009ffff
    [ 0.332228] reserve RAM buffer: 00000000c7ea0000 - 00000000c7ffffff
    [ 0.332293] NetLabel: Initializing
    [ 0.332294] NetLabel: domain hash size = 128
    [ 0.332295] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.332303] NetLabel: unlabeled traffic allowed by default
    [ 0.332334] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.332337] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.334364] Switching to clocksource hpet
    [ 0.338169] pnp: PnP ACPI init
    [ 0.338178] ACPI: bus type pnp registered
    [ 0.338246] pnp 00:00: [bus 00-ff]
    [ 0.338248] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.338251] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.338252] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.338254] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.338255] pnp 00:00: [mem 0x000d0000-0x000dffff window]
    [ 0.338256] pnp 00:00: [mem 0xc7f00000-0xdfffffff window]
    [ 0.338258] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
    [ 0.338282] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.338331] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.338333] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.338363] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.338384] pnp 00:02: [dma 4]
    [ 0.338386] pnp 00:02: [io 0x0000-0x000f]
    [ 0.338387] pnp 00:02: [io 0x0081-0x0083]
    [ 0.338388] pnp 00:02: [io 0x0087]
    [ 0.338389] pnp 00:02: [io 0x0089-0x008b]
    [ 0.338390] pnp 00:02: [io 0x008f]
    [ 0.338391] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.338405] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.338411] pnp 00:03: [io 0x0070-0x0071]
    [ 0.338425] pnp 00:03: [irq 8]
    [ 0.338442] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.338448] pnp 00:04: [io 0x0061]
    [ 0.338462] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.338466] pnp 00:05: [io 0x00f0-0x00ff]
    [ 0.338469] pnp 00:05: [irq 13]
    [ 0.338485] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.338610] pnp 00:06: [mem 0xfed00000-0xfed003ff]
    [ 0.338627] pnp 00:06: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.338668] pnp 00:07: [mem 0xfec00000-0xfec00fff]
    [ 0.338669] pnp 00:07: [mem 0xfee00000-0xfee00fff]
    [ 0.338695] system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.338697] system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.338699] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.338773] pnp 00:08: [io 0x0010-0x001f]
    [ 0.338774] pnp 00:08: [io 0x0022-0x003f]
    [ 0.338775] pnp 00:08: [io 0x0062-0x0063]
    [ 0.338776] pnp 00:08: [io 0x0065-0x006f]
    [ 0.338777] pnp 00:08: [io 0x0072-0x007f]
    [ 0.338778] pnp 00:08: [io 0x0080]
    [ 0.338779] pnp 00:08: [io 0x0084-0x0086]
    [ 0.338780] pnp 00:08: [io 0x0088]
    [ 0.338781] pnp 00:08: [io 0x008c-0x008e]
    [ 0.338782] pnp 00:08: [io 0x0090-0x009f]
    [ 0.338783] pnp 00:08: [io 0x00a2-0x00bf]
    [ 0.338784] pnp 00:08: [io 0x00b1]
    [ 0.338785] pnp 00:08: [io 0x00e0-0x00ef]
    [ 0.338787] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.338788] pnp 00:08: [io 0x040b]
    [ 0.338789] pnp 00:08: [io 0x04d6]
    [ 0.338790] pnp 00:08: [io 0x0c00-0x0c01]
    [ 0.338791] pnp 00:08: [io 0x0c14]
    [ 0.338792] pnp 00:08: [io 0x0c50-0x0c51]
    [ 0.338794] pnp 00:08: [io 0x0c52]
    [ 0.338795] pnp 00:08: [io 0x0c6c]
    [ 0.338796] pnp 00:08: [io 0x0c6f]
    [ 0.338797] pnp 00:08: [io 0x0cd0-0x0cd1]
    [ 0.338798] pnp 00:08: [io 0x0cd2-0x0cd3]
    [ 0.338799] pnp 00:08: [io 0x0cd4-0x0cd5]
    [ 0.338800] pnp 00:08: [io 0x0cd6-0x0cd7]
    [ 0.338801] pnp 00:08: [io 0x0cd8-0x0cdf]
    [ 0.338802] pnp 00:08: [io 0x0800-0x089f]
    [ 0.338804] pnp 00:08: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.338805] pnp 00:08: [io 0x0b00-0x0b1f]
    [ 0.338806] pnp 00:08: [io 0x0b20-0x0b3f]
    [ 0.338807] pnp 00:08: [io 0x0900-0x090f]
    [ 0.338808] pnp 00:08: [io 0x0910-0x091f]
    [ 0.338809] pnp 00:08: [io 0xfe00-0xfefe]
    [ 0.338810] pnp 00:08: [io 0x0060-0x005f disabled]
    [ 0.338812] pnp 00:08: [io 0x0064-0x0063 disabled]
    [ 0.338813] pnp 00:08: [mem 0xffb80000-0xffbfffff]
    [ 0.338814] pnp 00:08: [mem 0xfec10000-0xfec1001f]
    [ 0.338815] pnp 00:08: [mem 0xfed80000-0xfed80fff]
    [ 0.338816] pnp 00:08: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.338871] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.338873] system 00:08: [io 0x040b] has been reserved
    [ 0.338874] system 00:08: [io 0x04d6] has been reserved
    [ 0.338876] system 00:08: [io 0x0c00-0x0c01] has been reserved
    [ 0.338877] system 00:08: [io 0x0c14] has been reserved
    [ 0.338878] system 00:08: [io 0x0c50-0x0c51] has been reserved
    [ 0.338880] system 00:08: [io 0x0c52] has been reserved
    [ 0.338881] system 00:08: [io 0x0c6c] has been reserved
    [ 0.338883] system 00:08: [io 0x0c6f] has been reserved
    [ 0.338884] system 00:08: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.338886] system 00:08: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.338887] system 00:08: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.338889] system 00:08: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.338890] system 00:08: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.338892] system 00:08: [io 0x0800-0x089f] has been reserved
    [ 0.338893] system 00:08: [io 0x0b00-0x0b1f] has been reserved
    [ 0.338895] system 00:08: [io 0x0b20-0x0b3f] has been reserved
    [ 0.338896] system 00:08: [io 0x0900-0x090f] has been reserved
    [ 0.338898] system 00:08: [io 0x0910-0x091f] has been reserved
    [ 0.338899] system 00:08: [io 0xfe00-0xfefe] has been reserved
    [ 0.338901] system 00:08: [mem 0xffb80000-0xffbfffff] has been reserved
    [ 0.338903] system 00:08: [mem 0xfec10000-0xfec1001f] has been reserved
    [ 0.338904] system 00:08: [mem 0xfed80000-0xfed80fff] has been reserved
    [ 0.338906] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.338920] pnp 00:09: [io 0x0060]
    [ 0.338921] pnp 00:09: [io 0x0064]
    [ 0.338958] pnp 00:09: [irq 1]
    [ 0.338977] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.339141] pnp 00:0a: [io 0x03f8-0x03ff]
    [ 0.339144] pnp 00:0a: [irq 4]
    [ 0.339146] pnp 00:0a: [dma 0 disabled]
    [ 0.339187] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.339220] pnp 00:0b: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.339221] pnp 00:0b: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.339222] pnp 00:0b: [io 0x0290-0x029f]
    [ 0.339250] system 00:0b: [io 0x0290-0x029f] has been reserved
    [ 0.339252] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.339269] pnp 00:0c: [mem 0xe0000000-0xefffffff]
    [ 0.339296] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.339298] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.339365] pnp 00:0d: [mem 0x00000000-0x0009ffff]
    [ 0.339366] pnp 00:0d: [mem 0x000c0000-0x000cffff]
    [ 0.339367] pnp 00:0d: [mem 0x000e0000-0x000fffff]
    [ 0.339369] pnp 00:0d: [mem 0x00100000-0xc7efffff]
    [ 0.339370] pnp 00:0d: [mem 0xfec00000-0xffffffff]
    [ 0.339401] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.339403] system 00:0d: [mem 0x000c0000-0x000cffff] could not be reserved
    [ 0.339405] system 00:0d: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.339406] system 00:0d: [mem 0x00100000-0xc7efffff] could not be reserved
    [ 0.339408] system 00:0d: [mem 0xfec00000-0xffffffff] could not be reserved
    [ 0.339410] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.339470] pnp: PnP ACPI: found 14 devices
    [ 0.339471] ACPI: ACPI bus type pnp unregistered
    [ 0.345740] pci 0000:00:02.0: PCI bridge to [bus 04-04]
    [ 0.345742] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.345745] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe8fffff]
    [ 0.345747] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.345750] pci 0000:00:09.0: PCI bridge to [bus 01-01]
    [ 0.345752] pci 0000:00:09.0: bridge window [mem 0xfe600000-0xfe6fffff]
    [ 0.345756] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.345757] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    [ 0.345760] pci 0000:00:0a.0: bridge window [mem 0xcff00000-0xcfffffff 64bit pref]
    [ 0.345763] pci 0000:00:14.4: PCI bridge to [bus 05-05]
    [ 0.345767] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.345773] pci 0000:00:15.0: PCI bridge to [bus 03-03]
    [ 0.345775] pci 0000:00:15.0: bridge window [io 0xd000-0xdfff]
    [ 0.345778] pci 0000:00:15.0: bridge window [mem 0xfe700000-0xfe7fffff]
    [ 0.345808] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.345810] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.345811] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.345813] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.345814] pci_bus 0000:00: resource 8 [mem 0xc7f00000-0xdfffffff]
    [ 0.345816] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.345817] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
    [ 0.345818] pci_bus 0000:04: resource 1 [mem 0xfe800000-0xfe8fffff]
    [ 0.345820] pci_bus 0000:04: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.345821] pci_bus 0000:01: resource 1 [mem 0xfe600000-0xfe6fffff]
    [ 0.345823] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 0.345824] pci_bus 0000:02: resource 2 [mem 0xcff00000-0xcfffffff 64bit pref]
    [ 0.345826] pci_bus 0000:05: resource 1 [mem 0xfe900000-0xfe9fffff]
    [ 0.345827] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7]
    [ 0.345829] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff]
    [ 0.345830] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.345831] pci_bus 0000:05: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.345833] pci_bus 0000:05: resource 8 [mem 0xc7f00000-0xdfffffff]
    [ 0.345834] pci_bus 0000:05: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.345836] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    [ 0.345837] pci_bus 0000:03: resource 1 [mem 0xfe700000-0xfe7fffff]
    [ 0.345866] NET: Registered protocol family 2
    [ 0.345989] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.346848] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.349037] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.349296] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.349298] TCP: reno registered
    [ 0.349310] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.349356] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.349453] NET: Registered protocol family 1
    [ 0.677681] pci 0000:04:00.0: Boot video device
    [ 0.677713] PCI: CLS 64 bytes, default 64
    [ 0.677749] Unpacking initramfs...
    [ 0.718032] Freeing initrd memory: 2908k freed
    [ 0.719807] PCI-DMA: Disabling AGP.
    [ 0.719871] PCI-DMA: aperture base @ bc000000 size 65536 KB
    [ 0.719872] PCI-DMA: using GART IOMMU.
    [ 0.719874] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    [ 0.725070] LVT offset 1 assigned for vector 0x400
    [ 0.725079] IBS: LVT offset 1 assigned
    [ 0.725089] perf: AMD IBS detected (0x0000001f)
    [ 0.725203] audit: initializing netlink socket (disabled)
    [ 0.725213] type=2000 audit(1342095131.619:1): initialized
    [ 0.725791] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.727601] VFS: Disk quotas dquot_6.5.2
    [ 0.727633] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.727700] msgmni has been set to 15972
    [ 0.727874] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.727898] io scheduler noop registered
    [ 0.727899] io scheduler deadline registered
    [ 0.727931] io scheduler cfq registered (default)
    [ 0.728079] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.728205] pcieport 0000:00:09.0: irq 41 for MSI/MSI-X
    [ 0.728311] pcieport 0000:00:0a.0: irq 42 for MSI/MSI-X
    [ 0.728517] GHES: HEST is not enabled!
    [ 0.728597] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.749121] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.769870] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.770045] Linux agpgart interface v0.103
    [ 0.770081] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.770083] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.770826] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.770924] mousedev: PS/2 mouse device common for all mice
    [ 0.770963] rtc_cmos 00:03: RTC can wake from S4
    [ 0.771049] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 0.771067] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.771072] cpuidle: using governor ladder
    [ 0.771074] cpuidle: using governor menu
    [ 0.771167] TCP: cubic registered
    [ 0.771232] NET: Registered protocol family 10
    [ 0.771354] NET: Registered protocol family 17
    [ 0.771357] Registering the dns_resolver key type
    [ 0.771479] PM: Hibernation image not present or could not be loaded.
    [ 0.771486] registered taskstats version 1
    [ 0.772203] rtc_cmos 00:03: setting system clock to 2012-07-12 12:12:12 UTC (1342095132)
    [ 0.772225] Initializing network drop monitor service
    [ 0.775123] Freeing unused kernel memory: 740k freed
    [ 0.775261] Write protecting the kernel read-only data: 8192k
    [ 0.778687] Freeing unused kernel memory: 1588k freed
    [ 0.780366] Freeing unused kernel memory: 640k freed
    [ 0.786942] udevd[81]: starting version 185
    [ 0.806218] usbcore: registered new interface driver usbfs
    [ 0.806236] usbcore: registered new interface driver hub
    [ 0.806293] usbcore: registered new device driver usb
    [ 0.806913] SCSI subsystem initialized
    [ 0.808327] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.808550] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 0.808577] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 0.808585] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.808603] QUIRK: Enable AMD PLL fix
    [ 0.808612] ehci_hcd 0000:00:12.2: debug port 1
    [ 0.808631] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe5ff800
    [ 0.809224] libata version 3.00 loaded.
    [ 0.809903] xhci_hcd 0000:01:00.0: xHCI Host Controller
    [ 0.809925] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
    [ 0.810035] xhci_hcd 0000:01:00.0: irq 17, io mem 0xfe6fe000
    [ 0.810076] xhci_hcd 0000:01:00.0: irq 43 for MSI/MSI-X
    [ 0.810081] xhci_hcd 0000:01:00.0: irq 44 for MSI/MSI-X
    [ 0.810085] xhci_hcd 0000:01:00.0: irq 45 for MSI/MSI-X
    [ 0.810090] xhci_hcd 0000:01:00.0: irq 46 for MSI/MSI-X
    [ 0.810094] xhci_hcd 0000:01:00.0: irq 47 for MSI/MSI-X
    [ 0.810322] xHCI xhci_add_endpoint called for root hub
    [ 0.810323] xHCI xhci_check_bandwidth called for root hub
    [ 0.810492] hub 2-0:1.0: USB hub found
    [ 0.810497] hub 2-0:1.0: 2 ports detected
    [ 0.810688] xhci_hcd 0000:01:00.0: xHCI Host Controller
    [ 0.810693] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3
    [ 0.813735] xHCI xhci_add_endpoint called for root hub
    [ 0.813737] xHCI xhci_check_bandwidth called for root hub
    [ 0.813784] hub 3-0:1.0: USB hub found
    [ 0.813792] hub 3-0:1.0: 2 ports detected
    [ 0.814472] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.817469] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.817877] hub 1-0:1.0: USB hub found
    [ 0.817879] hub 1-0:1.0: 5 ports detected
    [ 0.818099] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 0.818107] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 0.818112] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.818129] ehci_hcd 0000:00:13.2: debug port 1
    [ 0.818138] ehci_hcd 0000:00:13.2: irq 17, io mem 0xfe5ff400
    [ 0.827497] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.827604] hub 4-0:1.0: USB hub found
    [ 0.827606] hub 4-0:1.0: 5 ports detected
    [ 0.827728] ehci_hcd 0000:00:16.2: EHCI Host Controller
    [ 0.827734] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 5
    [ 0.827739] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.827754] ehci_hcd 0000:00:16.2: debug port 1
    [ 0.827764] ehci_hcd 0000:00:16.2: irq 17, io mem 0xfe5ff000
    [ 0.837496] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 0.837603] hub 5-0:1.0: USB hub found
    [ 0.837605] hub 5-0:1.0: 4 ports detected
    [ 0.841081] ahci 0000:00:11.0: version 3.0
    [ 0.841136] ahci 0000:00:11.0: irq 48 for MSI/MSI-X
    [ 0.841201] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 4 ports 6 Gbps 0xf impl SATA mode
    [ 0.841204] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 0.841602] scsi0 : ahci
    [ 0.841675] scsi1 : ahci
    [ 0.841726] scsi2 : ahci
    [ 0.841774] scsi3 : ahci
    [ 0.841809] ata1: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffd00 irq 48
    [ 0.841811] ata2: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffd80 irq 48
    [ 0.841814] ata3: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffe00 irq 48
    [ 0.841816] ata4: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffe80 irq 48
    [ 0.841947] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.841954] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 6
    [ 0.841984] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfe5fe000
    [ 0.898238] hub 6-0:1.0: USB hub found
    [ 0.898243] hub 6-0:1.0: 5 ports detected
    [ 0.898366] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 0.898373] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 7
    [ 0.898385] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe5fd000
    [ 0.954864] hub 7-0:1.0: USB hub found
    [ 0.954868] hub 7-0:1.0: 5 ports detected
    [ 0.954992] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 0.955005] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 8
    [ 0.955017] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe5fc000
    [ 1.011491] hub 8-0:1.0: USB hub found
    [ 1.011495] hub 8-0:1.0: 2 ports detected
    [ 1.011602] ohci_hcd 0000:00:16.0: OHCI Host Controller
    [ 1.011607] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 9
    [ 1.011619] ohci_hcd 0000:00:16.0: irq 18, io mem 0xfe5f3000
    [ 1.068113] hub 9-0:1.0: USB hub found
    [ 1.068118] hub 9-0:1.0: 4 ports detected
    [ 1.160646] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.160677] ata1: SATA link down (SStatus 0 SControl 300)
    [ 1.317173] usb 7-1: new low-speed USB device number 2 using ohci_hcd
    [ 1.327173] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.327198] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.332726] ata4.00: ATA-8: SAMSUNG HD502HJ, 1AJ10001, max UDMA/133
    [ 1.332728] ata4.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.332859] ata3.00: ATA-8: SAMSUNG HD103SJ, 1AJ10001, max UDMA/133
    [ 1.332862] ata3.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.338315] ata4.00: configured for UDMA/133
    [ 1.338581] ata3.00: configured for UDMA/133
    [ 1.338734] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD103SJ 1AJ1 PQ: 0 ANSI: 5
    [ 1.338907] scsi 3:0:0:0: Direct-Access ATA SAMSUNG HD502HJ 1AJ1 PQ: 0 ANSI: 5
    [ 1.341163] sd 2:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.341181] sd 3:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.341191] sd 2:0:0:0: [sda] Write Protect is off
    [ 1.341193] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.341215] sd 3:0:0:0: [sdb] Write Protect is off
    [ 1.341217] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.341225] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.341238] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.351164] sda: sda1
    [ 1.351389] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.401086] sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 >
    [ 1.401524] sd 3:0:0:0: [sdb] Attached SCSI disk
    [ 1.481781] usbcore: registered new interface driver usbhid
    [ 1.481782] usbhid: USB HID core driver
    [ 1.487591] input: Microsft Microsoft Wireless Desktop Receiver 3.1 as /devices/pci0000:00/0000:00:13.0/usb7/7-1/7-1:1.0/input/input0
    [ 1.487653] microsoft 0003:045E:00F9.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsft Microsoft Wireless Desktop Receiver 3.1] on usb-0000:00:13.0-1/input0
    [ 1.508451] microsoft 0003:045E:00F9.0002: fixing up Microsoft Wireless Receiver Model 1028 report descriptor
    [ 1.521532] input: Microsft Microsoft Wireless Desktop Receiver 3.1 as /devices/pci0000:00/0000:00:13.0/usb7/7-1/7-1:1.1/input/input1
    [ 1.521648] microsoft 0003:045E:00F9.0002: input,hidraw1: USB HID v1.11 Mouse [Microsft Microsoft Wireless Desktop Receiver 3.1] on usb-0000:00:13.0-1/input1
    [ 1.610307] usb 9-4: new full-speed USB device number 2 using ohci_hcd
    [ 1.726903] Refined TSC clocksource calibration: 3422.454 MHz.
    [ 1.726912] Switching to clocksource tsc
    [ 1.786627] input: Logitech Logitech USB Headset as /devices/pci0000:00/0000:00:16.0/usb9/9-4/9-4:1.3/input/input2
    [ 1.786674] generic-usb 0003:046D:0A0B.0003: input,hidraw2: USB HID v1.00 Device [Logitech Logitech USB Headset] on usb-0000:00:16.0-4/input3
    [ 1.950887] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.192500] udevd[184]: starting version 185
    [ 3.958438] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 3.958443] ACPI: Power Button [PWRB]
    [ 3.958512] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 3.958514] ACPI: Power Button [PWRF]
    [ 3.978134] wmi: Mapper loaded
    [ 4.015387] pata_atiixp 0000:00:14.1: setting latency timer to 64
    [ 4.015586] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.015668] r8169 0000:02:00.0: irq 49 for MSI/MSI-X
    [ 4.015786] r8169 0000:02:00.0: eth0: RTL8168e/8111e at 0xffffc900119a0000, 00:25:22:69:80:29, XID 0c200000 IRQ 49
    [ 4.015788] r8169 0000:02:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 4.015801] scsi4 : pata_atiixp
    [ 4.015859] scsi5 : pata_atiixp
    [ 4.016032] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
    [ 4.016034] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
    [ 4.033484] sp5100_tco: SP5100 TCO WatchDog Timer Driver v0.01
    [ 4.033560] sp5100_tco: mmio address 0xb8fe00 already in use
    [ 4.079638] powernow-k8: Found 1 AMD Phenom(tm) II X4 965 Processor (4 cpu cores) (version 2.20.00)
    [ 4.079668] powernow-k8: 0 : pstate 0 (3400 MHz)
    [ 4.079670] powernow-k8: 1 : pstate 1 (2700 MHz)
    [ 4.079671] powernow-k8: 2 : pstate 2 (2200 MHz)
    [ 4.079672] powernow-k8: 3 : pstate 3 (800 MHz)
    [ 4.106096] microcode: CPU0: patch_level=0x010000b6
    [ 4.127578] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.127723] microcode: CPU1: patch_level=0x010000b6
    [ 4.128583] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.128674] microcode: CPU2: patch_level=0x010000b6
    [ 4.129514] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.129606] microcode: CPU3: patch_level=0x010000b6
    [ 4.130329] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.130535] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 4.162216] EDAC MC: Ver: 2.1.0
    [ 4.212356] ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \SOR1 1 (20120320/utaddress-251)
    [ 4.212375] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.222694] MCE: In-kernel MCE decoding enabled.
    [ 4.280312] [drm] Initialized drm 1.1.0 20060810
    [ 4.403795] AMD64 EDAC driver v3.4.0
    [ 4.403955] EDAC amd64: DRAM ECC disabled.
    [ 4.403974] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    [ 4.403978] Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    [ 4.403982] (Note that use of the override may cause unknown side effects.)
    [ 4.445168] firewire_ohci 0000:03:00.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 4.527650] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.790059] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 4.790219] Registered led device: rt2800pci-phy0::radio
    [ 4.790231] Registered led device: rt2800pci-phy0::assoc
    [ 4.790242] Registered led device: rt2800pci-phy0::quality
    [ 4.904991] [drm] VGACON disable radeon kernel modesetting.
    [ 4.905329] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 4.905330] [drm] No driver support for vblank timestamp query.
    [ 4.905333] [drm] Initialized radeon 1.33.0 20080528 for 0000:04:00.0 on minor 0
    [ 4.911887] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    [ 4.911889] AMD IOMMUv2 functionality not available on this sytem
    [ 4.945232] firewire_core 0000:03:00.0: created device fw0: GUID 008f130026a90a00, S400
    [ 5.022074] usbcore: registered new interface driver snd-usb-audio
    [ 5.085203] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 5.085206] Disabling lock debugging due to kernel taint
    [ 5.090452] [fglrx] Maximum main memory to use for locked dma buffers: 7756 MBytes.
    [ 5.090549] [fglrx] vendor: 1002 device: 6738 count: 1
    [ 5.090911] [fglrx] ioport: bar 4, base 0xe000, size: 0x100
    [ 5.091202] [fglrx] Kernel PAT support is enabled
    [ 5.091219] [fglrx] module loaded - fglrx 8.96.4 [Apr 5 2012] with 1 minors
    [ 5.100526] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input5
    [ 5.100607] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    [ 5.100767] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    [ 5.100828] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 5.100886] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 5.101067] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 5.101174] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 5.101661] snd_hda_intel 0000:04:00.1: irq 50 for MSI/MSI-X
    [ 5.145389] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:04:00.1/sound/card2/input12
    [ 7.130063] EXT4-fs (sdb7): re-mounted. Opts: (null)
    [ 7.205827] EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.293502] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.388548] Adding 9748136k swap on /dev/sdb6. Priority:-1 extents:1 across:9748136k
    And for ultimate completeness (I hope so)
    lspci -v
    [root@rechenknecht ~]# lspci -v
    00:00.0 Host bridge: Advanced Micro Devices [AMD] RS880 Host Bridge
    Subsystem: ASRock Incorporation Device 9601
    Flags: bus master, 66MHz, medium devsel, latency 0
    Capabilities: [c4] HyperTransport: Slave or Primary Interface
    Capabilities: [54] HyperTransport: UnitID Clumping
    Capabilities: [40] HyperTransport: Retry Mode
    Capabilities: [9c] HyperTransport: #1a
    Capabilities: [f8] HyperTransport: #1c
    00:02.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (ext gfx port 0) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
    I/O behind bridge: 0000e000-0000efff
    Memory behind bridge: fe800000-fe8fffff
    Prefetchable memory behind bridge: 00000000d0000000-00000000dfffffff
    Capabilities: [50] Power Management version 3
    Capabilities: [58] Express Root Port (Slot+), MSI 00
    Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [b0] Subsystem: ASRock Incorporation Device 9601
    Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
    Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
    Capabilities: [110] Virtual Channel
    Kernel driver in use: pcieport
    00:09.0 PCI bridge: Advanced Micro Devices [AMD] RS780/RS880 PCI to PCI bridge (PCIE port 4) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
    Memory behind bridge: fe600000-fe6fffff
    Capabilities: [50] Power Management version 3
    Capabilities: [58] Express Root Port (Slot+), MSI 00
    Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [b0] Subsystem: ASRock Incorporation Device 9601
    Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
    Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
    Capabilities: [110] Virtual Channel
    Kernel driver in use: pcieport
    00:0a.0 PCI bridge: Advanced Micro Devices [AMD] RS780/RS880 PCI to PCI bridge (PCIE port 5) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    I/O behind bridge: 0000c000-0000cfff
    Prefetchable memory behind bridge: 00000000cff00000-00000000cfffffff
    Capabilities: [50] Power Management version 3
    Capabilities: [58] Express Root Port (Slot+), MSI 00
    Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [b0] Subsystem: ASRock Incorporation Device 9601
    Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
    Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
    Capabilities: [110] Virtual Channel
    Kernel driver in use: pcieport
    00:11.0 SATA controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode] (rev 40) (prog-if 01 [AHCI 1.0])
    Subsystem: ASRock Incorporation Device 4391
    Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 48
    I/O ports at b000 [size=8]
    I/O ports at a000 [size=4]
    I/O ports at 9000 [size=8]
    I/O ports at 8000 [size=4]
    I/O ports at 7000 [size=16]
    Memory at fe5ffc00 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] MSI: Enable+ Count=1/4 Maskable- 64bit+
    Capabilities: [70] SATA HBA v1.0
    Capabilities: [a4] PCI Advanced Features
    Kernel driver in use: ahci
    00:12.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI])
    Subsystem: ASRock Incorporation Device 4397
    Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 18
    Memory at fe5fe000 (32-bit, non-prefetchable) [size=4K]
    Kernel driver in use: ohci_hcd
    00:12.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI])
    Subsystem: ASRock Incorporation Device 4396
    Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 17
    Memory at fe5ff800 (32-bit, non-prefetchable) [size=256]
    Capabilities: [c0] Power Management version 2
    Capabilities: [e4] Debug port: BAR=1 offset=00e0
    Kernel driver in use: ehci_hcd
    00:13.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI])
    Subsystem

    When I do that and publish the navbar item, the subsribers do not see it as "Page in this application", they see the URL f?p=104:1.
    An example on htmldb.oracle.com could be useful.
    Scott

  • [SOLVED] Problems with intel driver on Y510p

    Hi,
    I recently decided to get a Y510p, but somehow can't get the intel driver to work. For now I don't need the nvidia card that is in my laptop so I disabled it via bumblebee. However if I try booting without the kernel option nomodeset the screens turns turns blank after
    running early hook [udev]
    So the backlight is still on, but nothing is shown. When I use nomodeset the vesa driver is used because the intel driver requires modeset, but I can't find a way to modify my backlight setting with the vesa driver. Also, when I use the vesa driver, after
    running early hook [udev]
    it says
    [drm:drm_pci_agp_init] *ERROR* Cannot initialize the agpgart module.
    DRM: Fill_in_dev failed.
    I can see that flashing for a few milliseconds before the screen goes blank with the intel driver as well.
    My Xorg.0.log of a boot with nomodeset:
    [ 29.186]
    X.Org X Server 1.14.4
    Release Date: 2013-10-31
    [ 29.186] X Protocol Version 11, Revision 0
    [ 29.186] Build Operating System: Linux 3.11.6-1-ARCH x86_64
    [ 29.186] Current Operating System: Linux bork 3.12.1-3-ARCH #1 SMP PREEMPT Tue Nov 26 11:17:02 CET 2013 x86_64
    [ 29.186] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:root root=/dev/mapper/root rw nomodeset initrd=../initramfs-linux.img
    [ 29.186] Build Date: 01 November 2013 05:10:48PM
    [ 29.186]
    [ 29.186] Current version of pixman: 0.32.4
    [ 29.186] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 29.186] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 29.186] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Dec 1 20:23:51 2013
    [ 29.187] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 29.188] (==) No Layout section. Using the first Screen section.
    [ 29.188] (==) No screen section available. Using defaults.
    [ 29.188] (**) |-->Screen "Default Screen Section" (0)
    [ 29.188] (**) | |-->Monitor "<default monitor>"
    [ 29.188] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 29.188] (==) Automatically adding devices
    [ 29.188] (==) Automatically enabling devices
    [ 29.188] (==) Automatically adding GPU devices
    [ 29.191] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 29.191] Entry deleted from font path.
    [ 29.191] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 29.191] Entry deleted from font path.
    [ 29.191] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 29.192] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 29.192] Entry deleted from font path.
    [ 29.192] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 29.192] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 29.192] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 29.192] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 29.192] (II) Loader magic: 0x7fdc20
    [ 29.192] (II) Module ABI versions:
    [ 29.192] X.Org ANSI C Emulation: 0.4
    [ 29.192] X.Org Video Driver: 14.1
    [ 29.192] X.Org XInput driver : 19.1
    [ 29.192] X.Org Server Extension : 7.0
    [ 29.193] (--) PCI:*(0:0:2:0) 8086:0416:17aa:3801 rev 6, Mem @ 0xc2000000/4194304, 0xb0000000/268435456, I/O @ 0x00005000/64
    [ 29.193] (--) PCI: (0:1:0:0) 10de:0fcd:17aa:3801 rev 161, Mem @ 0xc0000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
    [ 29.193] Initializing built-in extension Generic Event Extension
    [ 29.193] Initializing built-in extension SHAPE
    [ 29.193] Initializing built-in extension MIT-SHM
    [ 29.193] Initializing built-in extension XInputExtension
    [ 29.193] Initializing built-in extension XTEST
    [ 29.193] Initializing built-in extension BIG-REQUESTS
    [ 29.193] Initializing built-in extension SYNC
    [ 29.193] Initializing built-in extension XKEYBOARD
    [ 29.193] Initializing built-in extension XC-MISC
    [ 29.193] Initializing built-in extension SECURITY
    [ 29.193] Initializing built-in extension XINERAMA
    [ 29.193] Initializing built-in extension XFIXES
    [ 29.193] Initializing built-in extension RENDER
    [ 29.193] Initializing built-in extension RANDR
    [ 29.193] Initializing built-in extension COMPOSITE
    [ 29.193] Initializing built-in extension DAMAGE
    [ 29.193] Initializing built-in extension MIT-SCREEN-SAVER
    [ 29.193] Initializing built-in extension DOUBLE-BUFFER
    [ 29.193] Initializing built-in extension RECORD
    [ 29.193] Initializing built-in extension DPMS
    [ 29.193] Initializing built-in extension X-Resource
    [ 29.193] Initializing built-in extension XVideo
    [ 29.193] Initializing built-in extension XVideo-MotionCompensation
    [ 29.193] Initializing built-in extension XFree86-VidModeExtension
    [ 29.193] Initializing built-in extension XFree86-DGA
    [ 29.193] Initializing built-in extension XFree86-DRI
    [ 29.193] Initializing built-in extension DRI2
    [ 29.193] (II) LoadModule: "glx"
    [ 29.194] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 29.197] (II) Module glx: vendor="X.Org Foundation"
    [ 29.197] compiled for 1.14.4, module version = 1.0.0
    [ 29.197] ABI class: X.Org Server Extension, version 7.0
    [ 29.197] (==) AIGLX enabled
    [ 29.197] Loading extension GLX
    [ 29.197] (==) Matched intel as autoconfigured driver 0
    [ 29.197] (==) Matched vesa as autoconfigured driver 1
    [ 29.197] (==) Matched modesetting as autoconfigured driver 2
    [ 29.197] (==) Matched fbdev as autoconfigured driver 3
    [ 29.197] (==) Assigned the driver to the xf86ConfigLayout
    [ 29.197] (II) LoadModule: "intel"
    [ 29.198] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 29.202] (II) Module intel: vendor="X.Org Foundation"
    [ 29.202] compiled for 1.14.2, module version = 2.21.15
    [ 29.202] Module class: X.Org Video Driver
    [ 29.202] ABI class: X.Org Video Driver, version 14.1
    [ 29.202] (II) LoadModule: "vesa"
    [ 29.202] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 29.203] (II) Module vesa: vendor="X.Org Foundation"
    [ 29.203] compiled for 1.14.0, module version = 2.3.2
    [ 29.203] Module class: X.Org Video Driver
    [ 29.203] ABI class: X.Org Video Driver, version 14.1
    [ 29.203] (II) LoadModule: "modesetting"
    [ 29.203] (WW) Warning, couldn't open module modesetting
    [ 29.203] (II) UnloadModule: "modesetting"
    [ 29.203] (II) Unloading modesetting
    [ 29.203] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 29.203] (II) LoadModule: "fbdev"
    [ 29.203] (WW) Warning, couldn't open module fbdev
    [ 29.203] (II) UnloadModule: "fbdev"
    [ 29.203] (II) Unloading fbdev
    [ 29.203] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 29.203] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, HD Graphics,
    HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
    HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
    HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
    HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
    [ 29.204] (II) VESA: driver for VESA chipsets: vesa
    [ 29.204] (++) using VT number 1
    [ 29.207] (II) Loading sub module "vbe"
    [ 29.207] (II) LoadModule: "vbe"
    [ 29.207] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 29.208] (II) Module vbe: vendor="X.Org Foundation"
    [ 29.208] compiled for 1.14.4, module version = 1.1.0
    [ 29.208] ABI class: X.Org Video Driver, version 14.1
    [ 29.208] (II) Loading sub module "int10"
    [ 29.208] (II) LoadModule: "int10"
    [ 29.208] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 29.209] (II) Module int10: vendor="X.Org Foundation"
    [ 29.209] compiled for 1.14.4, module version = 1.0.0
    [ 29.209] ABI class: X.Org Video Driver, version 14.1
    [ 29.209] (II) VESA(0): initializing int10
    [ 29.210] (II) VESA(0): Primary V_BIOS segment is: 0xc000
    [ 29.210] (II) VESA(0): VESA BIOS detected
    [ 29.210] (II) VESA(0): VESA VBE Version 3.0
    [ 29.210] (II) VESA(0): VESA VBE Total Mem: 65472 kB
    [ 29.210] (II) VESA(0): VESA VBE OEM: Intel(R) HSW Mobile/Desktop Graphics Chipset Accelerated VGA BIOS
    [ 29.210] (II) VESA(0): VESA VBE OEM Software Rev: 0.0
    [ 29.214] (II) VESA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 29.214] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
    [ 29.214] (==) VESA(0): RGB weight 888
    [ 29.214] (==) VESA(0): Default visual is TrueColor
    [ 29.214] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 29.214] (II) Loading sub module "ddc"
    [ 29.214] (II) LoadModule: "ddc"
    [ 29.214] (II) Module "ddc" already built-in
    [ 29.238] (II) VESA(0): VESA VBE DDC supported
    [ 29.238] (II) VESA(0): VESA VBE DDC Level 2
    [ 29.238] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
    [ 29.252] (II) VESA(0): VESA VBE DDC read successfully
    [ 29.252] (II) VESA(0): Manufacturer: LGD Model: 2d9 Serial#: 0
    [ 29.252] (II) VESA(0): Year: 2011 Week: 0
    [ 29.252] (II) VESA(0): EDID Version: 1.3
    [ 29.252] (II) VESA(0): Digital Display Input
    [ 29.252] (II) VESA(0): Max Image Size [cm]: horiz.: 35 vert.: 19
    [ 29.252] (II) VESA(0): Gamma: 2.20
    [ 29.252] (II) VESA(0): No DPMS capabilities specified
    [ 29.252] (II) VESA(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 29.252] (II) VESA(0): First detailed timing is preferred mode
    [ 29.252] (II) VESA(0): redX: 0.617 redY: 0.349 greenX: 0.313 greenY: 0.595
    [ 29.252] (II) VESA(0): blueX: 0.151 blueY: 0.056 whiteX: 0.313 whiteY: 0.329
    [ 29.252] (II) VESA(0): Manufacturer's mask: 0
    [ 29.252] (II) VESA(0): Supported detailed timing:
    [ 29.252] (II) VESA(0): clock: 139.5 MHz Image Size: 345 x 194 mm
    [ 29.252] (II) VESA(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2096 h_border: 0
    [ 29.252] (II) VESA(0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    [ 29.252] (II) VESA(0): LG Display
    [ 29.252] (II) VESA(0): LP156WF1-TLB2
    [ 29.252] (II) VESA(0): EDID (in hex):
    [ 29.252] (II) VESA(0): 00ffffffffffff0030e4d90200000000
    [ 29.252] (II) VESA(0): 00150103802313780a15d59e59509826
    [ 29.252] (II) VESA(0): 0e505400000001010101010101010101
    [ 29.252] (II) VESA(0): 0101010101017e3680b070381f403020
    [ 29.252] (II) VESA(0): 350059c2100000190000000000000000
    [ 29.252] (II) VESA(0): 00000000000000000000000000fe004c
    [ 29.252] (II) VESA(0): 4720446973706c61790a2020000000fe
    [ 29.252] (II) VESA(0): 004c503135365746312d544c4232004b
    [ 29.252] (II) VESA(0): EDID vendor "LGD", prod id 729
    [ 29.252] (II) VESA(0): Printing DDC gathered Modelines:
    [ 29.252] (II) VESA(0): Modeline "1920x1080"x0.0 139.50 1920 1968 2000 2096 1080 1083 1088 1111 -hsync -vsync (66.6 kHz eP)
    [ 29.252] (II) VESA(0): Searching for matching VESA mode(s):
    [ 29.253] Mode: 13c (0x0)
    [ 29.253] ModeAttributes: 0x0
    [ 29.253] WinAAttributes: 0x0
    [ 29.253] WinBAttributes: 0x0
    [ 29.253] WinGranularity: 0
    [ 29.253] WinSize: 0
    [ 29.253] WinASegment: 0x0
    [ 29.253] WinBSegment: 0x0
    [ 29.253] WinFuncPtr: 0x0
    [ 29.253] BytesPerScanline: 0
    [ 29.253] XResolution: 0
    [ 29.253] YResolution: 0
    [ 29.253] XCharSize: 0
    [ 29.253] YCharSize: 0
    [ 29.253] NumberOfPlanes: 0
    [ 29.253] BitsPerPixel: 0
    [ 29.253] NumberOfBanks: 0
    [ 29.253] MemoryModel: 0
    [ 29.253] BankSize: 0
    [ 29.253] NumberOfImages: 0
    [ 29.253] RedMaskSize: 0
    [ 29.253] RedFieldPosition: 0
    [ 29.253] GreenMaskSize: 0
    [ 29.253] GreenFieldPosition: 0
    [ 29.253] BlueMaskSize: 0
    [ 29.253] BlueFieldPosition: 0
    [ 29.253] RsvdMaskSize: 0
    [ 29.253] RsvdFieldPosition: 0
    [ 29.253] DirectColorModeInfo: 0
    [ 29.253] PhysBasePtr: 0x0
    [ 29.253] LinBytesPerScanLine: 0
    [ 29.253] BnkNumberOfImagePages: 0
    [ 29.253] LinNumberOfImagePages: 0
    [ 29.253] LinRedMaskSize: 0
    [ 29.253] LinRedFieldPosition: 0
    [ 29.253] LinGreenMaskSize: 0
    [ 29.253] LinGreenFieldPosition: 0
    [ 29.253] LinBlueMaskSize: 0
    [ 29.253] LinBlueFieldPosition: 0
    [ 29.253] LinRsvdMaskSize: 0
    [ 29.253] LinRsvdFieldPosition: 0
    [ 29.253] MaxPixelClock: 0
    [ 29.253] Mode: 14d (0x0)
    [ 29.253] ModeAttributes: 0x0
    [ 29.253] WinAAttributes: 0x0
    [ 29.253] WinBAttributes: 0x0
    [ 29.253] WinGranularity: 0
    [ 29.253] WinSize: 0
    [ 29.253] WinASegment: 0x0
    [ 29.253] WinBSegment: 0x0
    [ 29.253] WinFuncPtr: 0x0
    [ 29.253] BytesPerScanline: 0
    [ 29.253] XResolution: 0
    [ 29.253] YResolution: 0
    [ 29.253] XCharSize: 0
    [ 29.253] YCharSize: 0
    [ 29.253] NumberOfPlanes: 0
    [ 29.253] BitsPerPixel: 0
    [ 29.253] NumberOfBanks: 0
    [ 29.253] MemoryModel: 0
    [ 29.253] BankSize: 0
    [ 29.253] NumberOfImages: 0
    [ 29.253] RedMaskSize: 0
    [ 29.253] RedFieldPosition: 0
    [ 29.253] GreenMaskSize: 0
    [ 29.253] GreenFieldPosition: 0
    [ 29.253] BlueMaskSize: 0
    [ 29.253] BlueFieldPosition: 0
    [ 29.253] RsvdMaskSize: 0
    [ 29.253] RsvdFieldPosition: 0
    [ 29.253] DirectColorModeInfo: 0
    [ 29.253] PhysBasePtr: 0x0
    [ 29.253] LinBytesPerScanLine: 0
    [ 29.253] BnkNumberOfImagePages: 0
    [ 29.253] LinNumberOfImagePages: 0
    [ 29.253] LinRedMaskSize: 0
    [ 29.253] LinRedFieldPosition: 0
    [ 29.253] LinGreenMaskSize: 0
    [ 29.253] LinGreenFieldPosition: 0
    [ 29.253] LinBlueMaskSize: 0
    [ 29.253] LinBlueFieldPosition: 0
    [ 29.253] LinRsvdMaskSize: 0
    [ 29.253] LinRsvdFieldPosition: 0
    [ 29.253] MaxPixelClock: 0
    [ 29.253] Mode: 15c (0x0)
    [ 29.253] ModeAttributes: 0x0
    [ 29.253] WinAAttributes: 0x0
    [ 29.253] WinBAttributes: 0x0
    [ 29.253] WinGranularity: 0
    [ 29.253] WinSize: 0
    [ 29.253] WinASegment: 0x0
    [ 29.253] WinBSegment: 0x0
    [ 29.253] WinFuncPtr: 0x0
    [ 29.253] BytesPerScanline: 0
    [ 29.253] XResolution: 0
    [ 29.253] YResolution: 0
    [ 29.253] XCharSize: 0
    [ 29.253] YCharSize: 0
    [ 29.253] NumberOfPlanes: 0
    [ 29.253] BitsPerPixel: 0
    [ 29.253] NumberOfBanks: 0
    [ 29.253] MemoryModel: 0
    [ 29.253] BankSize: 0
    [ 29.253] NumberOfImages: 0
    [ 29.253] RedMaskSize: 0
    [ 29.253] RedFieldPosition: 0
    [ 29.253] GreenMaskSize: 0
    [ 29.253] GreenFieldPosition: 0
    [ 29.253] BlueMaskSize: 0
    [ 29.253] BlueFieldPosition: 0
    [ 29.253] RsvdMaskSize: 0
    [ 29.253] RsvdFieldPosition: 0
    [ 29.253] DirectColorModeInfo: 0
    [ 29.253] PhysBasePtr: 0x0
    [ 29.253] LinBytesPerScanLine: 0
    [ 29.253] BnkNumberOfImagePages: 0
    [ 29.253] LinNumberOfImagePages: 0
    [ 29.253] LinRedMaskSize: 0
    [ 29.253] LinRedFieldPosition: 0
    [ 29.253] LinGreenMaskSize: 0
    [ 29.253] LinGreenFieldPosition: 0
    [ 29.253] LinBlueMaskSize: 0
    [ 29.253] LinBlueFieldPosition: 0
    [ 29.253] LinRsvdMaskSize: 0
    [ 29.253] LinRsvdFieldPosition: 0
    [ 29.253] MaxPixelClock: 0
    [ 29.253] Mode: 13a (0x0)
    [ 29.253] ModeAttributes: 0x0
    [ 29.253] WinAAttributes: 0x0
    [ 29.253] WinBAttributes: 0x0
    [ 29.253] WinGranularity: 0
    [ 29.253] WinSize: 0
    [ 29.253] WinASegment: 0x0
    [ 29.253] WinBSegment: 0x0
    [ 29.253] WinFuncPtr: 0x0
    [ 29.253] BytesPerScanline: 0
    [ 29.253] XResolution: 0
    [ 29.253] YResolution: 0
    [ 29.253] XCharSize: 0
    [ 29.253] YCharSize: 0
    [ 29.253] NumberOfPlanes: 0
    [ 29.253] BitsPerPixel: 0
    [ 29.253] NumberOfBanks: 0
    [ 29.253] MemoryModel: 0
    [ 29.253] BankSize: 0
    [ 29.253] NumberOfImages: 0
    [ 29.253] RedMaskSize: 0
    [ 29.253] RedFieldPosition: 0
    [ 29.253] GreenMaskSize: 0
    [ 29.253] GreenFieldPosition: 0
    [ 29.253] BlueMaskSize: 0
    [ 29.253] BlueFieldPosition: 0
    [ 29.253] RsvdMaskSize: 0
    [ 29.253] RsvdFieldPosition: 0
    [ 29.253] DirectColorModeInfo: 0
    [ 29.253] PhysBasePtr: 0x0
    [ 29.253] LinBytesPerScanLine: 0
    [ 29.253] BnkNumberOfImagePages: 0
    [ 29.253] LinNumberOfImagePages: 0
    [ 29.253] LinRedMaskSize: 0
    [ 29.253] LinRedFieldPosition: 0
    [ 29.253] LinGreenMaskSize: 0
    [ 29.253] LinGreenFieldPosition: 0
    [ 29.253] LinBlueMaskSize: 0
    [ 29.253] LinBlueFieldPosition: 0
    [ 29.253] LinRsvdMaskSize: 0
    [ 29.253] LinRsvdFieldPosition: 0
    [ 29.253] MaxPixelClock: 0
    [ 29.253] Mode: 14b (0x0)
    [ 29.254] ModeAttributes: 0x0
    [ 29.254] WinAAttributes: 0x0
    [ 29.254] WinBAttributes: 0x0
    [ 29.254] WinGranularity: 0
    [ 29.254] WinSize: 0
    [ 29.254] WinASegment: 0x0
    [ 29.254] WinBSegment: 0x0
    [ 29.254] WinFuncPtr: 0x0
    [ 29.254] BytesPerScanline: 0
    [ 29.254] XResolution: 0
    [ 29.254] YResolution: 0
    [ 29.254] XCharSize: 0
    [ 29.254] YCharSize: 0
    [ 29.254] NumberOfPlanes: 0
    [ 29.254] BitsPerPixel: 0
    [ 29.254] NumberOfBanks: 0
    [ 29.254] MemoryModel: 0
    [ 29.254] BankSize: 0
    [ 29.254] NumberOfImages: 0
    [ 29.254] RedMaskSize: 0
    [ 29.254] RedFieldPosition: 0
    [ 29.254] GreenMaskSize: 0
    [ 29.254] GreenFieldPosition: 0
    [ 29.254] BlueMaskSize: 0
    [ 29.254] BlueFieldPosition: 0
    [ 29.254] RsvdMaskSize: 0
    [ 29.254] RsvdFieldPosition: 0
    [ 29.254] DirectColorModeInfo: 0
    [ 29.254] PhysBasePtr: 0x0
    [ 29.254] LinBytesPerScanLine: 0
    [ 29.254] BnkNumberOfImagePages: 0
    [ 29.254] LinNumberOfImagePages: 0
    [ 29.254] LinRedMaskSize: 0
    [ 29.254] LinRedFieldPosition: 0
    [ 29.254] LinGreenMaskSize: 0
    [ 29.254] LinGreenFieldPosition: 0
    [ 29.254] LinBlueMaskSize: 0
    [ 29.254] LinBlueFieldPosition: 0
    [ 29.254] LinRsvdMaskSize: 0
    [ 29.254] LinRsvdFieldPosition: 0
    [ 29.254] MaxPixelClock: 0
    [ 29.254] Mode: 15a (0x0)
    [ 29.254] ModeAttributes: 0x0
    [ 29.254] WinAAttributes: 0x0
    [ 29.254] WinBAttributes: 0x0
    [ 29.254] WinGranularity: 0
    [ 29.254] WinSize: 0
    [ 29.254] WinASegment: 0x0
    [ 29.254] WinBSegment: 0x0
    [ 29.254] WinFuncPtr: 0x0
    [ 29.254] BytesPerScanline: 0
    [ 29.254] XResolution: 0
    [ 29.254] YResolution: 0
    [ 29.254] XCharSize: 0
    [ 29.254] YCharSize: 0
    [ 29.254] NumberOfPlanes: 0
    [ 29.254] BitsPerPixel: 0
    [ 29.254] NumberOfBanks: 0
    [ 29.254] MemoryModel: 0
    [ 29.254] BankSize: 0
    [ 29.254] NumberOfImages: 0
    [ 29.254] RedMaskSize: 0
    [ 29.254] RedFieldPosition: 0
    [ 29.254] GreenMaskSize: 0
    [ 29.254] GreenFieldPosition: 0
    [ 29.254] BlueMaskSize: 0
    [ 29.254] BlueFieldPosition: 0
    [ 29.254] RsvdMaskSize: 0
    [ 29.254] RsvdFieldPosition: 0
    [ 29.254] DirectColorModeInfo: 0
    [ 29.254] PhysBasePtr: 0x0
    [ 29.254] LinBytesPerScanLine: 0
    [ 29.254] BnkNumberOfImagePages: 0
    [ 29.254] LinNumberOfImagePages: 0
    [ 29.254] LinRedMaskSize: 0
    [ 29.254] LinRedFieldPosition: 0
    [ 29.254] LinGreenMaskSize: 0
    [ 29.254] LinGreenFieldPosition: 0
    [ 29.254] LinBlueMaskSize: 0
    [ 29.254] LinBlueFieldPosition: 0
    [ 29.254] LinRsvdMaskSize: 0
    [ 29.254] LinRsvdFieldPosition: 0
    [ 29.254] MaxPixelClock: 0
    [ 29.254] Mode: 107 (1280x1024)
    [ 29.254] ModeAttributes: 0x9b
    [ 29.254] WinAAttributes: 0x7
    [ 29.254] WinBAttributes: 0x0
    [ 29.254] WinGranularity: 64
    [ 29.254] WinSize: 64
    [ 29.254] WinASegment: 0xa000
    [ 29.254] WinBSegment: 0x0
    [ 29.254] WinFuncPtr: 0xc0009742
    [ 29.254] BytesPerScanline: 1280
    [ 29.254] XResolution: 1280
    [ 29.254] YResolution: 1024
    [ 29.254] XCharSize: 8
    [ 29.254] YCharSize: 16
    [ 29.254] NumberOfPlanes: 1
    [ 29.254] BitsPerPixel: 8
    [ 29.254] NumberOfBanks: 1
    [ 29.254] MemoryModel: 4
    [ 29.254] BankSize: 0
    [ 29.254] NumberOfImages: 50
    [ 29.254] RedMaskSize: 0
    [ 29.254] RedFieldPosition: 0
    [ 29.254] GreenMaskSize: 0
    [ 29.254] GreenFieldPosition: 0
    [ 29.254] BlueMaskSize: 0
    [ 29.254] BlueFieldPosition: 0
    [ 29.254] RsvdMaskSize: 0
    [ 29.254] RsvdFieldPosition: 0
    [ 29.254] DirectColorModeInfo: 0
    [ 29.254] PhysBasePtr: 0xb0000000
    [ 29.254] LinBytesPerScanLine: 1280
    [ 29.254] BnkNumberOfImagePages: 50
    [ 29.254] LinNumberOfImagePages: 50
    [ 29.254] LinRedMaskSize: 0
    [ 29.254] LinRedFieldPosition: 0
    [ 29.254] LinGreenMaskSize: 0
    [ 29.254] LinGreenFieldPosition: 0
    [ 29.254] LinBlueMaskSize: 0
    [ 29.254] LinBlueFieldPosition: 0
    [ 29.254] LinRsvdMaskSize: 0
    [ 29.254] LinRsvdFieldPosition: 0
    [ 29.254] MaxPixelClock: 230000000
    [ 29.254] Mode: 11a (1280x1024)
    [ 29.254] ModeAttributes: 0x9b
    [ 29.254] WinAAttributes: 0x7
    [ 29.254] WinBAttributes: 0x0
    [ 29.254] WinGranularity: 64
    [ 29.254] WinSize: 64
    [ 29.254] WinASegment: 0xa000
    [ 29.254] WinBSegment: 0x0
    [ 29.254] WinFuncPtr: 0xc0009742
    [ 29.254] BytesPerScanline: 2560
    [ 29.254] XResolution: 1280
    [ 29.254] YResolution: 1024
    [ 29.254] XCharSize: 8
    [ 29.254] YCharSize: 16
    [ 29.254] NumberOfPlanes: 1
    [ 29.254] BitsPerPixel: 16
    [ 29.254] NumberOfBanks: 1
    [ 29.254] MemoryModel: 6
    [ 29.254] BankSize: 0
    [ 29.254] NumberOfImages: 24
    [ 29.254] RedMaskSize: 5
    [ 29.254] RedFieldPosition: 11
    [ 29.254] GreenMaskSize: 6
    [ 29.254] GreenFieldPosition: 5
    [ 29.254] BlueMaskSize: 5
    [ 29.254] BlueFieldPosition: 0
    [ 29.254] RsvdMaskSize: 0
    [ 29.254] RsvdFieldPosition: 0
    [ 29.254] DirectColorModeInfo: 0
    [ 29.254] PhysBasePtr: 0xb0000000
    [ 29.254] LinBytesPerScanLine: 2560
    [ 29.254] BnkNumberOfImagePages: 24
    [ 29.254] LinNumberOfImagePages: 24
    [ 29.254] LinRedMaskSize: 5
    [ 29.254] LinRedFieldPosition: 11
    [ 29.254] LinGreenMaskSize: 6
    [ 29.254] LinGreenFieldPosition: 5
    [ 29.254] LinBlueMaskSize: 5
    [ 29.255] LinBlueFieldPosition: 0
    [ 29.255] LinRsvdMaskSize: 0
    [ 29.255] LinRsvdFieldPosition: 0
    [ 29.255] MaxPixelClock: 230000000
    [ 29.255] *Mode: 11b (1280x1024)
    [ 29.255] ModeAttributes: 0x9b
    [ 29.255] WinAAttributes: 0x7
    [ 29.255] WinBAttributes: 0x0
    [ 29.255] WinGranularity: 64
    [ 29.255] WinSize: 64
    [ 29.255] WinASegment: 0xa000
    [ 29.255] WinBSegment: 0x0
    [ 29.255] WinFuncPtr: 0xc0009742
    [ 29.255] BytesPerScanline: 5120
    [ 29.255] XResolution: 1280
    [ 29.255] YResolution: 1024
    [ 29.255] XCharSize: 8
    [ 29.255] YCharSize: 16
    [ 29.255] NumberOfPlanes: 1
    [ 29.255] BitsPerPixel: 32
    [ 29.255] NumberOfBanks: 1
    [ 29.255] MemoryModel: 6
    [ 29.255] BankSize: 0
    [ 29.255] NumberOfImages: 11
    [ 29.255] RedMaskSize: 8
    [ 29.255] RedFieldPosition: 16
    [ 29.255] GreenMaskSize: 8
    [ 29.255] GreenFieldPosition: 8
    [ 29.255] BlueMaskSize: 8
    [ 29.255] BlueFieldPosition: 0
    [ 29.255] RsvdMaskSize: 8
    [ 29.255] RsvdFieldPosition: 24
    [ 29.255] DirectColorModeInfo: 0
    [ 29.255] PhysBasePtr: 0xb0000000
    [ 29.255] LinBytesPerScanLine: 5120
    [ 29.255] BnkNumberOfImagePages: 11
    [ 29.255] LinNumberOfImagePages: 11
    [ 29.255] LinRedMaskSize: 8
    [ 29.255] LinRedFieldPosition: 16
    [ 29.255] LinGreenMaskSize: 8
    [ 29.255] LinGreenFieldPosition: 8
    [ 29.255] LinBlueMaskSize: 8
    [ 29.255] LinBlueFieldPosition: 0
    [ 29.255] LinRsvdMaskSize: 8
    [ 29.255] LinRsvdFieldPosition: 24
    [ 29.255] MaxPixelClock: 230000000
    [ 29.255] Mode: 105 (1024x768)
    [ 29.255] ModeAttributes: 0x9b
    [ 29.255] WinAAttributes: 0x7
    [ 29.255] WinBAttributes: 0x0
    [ 29.255] WinGranularity: 64
    [ 29.255] WinSize: 64
    [ 29.255] WinASegment: 0xa000
    [ 29.255] WinBSegment: 0x0
    [ 29.255] WinFuncPtr: 0xc0009742
    [ 29.255] BytesPerScanline: 1024
    [ 29.255] XResolution: 1024
    [ 29.255] YResolution: 768
    [ 29.255] XCharSize: 8
    [ 29.255] YCharSize: 16
    [ 29.255] NumberOfPlanes: 1
    [ 29.255] BitsPerPixel: 8
    [ 29.255] NumberOfBanks: 1
    [ 29.255] MemoryModel: 4
    [ 29.255] BankSize: 0
    [ 29.255] NumberOfImages: 84
    [ 29.255] RedMaskSize: 0
    [ 29.255] RedFieldPosition: 0
    [ 29.255] GreenMaskSize: 0
    [ 29.255] GreenFieldPosition: 0
    [ 29.255] BlueMaskSize: 0
    [ 29.255] BlueFieldPosition: 0
    [ 29.255] RsvdMaskSize: 0
    [ 29.255] RsvdFieldPosition: 0
    [ 29.255] DirectColorModeInfo: 0
    [ 29.255] PhysBasePtr: 0xb0000000
    [ 29.255] LinBytesPerScanLine: 1024
    [ 29.255] BnkNumberOfImagePages: 84
    [ 29.255] LinNumberOfImagePages: 84
    [ 29.255] LinRedMaskSize: 0
    [ 29.255] LinRedFieldPosition: 0
    [ 29.255] LinGreenMaskSize: 0
    [ 29.255] LinGreenFieldPosition: 0
    [ 29.255] LinBlueMaskSize: 0
    [ 29.255] LinBlueFieldPosition: 0
    [ 29.255] LinRsvdMaskSize: 0
    [ 29.255] LinRsvdFieldPosition: 0
    [ 29.255] MaxPixelClock: 230000000
    [ 29.255] Mode: 117 (1024x768)
    [ 29.255] ModeAttributes: 0x9b
    [ 29.255] WinAAttributes: 0x7
    [ 29.255] WinBAttributes: 0x0
    [ 29.255] WinGranularity: 64
    [ 29.255] WinSize: 64
    [ 29.255] WinASegment: 0xa000
    [ 29.255] WinBSegment: 0x0
    [ 29.255] WinFuncPtr: 0xc0009742
    [ 29.255] BytesPerScanline: 2048
    [ 29.255] XResolution: 1024
    [ 29.255] YResolution: 768
    [ 29.255] XCharSize: 8
    [ 29.255] YCharSize: 16
    [ 29.255] NumberOfPlanes: 1
    [ 29.255] BitsPerPixel: 16
    [ 29.255] NumberOfBanks: 1
    [ 29.255] MemoryModel: 6
    [ 29.255] BankSize: 0
    [ 29.255] NumberOfImages: 41
    [ 29.255] RedMaskSize: 5
    [ 29.255] RedFieldPosition: 11
    [ 29.255] GreenMaskSize: 6
    [ 29.255] GreenFieldPosition: 5
    [ 29.255] BlueMaskSize: 5
    [ 29.255] BlueFieldPosition: 0
    [ 29.255] RsvdMaskSize: 0
    [ 29.255] RsvdFieldPosition: 0
    [ 29.255] DirectColorModeInfo: 0
    [ 29.255] PhysBasePtr: 0xb0000000
    [ 29.255] LinBytesPerScanLine: 2048
    [ 29.255] BnkNumberOfImagePages: 41
    [ 29.255] LinNumberOfImagePages: 41
    [ 29.255] LinRedMaskSize: 5
    [ 29.255] LinRedFieldPosition: 11
    [ 29.255] LinGreenMaskSize: 6
    [ 29.255] LinGreenFieldPosition: 5
    [ 29.255] LinBlueMaskSize: 5
    [ 29.255] LinBlueFieldPosition: 0
    [ 29.255] LinRsvdMaskSize: 0
    [ 29.255] LinRsvdFieldPosition: 0
    [ 29.255] MaxPixelClock: 230000000
    [ 29.256] *Mode: 118 (1024x768)
    [ 29.256] ModeAttributes: 0x9b
    [ 29.256] WinAAttributes: 0x7
    [ 29.256] WinBAttributes: 0x0
    [ 29.256] WinGranularity: 64
    [ 29.256] WinSize: 64
    [ 29.256] WinASegment: 0xa000
    [ 29.256] WinBSegment: 0x0
    [ 29.256] WinFuncPtr: 0xc0009742
    [ 29.256] BytesPerScanline: 4096
    [ 29.256] XResolution: 1024
    [ 29.256] YResolution: 768
    [ 29.256] XCharSize: 8
    [ 29.256] YCharSize: 16
    [ 29.256] NumberOfPlanes: 1
    [ 29.256] BitsPerPixel: 32
    [ 29.256] NumberOfBanks: 1
    [ 29.256] MemoryModel: 6
    [ 29.256] BankSize: 0
    [ 29.256] NumberOfImages: 20
    [ 29.256] RedMaskSize: 8
    [ 29.256] RedFieldPosition: 16
    [ 29.256] GreenMaskSize: 8
    [ 29.256] GreenFieldPosition: 8
    [ 29.256] BlueMaskSize: 8
    [ 29.256] BlueFieldPosition: 0
    [ 29.256] RsvdMaskSize: 8
    [ 29.256] RsvdFieldPosition: 24
    [ 29.256] DirectColorModeInfo: 0
    [ 29.256] PhysBasePtr: 0xb0000000
    [ 29.256] LinBytesPerScanLine: 4096
    [ 29.256] BnkNumberOfImagePages: 20
    [ 29.256] LinNumberOfImagePages: 20
    [ 29.256] LinRedMaskSize: 8
    [ 29.256] LinRedFieldPosition: 16
    [ 29.256] LinGreenMaskSize: 8
    [ 29.256] LinGreenFieldPosition: 8
    [ 29.256] LinBlueMaskSize: 8
    [ 29.256] LinBlueFieldPosition: 0
    [ 29.256] LinRsvdMaskSize: 8
    [ 29.256] LinRsvdFieldPosition: 24
    [ 29.256] MaxPixelClock: 230000000
    [ 29.256] *Mode: 112 (640x480)
    [ 29.256] ModeAttributes: 0x9b
    [ 29.256] WinAAttributes: 0x7
    [ 29.256] WinBAttributes: 0x0
    [ 29.256] WinGranularity: 64
    [ 29.256] WinSize: 64
    [ 29.256] WinASegment: 0xa000
    [ 29.256] WinBSegment: 0x0
    [ 29.256] WinFuncPtr: 0xc0009742
    [ 29.256] BytesPerScanline: 2560
    [ 29.256] XResolution: 640
    [ 29.256] YResolution: 480
    [ 29.256] XCharSize: 8
    [ 29.256] YCharSize: 16
    [ 29.256] NumberOfPlanes: 1
    [ 29.256] BitsPerPixel: 32
    [ 29.256] NumberOfBanks: 1
    [ 29.256] MemoryModel: 6
    [ 29.256] BankSize: 0
    [ 29.256] NumberOfImages: 52
    [ 29.256] RedMaskSize: 8
    [ 29.256] RedFieldPosition: 16
    [ 29.256] GreenMaskSize: 8
    [ 29.256] GreenFieldPosition: 8
    [ 29.256] BlueMaskSize: 8
    [ 29.256] BlueFieldPosition: 0
    [ 29.256] RsvdMaskSize: 8
    [ 29.256] RsvdFieldPosition: 24
    [ 29.256] DirectColorModeInfo: 0
    [ 29.256] PhysBasePtr: 0xb0000000
    [ 29.256] LinBytesPerScanLine: 2560
    [ 29.256] BnkNumberOfImagePages: 52
    [ 29.256] LinNumberOfImagePages: 52
    [ 29.256] LinRedMaskSize: 8
    [ 29.256] LinRedFieldPosition: 16
    [ 29.256] LinGreenMaskSize: 8
    [ 29.256] LinGreenFieldPosition: 8
    [ 29.256] LinBlueMaskSize: 8
    [ 29.256] LinBlueFieldPosition: 0
    [ 29.256] LinRsvdMaskSize: 8
    [ 29.256] LinRsvdFieldPosition: 24
    [ 29.256] MaxPixelClock: 230000000
    [ 29.256] Mode: 114 (800x600)
    [ 29.256] ModeAttributes: 0x9b
    [ 29.256] WinAAttributes: 0x7
    [ 29.256] WinBAttributes: 0x0
    [ 29.256] WinGranularity: 64
    [ 29.256] WinSize: 64
    [ 29.256] WinASegment: 0xa000
    [ 29.256] WinBSegment: 0x0
    [ 29.256] WinFuncPtr: 0xc0009742
    [ 29.256] BytesPerScanline: 1600
    [ 29.256] XResolution: 800
    [ 29.256] YResolution: 600
    [ 29.256] XCharSize: 8
    [ 29.256] YCharSize: 16
    [ 29.256] NumberOfPlanes: 1
    [ 29.256] BitsPerPixel: 16
    [ 29.256] NumberOfBanks: 1
    [ 29.256] MemoryModel: 6
    [ 29.256] BankSize: 0
    [ 29.256] NumberOfImages: 67
    [ 29.256] RedMaskSize: 5
    [ 29.256] RedFieldPosition: 11
    [ 29.256] GreenMaskSize: 6
    [ 29.256] GreenFieldPosition: 5
    [ 29.256] BlueMaskSize: 5
    [ 29.256] BlueFieldPosition: 0
    [ 29.256] RsvdMaskSize: 0
    [ 29.256] RsvdFieldPosition: 0
    [ 29.256] DirectColorModeInfo: 0
    [ 29.256] PhysBasePtr: 0xb0000000
    [ 29.256] LinBytesPerScanLine: 1600
    [ 29.256] BnkNumberOfImagePages: 67
    [ 29.256] LinNumberOfImagePages: 67
    [ 29.256] LinRedMaskSize: 5
    [ 29.256] LinRedFieldPosition: 11
    [ 29.257] LinGreenMaskSize: 6
    [ 29.257] LinGreenFieldPosition: 5
    [ 29.257] LinBlueMaskSize: 5
    [ 29.257] LinBlueFieldPosition: 0
    [ 29.257] LinRsvdMaskSize: 0
    [ 29.257] LinRsvdFieldPosition: 0
    [ 29.257] MaxPixelClock: 230000000
    [ 29.257] *Mode: 115 (800x600)
    [ 29.257] ModeAttributes: 0x9b
    [ 29.257] WinAAttributes: 0x7
    [ 29.257] WinBAttributes: 0x0
    [ 29.257] WinGranularity: 64
    [ 29.257] WinSize: 64
    [ 29.257] WinASegment: 0xa000
    [ 29.257] WinBSegment: 0x0
    [ 29.257] WinFuncPtr: 0xc0009742
    [ 29.257] BytesPerScanline: 3200
    [ 29.257] XResolution: 800
    [ 29.257] YResolution: 600
    [ 29.257] XCharSize: 8
    [ 29.257] YCharSize: 16
    [ 29.257] NumberOfPlanes: 1
    [ 29.257] BitsPerPixel: 32
    [ 29.257] NumberOfBanks: 1
    [ 29.257] MemoryModel: 6
    [ 29.257] BankSize: 0
    [ 29.257] NumberOfImages: 33
    [ 29.257] RedMaskSize: 8
    [ 29.257] RedFieldPosition: 16
    [ 29.257] GreenMaskSize: 8
    [ 29.257] GreenFieldPosition: 8
    [ 29.257] BlueMaskSize: 8
    [ 29.257] BlueFieldPosition: 0
    [ 29.257] RsvdMaskSize: 8
    [ 29.257] RsvdFieldPosition: 24
    [ 29.257] DirectColorModeInfo: 0
    [ 29.257] PhysBasePtr: 0xb0000000
    [ 29.257] LinBytesPerScanLine: 3200
    [ 29.257] BnkNumberOfImagePages: 33
    [ 29.257] LinNumberOfImagePages: 33
    [ 29.257] LinRedMaskSize: 8
    [ 29.257] LinRedFieldPosition: 16
    [ 29.257] LinGreenMaskSize: 8
    [ 29.257] LinGreenFieldPosition: 8
    [ 29.257] LinBlueMaskSize: 8
    [ 29.257] LinBlueFieldPosition: 0
    [ 29.257] LinRsvdMaskSize: 8
    [ 29.257] LinRsvdFieldPosition: 24
    [ 29.257] MaxPixelClock: 230000000
    [ 29.257] Mode: 101 (640x480)
    [ 29.257] ModeAttributes: 0x9b
    [ 29.257] WinAAttributes: 0x7
    [ 29.257] WinBAttributes: 0x0
    [ 29.257] WinGranularity: 64
    [ 29.257] WinSize: 64
    [ 29.257] WinASegment: 0xa000
    [ 29.257] WinBSegment: 0x0
    [ 29.257] WinFuncPtr: 0xc0009742
    [ 29.257] BytesPerScanline: 640
    [ 29.257] XResolution: 640
    [ 29.257] YResolution: 480
    [ 29.257] XCharSize: 8
    [ 29.257] YCharSize: 16
    [ 29.257] NumberOfPlanes: 1
    [ 29.257] BitsPerPixel: 8
    [ 29.257] NumberOfBanks: 1
    [ 29.257] MemoryModel: 4
    [ 29.257] BankSize: 0
    [ 29.257] NumberOfImages: 203
    [ 29.257] RedMaskSize: 0
    [ 29.257] RedFieldPosition: 0
    [ 29.257] GreenMaskSize: 0
    [ 29.257] GreenFieldPosition: 0
    [ 29.257] BlueMaskSize: 0
    [ 29.257] BlueFieldPosition: 0
    [ 29.257] RsvdMaskSize: 0
    [ 29.257] RsvdFieldPosition: 0
    [ 29.257] DirectColorModeInfo: 0
    [ 29.257] PhysBasePtr: 0xb0000000
    [ 29.257] LinBytesPerScanLine: 640
    [ 29.257] BnkNumberOfImagePages: 203
    [ 29.257] LinNumberOfImagePages: 203
    [ 29.257] LinRedMaskSize: 0
    [ 29.257] LinRedFieldPosition: 0
    [ 29.257] LinGreenMaskSize: 0
    [ 29.257] LinGreenFieldPosition: 0
    [ 29.257] LinBlueMaskSize: 0
    [ 29.257] LinBlueFieldPosition: 0
    [ 29.257] LinRsvdMaskSize: 0
    [ 29.257] LinRsvdFieldPosition: 0
    [ 29.257] MaxPixelClock: 230000000
    [ 29.257] Mode: 103 (800x600)
    [ 29.257] ModeAttributes: 0x9b
    [ 29.257] WinAAttributes: 0x7
    [ 29.257] WinBAttributes: 0x0
    [ 29.257] WinGranularity: 64
    [ 29.257] WinSize: 64
    [ 29.257] WinASegment: 0xa000
    [ 29.257] WinBSegment: 0x0
    [ 29.257] WinFuncPtr: 0xc0009742
    [ 29.257] BytesPerScanline: 832
    [ 29.257] XResolution: 800
    [ 29.257] YResolution: 600
    [ 29.257] XCharSize: 8
    [ 29.257] YCharSize: 16
    [ 29.257] NumberOfPlanes: 1
    [ 29.257] BitsPerPixel: 8
    [ 29.257] NumberOfBanks: 1
    [ 29.257] MemoryModel: 4
    [ 29.257] BankSize: 0
    [ 29.257] NumberOfImages: 126
    [ 29.257] RedMaskSize: 0
    [ 29.257] RedFieldPosition: 0
    [ 29.257] GreenMaskSize: 0
    [ 29.257] GreenFieldPosition: 0
    [ 29.257] BlueMaskSize: 0
    [ 29.257] BlueFieldPosition: 0
    [ 29.257] RsvdMaskSize: 0
    [ 29.257] RsvdFieldPosition: 0
    [ 29.257] DirectColorModeInfo: 0
    [ 29.257] PhysBasePtr: 0xb0000000
    [ 29.257] LinBytesPerScanLine: 832
    [ 29.257] BnkNumberOfImagePages: 126
    [ 29.257] LinNumberOfImagePages: 126
    [ 29.257] LinRedMaskSize: 0
    [ 29.257] LinRedFieldPosition: 0
    [ 29.257] LinGreenMaskSize: 0
    [ 29.257] LinGreenFieldPosition: 0
    [ 29.257] LinBlueMaskSize: 0
    [ 29.257] LinBlueFieldPosition: 0
    [ 29.257] LinRsvdMaskSize: 0
    [ 29.257] LinRsvdFieldPosition: 0
    [ 29.257] MaxPixelClock: 230000000
    [ 29.258] Mode: 111 (640x480)
    [ 29.258] ModeAttributes: 0x9b
    [ 29.258] WinAAttributes: 0x7
    [ 29.258] WinBAttributes: 0x0
    [ 29.258] WinGranularity: 64
    [ 29.258] WinSize: 64
    [ 29.258] WinASegment: 0xa000
    [ 29.258] WinBSegment: 0x0
    [ 29.258] WinFuncPtr: 0xc0009742
    [ 29.258] BytesPerScanline: 1280
    [ 29.258] XResolution: 640
    [ 29.258] YResolution: 480
    [ 29.258] XCharSize: 8
    [ 29.258] YCharSize: 16
    [ 29.258] NumberOfPlanes: 1
    [ 29.258] BitsPerPixel: 16
    [ 29.258] NumberOfBanks: 1
    [ 29.258] MemoryModel: 6
    [ 29.258] BankSize: 0
    [ 29.258] NumberOfImages: 101
    [ 29.258] RedMaskSize: 5
    [ 29.258] RedFieldPosition: 11
    [ 29.258] GreenMaskSize: 6
    [ 29.258] GreenFieldPosition: 5
    [ 29.258] BlueMaskSize: 5
    [ 29.258] BlueFieldPosition: 0
    [ 29.258] RsvdMaskSize: 0
    [ 29.258] RsvdFieldPosition: 0
    [ 29.258] DirectColorModeInfo: 0
    [ 29.258] PhysBasePtr: 0xb0000000
    [ 29.258] LinBytesPerScanLine: 1280
    [ 29.258] BnkNumberOfImagePages: 101
    [ 29.258] LinNumberOfImagePages: 101
    [ 29.258] LinRedMaskSize: 5
    [ 29.258] LinRedFieldPosition: 11
    [ 29.258] LinGreenMaskSize: 6
    [ 29.258] LinGreenFieldPosition: 5
    [ 29.258] LinBlueMaskSize: 5
    [ 29.258] LinBlueFieldPosition: 0
    [ 29.258] LinRsvdMaskSize: 0
    [ 29.258] LinRsvdFieldPosition: 0
    [ 29.258] MaxPixelClock: 230000000
    [ 29.258] Mode: 17d (1920x1080)
    [ 29.258] ModeAttributes: 0x9b
    [ 29.258] WinAAttributes: 0x7
    [ 29.258] WinBAttributes: 0x0
    [ 29.258] WinGranularity: 64
    [ 29.258] WinSize: 64
    [ 29.258] WinASegment: 0xa000
    [ 29.258] WinBSegment: 0x0
    [ 29.258] WinFuncPtr: 0xc0009742
    [ 29.258] BytesPerScanline: 1920
    [ 29.258] XResolution: 1920
    [ 29.258] YResolution: 1080
    [ 29.258] XCharSize: 8
    [ 29.258] YCharSize: 16
    [ 29.258] NumberOfPlanes: 1
    [ 29.258] BitsPerPixel: 8
    [ 29.258] NumberOfBanks: 1
    [ 29.258] MemoryModel: 4
    [ 29.258] BankSize: 0
    [ 29.258] NumberOfImages: 30
    [ 29.258] RedMaskSize: 0
    [ 29.258] RedFieldPosition: 0
    [ 29.258] GreenMaskSize: 0
    [ 29.258] GreenFieldPosition: 0
    [ 29.258] BlueMaskSize: 0
    [ 29.258] BlueFieldPosition: 0
    [ 29.258] RsvdMaskSize: 0
    [ 29.258] RsvdFieldPosition: 0
    [ 29.258] DirectColorModeInfo: 0
    [ 29.258] PhysBasePtr: 0xb0000000
    [ 29.258] LinBytesPerScanLine: 1920
    [ 29.258] BnkNumberOfImagePages: 30
    [ 29.258] LinNumberOfImagePages: 30
    [ 29.258] LinRedMaskSize: 0
    [ 29.258] LinRedFieldPosition: 0
    [ 29.258] LinGreenMaskSize: 0
    [ 29.258] LinGreenFieldPosition: 0
    [ 29.258] LinBlueMaskSize: 0
    [ 29.258] LinBlueFieldPosition: 0
    [ 29.258] LinRsvdMaskSize: 0
    [ 29.258] LinRsvdFieldPosition: 0
    [ 29.258] MaxPixelClock: 230000000
    [ 29.258] Mode: 17e (1920x1080)
    [ 29.258] ModeAttributes: 0x9b
    [ 29.258] WinAAttributes: 0x7
    [ 29.258] WinBAttributes: 0x0
    [ 29.258] WinGranularity: 64
    [ 29.258] WinSize: 64
    [ 29.258] WinASegment: 0xa000
    [ 29.258] WinBSegment: 0x0
    [ 29.258] WinFuncPtr: 0xc0009742
    [ 29.258] BytesPerScanline: 3840
    [ 29.258] XResolution: 1920
    [ 29.258] YResolution: 1080
    [ 29.258] XCharSize: 8
    [ 29.258] YCharSize: 16
    [ 29.258] NumberOfPlanes: 1
    [ 29.258] BitsPerPixel: 16
    [ 29.258] NumberOfBanks: 1
    [ 29.258] MemoryModel: 6
    [ 29.258] BankSize: 0
    [ 29.258] NumberOfImages: 14
    [ 29.258] RedMaskSize: 5
    [ 29.258] RedFieldPosition: 11
    [ 29.258] GreenMaskSize: 6
    [ 29.258] GreenFieldPosition: 5
    [ 29.258] BlueMaskSize: 5
    [ 29.258] BlueFieldPosition: 0
    [ 29.258] RsvdMaskSize: 0
    [ 29.258] RsvdFieldPosition: 0
    [ 29.258] DirectColorModeInfo: 0
    [ 29.258] PhysBasePtr: 0xb0000000
    [ 29.258] LinBytesPerScanLine: 3840
    [ 29.258] BnkNumberOfImagePages: 14
    [ 29.258] LinNumberOfImagePages: 14
    [ 29.258] LinRedMaskSize: 5
    [ 29.258] LinRedFieldPosition: 11
    [ 29.258] LinGreenMaskSize: 6
    [ 29.258] LinGreenFieldPosition: 5
    [ 29.258] LinBlueMaskSize: 5
    [ 29.258] LinBlueFieldPosition: 0
    [ 29.258] LinRsvdMaskSize: 0
    [ 29.258] LinRsvdFieldPosition: 0
    [ 29.258] MaxPixelClock: 230000000
    [ 29.259] *Mode: 17f (1920x1080)
    [ 29.259] ModeAttributes: 0x9b
    [ 29.259] WinAAttributes: 0x7
    [ 29.259] WinBAttributes: 0x0
    [ 29.259] WinGranularity: 64
    [ 29.259] WinSize: 64
    [ 29.259] WinASegment: 0xa000
    [ 29.259] WinBSegment: 0x0
    [ 29.259] WinFuncPtr: 0xc0009742
    [ 29.259] BytesPerScanline: 7680
    [ 29.259] XResolution: 1920
    [ 29.259] YResolution: 1080
    [ 29.259] XCharSize: 8
    [ 29.259] YCharSize: 16
    [ 29.259] NumberOfPlanes: 1
    [ 29.259] BitsPerPixel: 32
    [ 29.259] NumberOfBanks: 1
    [ 29.259] MemoryModel: 6
    [ 29.259] BankSize: 0
    [ 29.259] NumberOfImages: 7
    [ 29.259] RedMaskSize: 8
    [ 29.259] RedFieldPosition: 16
    [ 29.259] GreenMaskSize: 8
    [ 29.259] GreenFieldPosition: 8
    [ 29.259] BlueMaskSize: 8
    [ 29.259] BlueFieldPosition: 0
    [ 29.259] RsvdMaskSize: 8
    [ 29.259] RsvdFieldPosition: 24
    [ 29.259] DirectColorModeInfo: 0
    [ 29.259] PhysBasePtr: 0xb0000000
    [ 29.259] LinBytesPerScanLine: 7680
    [ 29.259] BnkNumberOfImagePages: 7
    [ 29.259] LinNumberOfImagePages: 7
    [ 29.259] LinRedMaskSize: 8
    [ 29.259] LinRedFieldPosition: 16
    [ 29.259] LinGreenMaskSize: 8
    [ 29.259] LinGreenFieldPosition: 8
    [ 29.259] LinBlueMaskSize: 8
    [ 29.259] LinBlueFieldPosition: 0
    [ 29.259] LinRsvdMaskSize: 8
    [ 29.259] LinRsvdFieldPosition: 24
    [ 29.259] MaxPixelClock: 230000000
    [ 29.259]
    [ 29.259] (II) VESA(0): Total Memory: 1023 64KB banks (65472kB)
    [ 29.259] (II) VESA(0): <default monitor>: Using hsync value of 66.56 kHz
    [ 29.259] (II) VESA(0): <default monitor>: Using vrefresh value of 59.91 Hz
    [ 29.259] (WW) VESA(0): Unable to estimate virtual size
    [ 29.259] (II) VESA(0): Not using built-in mode "1280x1024" (no mode of this name)
    [ 29.259] (II) VESA(0): Not using built-in mode "1024x768" (no mode of this name)
    [ 29.259] (II) VESA(0): Not using built-in mode "800x600" (no mode of this name)
    [ 29.259] (II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
    [ 29.259] (--) VESA(0): Virtual size is 1920x1080 (pitch 1920)
    [ 29.259] (**) VESA(0): *Built-in mode "1920x1080"
    [ 29.259] (**) VESA(0): Display dimensions: (350, 190) mm
    [ 29.259] (**) VESA(0): DPI set to (139, 144)
    [ 29.259] (**) VESA(0): Using "Shadow Framebuffer"
    [ 29.259] (II) Loading sub module "shadow"
    [ 29.259] (II) LoadModule: "shadow"
    [ 29.259] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 29.260] (II) Module shadow: vendor="X.Org Foundation"
    [ 29.260] compiled for 1.14.4, module version = 1.1.0
    [ 29.260] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 29.260] (II) Loading sub module "fb"
    [ 29.260] (II) LoadModule: "fb"
    [ 29.260] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 29.261] (II) Module fb: vendor="X.Org Foundation"
    [ 29.261] compiled for 1.14.4, module version = 1.0.0
    [ 29.261] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 29.261] (==) Depth 24 pixmap format is 32 bpp
    [ 29.261] (II) Loading sub module "int10"
    [ 29.261] (II) LoadModule: "int10"
    [ 29.261] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 29.261] (II) Module int10: vendor="X.Org Foundation"
    [ 29.261] compiled for 1.14.4, module version = 1.0.0
    [ 29.261] ABI class: X.Org Video Driver, version 14.1
    [ 29.261] (II) VESA(0): initializing int10
    [ 29.261] (II) VESA(0): Primary V_BIOS segment is: 0xc000
    [ 29.261] (II) VESA(0): VESA BIOS detected
    [ 29.261] (II) VESA(0): VESA VBE Version 3.0
    [ 29.261] (II) VESA(0): VESA VBE Total Mem: 65472 kB
    [ 29.261] (II) VESA(0): VESA VBE OEM: Intel(R) HSW Mobile/Desktop Graphics Chipset Accelerated VGA BIOS
    [ 29.261] (II) VESA(0): VESA VBE OEM Software Rev: 0.0
    [ 29.261] (II) VESA(0): virtual address = 0x7f3dcd90f000,
    physical address = 0xb0000000, size = 67043328
    [ 29.268] (II) VESA(0): Setting up VESA Mode 0x17F (1920x1080)
    [ 29.343] (==) VESA(0): Default visual is TrueColor
    [ 29.344] (==) VESA(0): Backing store disabled
    [ 29.345] (==) VESA(0): DPMS enabled
    [ 29.345] (==) RandR enabled
    [ 29.345] (II) Found 2 VGA devices: arbiter wrapping enabled
    [ 29.349] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 29.349] (II) AIGLX: Screen 0 is not DRI capable
    [ 29.403] (II) AIGLX: Loaded and initialized swrast
    [ 29.403] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 29.441] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 29.441] (**) Power Button: Applying InputClass "system-keyboard"
    [ 29.441] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 29.441] (II) LoadModule: "evdev"
    [ 29.441] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 29.442] (II) Module evdev: vendor="X.Org Foundation"
    [ 29.442] compiled for 1.14.3, module version = 2.8.2
    [ 29.442] Module class: X.Org XInput Driver
    [ 29.442] ABI class: X.Org XInput driver, version 19.1
    [ 29.442] (II) Using input driver 'evdev' for 'Power Button'
    [ 29.442] (**) Power Button: always reports core events
    [ 29.442] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 29.442] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 29.443] (--) evdev: Power Button: Found keys
    [ 29.443] (II) evdev: Power Button: Configuring as keyboard
    [ 29.443] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event4"
    [ 29.443] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 29.443] (**) Option "xkb_rules" "evdev"
    [ 29.443] (**) Option "xkb_model" "pc104"
    [ 29.443] (**) Option "xkb_layout" "de"
    [ 29.457] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 29.457] (**) Power Button: Applying InputClass "system-keyboard"
    [ 29.457] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 29.457] (II) Using input driver 'evdev' for 'Power Button'
    [ 29.457] (**) Power Button: always reports core events
    [ 29.457] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 29.457] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 29.457] (--) evdev: Power Button: Found keys
    [ 29.457] (II) evdev: Power Button: Configuring as keyboard
    [ 29.457] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input2/event1"
    [ 29.457] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 29.457] (**) Option "xkb_rules" "evdev"
    [ 29.457] (**) Option "xkb_model" "pc104"
    [ 29.457] (**) Option "xkb_layout" "de"
    [ 29.457] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 29.457] (**) Sleep Button: Applying InputClass "system-keyboard"
    [ 29.457] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 29.457] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 29.457] (**) Sleep Button: always reports core events
    [ 29.457] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 29.457] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 29.457] (--) evdev: Sleep Button: Found keys
    [ 29.457] (II) evdev: Sleep Button: Configuring as keyboard
    [ 29.457] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input3/event2"
    [ 29.457] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 29.457] (**) Option "xkb_rules" "evdev"
    [ 29.457] (**) Option "xkb_model" "pc104"
    [ 29.457] (**) Option "xkb_layout" "de"
    [ 29.457] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 29.457] (II) No input driver specified, ignoring this device.
    [ 29.457] (II) This device may have been added with another device file.
    [ 29.457] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=3 (/dev/input/event8)
    [ 29.457] (II) No input driver specified, ignoring this device.
    [ 29.457] (II) This device may have been added with another device file.
    [ 29.458] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=7 (/dev/input/event7)
    [ 29.458] (II) No input driver specified, ignoring this device.
    [ 29.458] (II) This device may have been added with another device file.
    [ 29.458] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=8 (/dev/input/event6)
    [ 29.458] (II) No input driver specified, ignoring this device.
    [ 29.458] (II) This device may have been added with another device file.
    [ 29.458] (II) config/udev: Adding input device Lenovo EasyCamera (/dev/input/event13)
    [ 29.458] (**) Lenovo EasyCamera: Applying InputClass "system-keyboard"
    [ 29.458] (**) Lenovo EasyCamera: Applying InputClass "evdev keyboard catchall"
    [ 29.458] (II) Using input driver 'evdev' for 'Lenovo EasyCamera'
    [ 29.458] (**) Lenovo EasyCamera: always reports core events
    [ 29.458] (**) evdev: Lenovo EasyCamera: Device: "/dev/input/event13"
    [ 29.458] (--) evdev: Lenovo EasyCamera: Vendor 0xbda Product 0x58b9
    [ 29.458] (--) evdev: Lenovo EasyCamera: Found keys
    [ 29.458] (II) evdev: Lenovo EasyCamera: Configuring as keyboard
    [ 29.458] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/input/input15/event13"
    [ 29.458] (II) XINPUT: Adding extended input device "Lenovo EasyCamera" (type: KEYBOARD, id 9)
    [ 29.458] (**) Option "xkb_rules" "evdev"
    [ 29.458] (**) Option "xkb_model" "pc104"
    [ 29.458] (**) Option "xkb_layout" "de"
    [ 29.458] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 29.458] (II) No input driver specified, ignoring this device.
    [ 29.458] (II) This device may have been added with another device file.
    [ 29.458] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
    [ 29.458] (II) No input driver specified, ignoring this device.
    [ 29.458] (II) This device may have been added with another device file.
    [ 29.458] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
    [ 29.458] (II) No input driver specified, ignoring this device.
    [ 29.458] (II) This device may have been added with another device file.
    [ 29.458] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 29.458] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    [ 29.458] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 29.458] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 29.458] (**) AT Translated Set 2 keyboard: always reports core events
    [ 29.458] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 29.458] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 29.459] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 29.459] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 29.459] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 29.459] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
    [ 29.459] (**) Option "xkb_rules" "evdev"
    [ 29.459] (**) Option "xkb_model" "pc104"
    [ 29.459] (**) Option "xkb_layout" "de"
    [ 29.459] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event9)
    [ 29.459] (**) Ideapad extra buttons: Applying InputClass "system-keyboard"
    [ 29.459] (**) Ideapad extra buttons: Applying InputClass "evdev keyboard catchall"
    [ 29.459] (II) Using input driver 'evdev' for 'Ideapad extra buttons'
    [ 29.459] (**) Ideapad extra buttons: always reports core events
    [ 29.459] (**) evdev: Ideapad extra buttons: Device: "/dev/input/event9"
    [ 29.459] (--) evdev: Ideapad extra buttons: Vendor 0 Product 0
    [ 29.459] (--) evdev: Ideapad extra buttons: Found keys
    [ 29.459] (II) evdev: Ideapad extra buttons: Configuring as keyboard
    [ 29.459] (**) Option "config_info" "udev:/sys/devices/platform/ideapad/input/input10/event9"
    [ 29.459] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 11)
    [ 29.459] (**) Option "xkb_rules" "evdev"
    [ 29.459] (**) Option "xkb_model" "pc104"
    [ 29.459] (**) Option "xkb_layout" "de"
    [ 29.459] (II) config/udev: Adding input device PC Speaker (/dev/input/event12)
    [ 29.459] (II) No input driver specified, ignoring this device.
    [ 29.459] (II) This device may have been added with another device file.
    [ 29.635] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 29.635] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 29.635] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event14)
    [ 29.635] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 29.635] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 29.635] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 29.635] (II) LoadModule: "synaptics"
    [ 29.636] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 29.637] (II) Module synaptics: vendor="X.Org Foundation"
    [ 29.637] compiled for 1.14.1, module version = 1.7.1
    [ 29.637] Module class: X.Org XInput Driver
    [ 29.637] ABI class: X.Org XInput driver, version 19.1
    [ 29.637] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 29.637] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 29.637] (**) Option "Device" "/dev/input/event14"
    [ 29.723] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
    [ 29.723] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5664 (res 42)
    [ 29.723] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4682 (res 52)
    [ 29.723] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 29.723] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 29.723] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
    [ 29.723] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 29.723] (**) Option "TapButton1" "1"
    [ 29.723] (**) Option "TapButton2" "2"
    [ 29.723] (**) Option "TapButton3" "3"
    [ 29.723] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
    [ 29.723] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 29.723] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 29.763] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input14/event14"
    [ 29.763] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 29.763] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 29.763] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 29.763] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.038
    [ 29.763] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 29.763] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 29.763] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 29.763] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 29.763] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    If you need anything else, please let me know. Thanks in advance.
    harrim4n
    Last edited by harriman (2013-12-06 11:22:32)

    Thanks for the post. This did in fact save me a lot of hassle.
    On my Y510p I needed to use nomodeset to get it to start. From there, I installed bumblebee and nvidia-331 from the X-swat repository. Then I got rid of nomodeset in the kernel parameters. Now my kernel parameters are:
    GRUB_CMDLINE_LINUX_DEFAULT="acpi_osi=Linux acpi_backlight=vendor"
    Now my backlight works, I can get the nvidia card to takeover using bumbleebee's optirun command, and it boots fine.
    Since this result is near the top of the Google results when searching for graphics issues on the Y510p, and this is on the topic of Intel driver problems on the Y510p: can anyone choose different resolutions in the display settings?  I only have access to full resolution.
    Last edited by benjaminb (2014-01-04 01:49:12)

  • Network problems after update; system reinstall not fixing it.

    Hello, first post here ^^
    Sorry if I write with a bit of engrish. I'm very tired ^^"
    My brother's laptop, a Portuguese Classmate PC (aka "Magalhães", version MG2 -- unfortunately, I can't find the corresponding international version, but have a picture) doesn't has any network at all, be it wired or wireless, with the updates of 3/August/2011 installed. I think the problem is udev.
    I have no problems when using an installation media, at least for wired network.
    Even after reinstalling, I still have no network.
    Wired
    The problem with wired, is that the eth0 interface is gone. Have tried network and NetworkManager, and it's just gone. In the output of ifconfig I only have the loopback interface (and would have wlan0, if I had the firmware for the wireless card installed).
    Wired problem solved! Sorry, I actually searched the Internet for a solution and couldn't find anything useful, and only now noticed there's already a thread here about it. I should have searched this forum, instead of the Internet... sorry!
    Wireless
    Previously, I only had to install the rtl8192se chipset drivers from AUR.
    But now, with the latest updates, the kernel [size=1](or the udev, I don't know which it is)[/size]was constantly giving me errors through tty, regarding to wifi. It could scan for networks, but not connect. I have tried with WPA and no security, result was the same.
    Config files and logs
    /etc/rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="pt_PT.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="localtime"
    TIMEZONE="Europe/Lisbon"
    KEYMAP="pt-latin1 pt-latin9 euro"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=(mii r8169 pcspkr snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-codec snd-hda-intel soundcore)
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="MTomas"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    # interface=eth0
    # address=192.168.0.2
    # netmask=255.255.255.0
    # broadcast=192.168.0.255
    # gateway=192.168.0.1
    # DHCP example
    # interface=eth0
    # address=
    # netmask=
    # gateway=
    interface=eth0
    address=
    netmask=
    broadcast=
    gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If something other takes care of your hardware clock (ntpd, dual-boot...)
    # you should disable 'hwclock' here.
    DAEMONS=(syslog-ng dbus network netfs @openntpd crond cups alsa gdm)
    hwdetect --show-net
    NET : ppp_generic slhc rfkill
    dmesg (sorry about the very long output, I don't really know whats' useful or not...)
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (thomas@evey) (gcc version 4.6.1 (GCC) ) #1 SMP PREEMPT Sat Jul 9 14:57:41 CEST 2011
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz26 root=/dev/disk/by-uuid/f2bdff34-f924-4065-ad3d-051016d84be2 rootfstype=ext4 ro add_efi_memmap
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000003f5c0000 (usable)
    [ 0.000000] BIOS-e820: 000000003f5c0000 - 000000003f5cc000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000003f5cc000 - 000000003f5cf000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000003f5cf000 - 0000000040000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: Intel Corporation Intel powered classmate PC/Intel powered classmate PC, BIOS BPPNV20L.90A.0008.2010.0909.1822 09/09/2010
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x3f5c0 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask 0C0000000 write-back
    [ 0.000000] 1 base 03F600000 mask 0FFE00000 uncachable
    [ 0.000000] 2 base 03F800000 mask 0FF800000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [ffff8800000f7d40] f7d40
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-000000003f5c0000
    [ 0.000000] 0000000000 - 003f400000 page 2M
    [ 0.000000] 003f400000 - 003f5c0000 page 4k
    [ 0.000000] kernel direct mapping tables up to 3f5c0000 @ 3f5bd000-3f5c0000
    [ 0.000000] RAMDISK: 37c12000 - 37e01000
    [ 0.000000] ACPI: RSDP 00000000000f7d10 00024 (v02 PTLTD )
    [ 0.000000] ACPI: XSDT 000000003f5c5013 00074 (v01 JPSCSA _JPSCSA_ 06040000 LTP 00000000)
    [ 0.000000] ACPI: FACP 000000003f5cbc60 000F4 (v03 INTEL 06040000 PTL 00000002)
    [ 0.000000] ACPI: DSDT 000000003f5c61a9 05A43 (v01 INTEL BEARG31A 06040000 MSFT 03000001)
    [ 0.000000] ACPI: FACS 000000003f5cefc0 00040
    [ 0.000000] ACPI: TCPA 000000003f5cbd54 00032 (v01 Phoeni x 06040000 TL 00000000)
    [ 0.000000] ACPI: MCFG 000000003f5cbd86 0003C (v01 PTLTD MCFG 06040000 LTP 00000000)
    [ 0.000000] ACPI: HPET 000000003f5cbdc2 00038 (v01 PTLTD HPETTBL 06040000 LTP 00000001)
    [ 0.000000] ACPI: APIC 000000003f5cbdfa 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    [ 0.000000] ACPI: BOOT 000000003f5cbe62 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SLIC 000000003f5cbe8a 00176 (v01 JPSCSA _JPSCSA_ 06040000 LTP 00000000)
    [ 0.000000] ACPI: SSDT 000000003f5c5609 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 000000003f5c5563 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 000000003f5c5087 004DC (v02 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000003f5c0000
    [ 0.000000] NUMA: Using 63 for the hash shift.
    [ 0.000000] Initmem setup node 0 0000000000000000-000000003f5c0000
    [ 0.000000] NODE_DATA [000000003f5b8000 - 000000003f5bcfff]
    [ 0.000000] [ffffea0000000000-ffffea0000dfffff] PMD -> [ffff88003dc00000-ffff88003e9fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[2] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x0003f5c0
    [ 0.000000] On node 0 totalpages: 259405
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3920 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 3493 pages used for memmap
    [ 0.000000] DMA32 zone: 251931 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[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000dc000
    [ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
    [ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88003f200000 s83136 r8192 d23360 u1048576
    [ 0.000000] pcpu-alloc: s83136 r8192 d23360 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 255851
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz26 root=/dev/disk/by-uuid/f2bdff34-f924-4065-ad3d-051016d84be2 rootfstype=ext4 ro add_efi_memmap
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 1011404k/1038080k available (4019k kernel code, 460k absent, 26216k reserved, 3335k data, 712k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 8388608 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1662.531 MHz processor.
    [ 0.003340] Calibrating delay loop (skipped), value calculated using timer frequency.. 3326.60 BogoMIPS (lpj=5541770)
    [ 0.003531] pid_max: default: 32768 minimum: 301
    [ 0.003952] Security Framework initialized
    [ 0.004047] AppArmor: AppArmor disabled by boot time parameter
    [ 0.004419] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.007667] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.008243] Mount-cache hash table entries: 256
    [ 0.009502] Initializing cgroup subsys ns
    [ 0.009600] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.009736] Initializing cgroup subsys cpuacct
    [ 0.009925] Initializing cgroup subsys memory
    [ 0.010064] Initializing cgroup subsys devices
    [ 0.010158] Initializing cgroup subsys freezer
    [ 0.010249] Initializing cgroup subsys net_cls
    [ 0.010340] Initializing cgroup subsys blkio
    [ 0.010565] CPU: Physical Processor ID: 0
    [ 0.010656] CPU: Processor Core ID: 0
    [ 0.010743] mce: CPU supports 5 MCE banks
    [ 0.010839] CPU0: Thermal monitoring handled by SMI
    [ 0.010849] using mwait in idle threads.
    [ 0.012451] ACPI: Core revision 20110316
    [ 0.023363] ftrace: allocating 15966 entries in 63 pages
    [ 0.026783] Setting APIC routing to flat
    [ 0.027287] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061420] CPU0: Intel(R) Atom(TM) CPU N455 @ 1.66GHz stepping 0a
    [ 0.063329] APIC calibration not consistent with PM-Timer: 359ms instead of 100ms
    [ 0.063329] APIC delta adjusted to PM-Timer: 1039059 (3740601)
    [ 0.063329] Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
    [ 0.063329] ... version: 3
    [ 0.063329] ... bit width: 40
    [ 0.063329] ... generic registers: 2
    [ 0.063329] ... value mask: 000000ffffffffff
    [ 0.063329] ... max period: 000000007fffffff
    [ 0.063329] ... fixed-purpose events: 3
    [ 0.063329] ... event mask: 0000000700000003
    [ 0.080180] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.106732] Booting Node 0, Processors #1 Ok.
    [ 0.106880] smpboot cpu 1: start_ip = 98000
    [ 0.006666] CPU0: Thermal monitoring enabled (TM1)
    [ 0.203381] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.210009] Brought up 2 CPUs
    [ 0.210112] Total of 2 processors activated (6652.11 BogoMIPS).
    [ 0.210657] devtmpfs: initialized
    [ 0.217499] PM: Registering ACPI NVS region at 3f5cc000 (12288 bytes)
    [ 0.221762] print_constraints: dummy:
    [ 0.222075] NET: Registered protocol family 16
    [ 0.222464] ACPI: bus type pci registered
    [ 0.222965] PCI: MMCONFIG for domain 0000 [bus 00-10] at [mem 0xe0000000-0xe10fffff] (base 0xe0000000)
    [ 0.223102] PCI: MMCONFIG at [mem 0xe0000000-0xe10fffff] reserved in E820
    [ 0.225887] PCI: Using configuration type 1 for base access
    [ 0.226974] bio: create slab <bio-0> at 0
    [ 0.229126] ACPI: EC: Look up EC in DSDT
    [ 0.237091] ACPI: SSDT 000000003f5c5ed2 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.237853] ACPI: Dynamic OEM Table Load:
    [ 0.238022] ACPI: SSDT (null) 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.238519] ACPI: SSDT 000000003f5c5868 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.239233] ACPI: Dynamic OEM Table Load:
    [ 0.239401] ACPI: SSDT (null) 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.240151] ACPI: SSDT 000000003f5c60d5 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624)
    [ 0.240891] ACPI: Dynamic OEM Table Load:
    [ 0.241061] ACPI: SSDT (null) 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624)
    [ 0.241466] ACPI: SSDT 000000003f5c5e4d 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624)
    [ 0.242187] ACPI: Dynamic OEM Table Load:
    [ 0.242357] ACPI: SSDT (null) 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624)
    [ 0.243484] ACPI: Interpreter enabled
    [ 0.243588] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.243922] ACPI: Using IOAPIC for interrupt routing
    [ 0.255265] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 0.263625] ACPI: No dock devices found.
    [ 0.263714] HEST: Table not found.
    [ 0.263800] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.265505] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110316/dsfield-143)
    [ 0.265765] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node ffff88003d1b1a50), AE_ALREADY_EXISTS (20110316/psparse-536)
    [ 0.266086] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
    [ 0.266668] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.270174] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.270276] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.270400] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [ 0.270524] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [ 0.270647] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [ 0.270772] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    [ 0.270898] pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xf7ffffff]
    [ 0.271021] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xfdff]
    [ 0.271118] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
    [ 0.271263] pci 0000:00:00.0: [8086:a010] type 0 class 0x000600
    [ 0.271320] pci 0000:00:02.0: [8086:a011] type 0 class 0x000300
    [ 0.271335] pci 0000:00:02.0: reg 10: [mem 0xf0200000-0xf027ffff]
    [ 0.271346] pci 0000:00:02.0: reg 14: [io 0x18d0-0x18d7]
    [ 0.271356] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
    [ 0.271366] pci 0000:00:02.0: reg 1c: [mem 0xf0000000-0xf00fffff]
    [ 0.271410] pci 0000:00:02.1: [8086:a012] type 0 class 0x000380
    [ 0.271424] pci 0000:00:02.1: reg 10: [mem 0xf0280000-0xf02fffff]
    [ 0.271531] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
    [ 0.271559] pci 0000:00:1b.0: reg 10: [mem 0xf0500000-0xf0503fff 64bit]
    [ 0.271649] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.271659] pci 0000:00:1b.0: PME# disabled
    [ 0.271694] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
    [ 0.271793] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.271802] pci 0000:00:1c.0: PME# disabled
    [ 0.271842] pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
    [ 0.271935] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.271944] pci 0000:00:1c.1: PME# disabled
    [ 0.271983] pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
    [ 0.272082] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.272091] pci 0000:00:1c.2: PME# disabled
    [ 0.272136] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
    [ 0.272197] pci 0000:00:1d.0: reg 20: [io 0x1820-0x183f]
    [ 0.272257] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
    [ 0.272338] pci 0000:00:1d.1: reg 20: [io 0x1840-0x185f]
    [ 0.272398] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
    [ 0.272459] pci 0000:00:1d.2: reg 20: [io 0x1860-0x187f]
    [ 0.272511] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
    [ 0.272596] pci 0000:00:1d.3: reg 20: [io 0x1880-0x189f]
    [ 0.272670] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
    [ 0.272701] pci 0000:00:1d.7: reg 10: [mem 0xf0504000-0xf05043ff]
    [ 0.272808] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.272817] pci 0000:00:1d.7: PME# disabled
    [ 0.272848] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [ 0.272944] pci 0000:00:1f.0: [8086:27bc] type 0 class 0x000601
    [ 0.273056] pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared
    [ 0.273215] pci 0000:00:1f.2: [8086:27c1] type 0 class 0x000106
    [ 0.273244] pci 0000:00:1f.2: reg 10: [io 0x18e8-0x18ef]
    [ 0.273259] pci 0000:00:1f.2: reg 14: [io 0x18dc-0x18df]
    [ 0.273274] pci 0000:00:1f.2: reg 18: [io 0x18e0-0x18e7]
    [ 0.273289] pci 0000:00:1f.2: reg 1c: [io 0x18d8-0x18db]
    [ 0.273304] pci 0000:00:1f.2: reg 20: [io 0x18c0-0x18cf]
    [ 0.273334] pci 0000:00:1f.2: reg 24: [mem 0xf0504400-0xf05047ff]
    [ 0.273383] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.273391] pci 0000:00:1f.2: PME# disabled
    [ 0.273418] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
    [ 0.273494] pci 0000:00:1f.3: reg 20: [io 0x18a0-0x18bf]
    [ 0.273613] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.273709] pci 0000:00:1c.0: bridge window [io 0x0000-0x0000] (disabled)
    [ 0.273718] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.273730] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.273884] pci 0000:03:00.0: [10ec:8136] type 0 class 0x000200
    [ 0.273955] pci 0000:03:00.0: reg 10: [io 0x2000-0x20ff]
    [ 0.274076] pci 0000:03:00.0: reg 18: [mem 0xf0520000-0xf0520fff 64bit pref]
    [ 0.274148] pci 0000:03:00.0: reg 20: [mem 0xf0510000-0xf051ffff 64bit pref]
    [ 0.274199] pci 0000:03:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.274363] pci 0000:03:00.0: supports D1 D2
    [ 0.274368] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.274387] pci 0000:03:00.0: PME# disabled
    [ 0.274568] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    [ 0.274663] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    [ 0.274672] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.274685] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff 64bit pref]
    [ 0.274782] pci 0000:04:00.0: [10ec:8172] type 0 class 0x000280
    [ 0.274812] pci 0000:04:00.0: reg 10: [io 0x3000-0x30ff]
    [ 0.274832] pci 0000:04:00.0: reg 14: [mem 0xf0100000-0xf0103fff]
    [ 0.274954] pci 0000:04:00.0: supports D1 D2
    [ 0.274960] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.274970] pci 0000:04:00.0: PME# disabled
    [ 0.280025] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    [ 0.280144] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.280152] pci 0000:00:1c.2: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.280164] pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.280266] pci 0000:00:1e.0: PCI bridge to [bus 11-11] (subtractive decode)
    [ 0.280369] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.280378] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.280390] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.280397] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.280404] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.280411] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.280417] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.280424] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.280431] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.280438] pci 0000:00:1e.0: bridge window [mem 0x40000000-0xf7ffffff] (subtractive decode)
    [ 0.280445] pci 0000:00:1e.0: bridge window [io 0x0d00-0xfdff] (subtractive decode)
    [ 0.280451] pci 0000:00:1e.0: bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
    [ 0.280490] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.280660] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    [ 0.280757] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
    [ 0.280849] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
    [ 0.280941] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    [ 0.281235] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110316/dsfield-143)
    [ 0.281497] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node ffff88003d1b1a50), AE_ALREADY_EXISTS (20110316/psparse-536)
    [ 0.281828] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.282049] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110316/dsfield-143)
    [ 0.282310] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node ffff88003d1b1a50), AE_ALREADY_EXISTS (20110316/psparse-536)
    [ 0.282632] Unable to assume _OSC PCIe control. Disabling ASPM
    [ 0.297275] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.297984] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 6 7 10 11 12 14 15)
    [ 0.298679] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
    [ 0.299375] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.300108] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.300923] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.301740] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    [ 0.302444] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.303298] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.303339] vgaarb: loaded
    [ 0.303656] PCI: Using ACPI for IRQ routing
    [ 0.303746] PCI: pci_cache_line_size set to 64 bytes
    [ 0.303778] pci 0000:00:1b.0: address space collision: [mem 0xf0500000-0xf0503fff 64bit] conflicts with PCI Bus 0000:03 [mem 0xf0500000-0xf05fffff 64bit pref]
    [ 0.303990] pci 0000:00:1d.7: address space collision: [mem 0xf0504000-0xf05043ff] conflicts with PCI Bus 0000:03 [mem 0xf0500000-0xf05fffff 64bit pref]
    [ 0.304159] pci 0000:00:1f.2: address space collision: [mem 0xf0504400-0xf05047ff] conflicts with PCI Bus 0000:03 [mem 0xf0500000-0xf05fffff 64bit pref]
    [ 0.304389] reserve RAM buffer: 000000000009dc00 - 000000000009ffff
    [ 0.304395] reserve RAM buffer: 000000003f5c0000 - 000000003fffffff
    [ 0.304709] NetLabel: Initializing
    [ 0.304793] NetLabel: domain hash size = 128
    [ 0.304878] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.304991] NetLabel: unlabeled traffic allowed by default
    [ 0.305112] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.305216] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.305468] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.316700] Switching to clocksource hpet
    [ 0.319651] Switched to NOHz mode on CPU #0
    [ 0.319806] Switched to NOHz mode on CPU #1
    [ 0.333572] pnp: PnP ACPI init
    [ 0.333697] ACPI: bus type pnp registered
    [ 0.335270] pnp 00:00: [bus 00-3f]
    [ 0.335277] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.335283] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.335289] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.335295] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.335301] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.335307] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.335312] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.335318] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.335324] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.335329] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.335335] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.335341] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.335346] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.335352] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.335358] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.335363] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.335369] pnp 00:00: [mem 0x40000000-0xf7ffffff window]
    [ 0.335375] pnp 00:00: [io 0x0d00-0xfdff window]
    [ 0.335381] pnp 00:00: [mem 0x00000000 window]
    [ 0.335386] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 0.335514] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.335756] pnp 00:01: [io 0x0010-0x001f]
    [ 0.335763] pnp 00:01: [io 0x0024-0x0025]
    [ 0.335768] pnp 00:01: [io 0x0028-0x0029]
    [ 0.335773] pnp 00:01: [io 0x002c-0x002d]
    [ 0.335778] pnp 00:01: [io 0x0030-0x0031]
    [ 0.335783] pnp 00:01: [io 0x0034-0x0035]
    [ 0.335788] pnp 00:01: [io 0x0038-0x0039]
    [ 0.335793] pnp 00:01: [io 0x003c-0x003d]
    [ 0.335798] pnp 00:01: [io 0x0072-0x0077]
    [ 0.335803] pnp 00:01: [io 0x0080]
    [ 0.335808] pnp 00:01: [io 0x0090-0x009f]
    [ 0.335813] pnp 00:01: [io 0x00a4-0x00a5]
    [ 0.335818] pnp 00:01: [io 0x00a8-0x00a9]
    [ 0.335823] pnp 00:01: [io 0x00ac-0x00ad]
    [ 0.335827] pnp 00:01: [io 0x00b0-0x00b5]
    [ 0.335832] pnp 00:01: [io 0x00b8-0x00b9]
    [ 0.335837] pnp 00:01: [io 0x00bc-0x00bd]
    [ 0.335842] pnp 00:01: [io 0x0800-0x080f]
    [ 0.335848] pnp 00:01: [io 0x1000-0x107f]
    [ 0.335853] pnp 00:01: [io 0x1180-0x11bf]
    [ 0.335858] pnp 00:01: [io 0x002e-0x002f]
    [ 0.335869] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.335874] pnp 00:01: [io 0xfe00]
    [ 0.335879] pnp 00:01: [io 0x0068-0x0077]
    [ 0.335884] pnp 00:01: [io 0x0200-0x020f]
    [ 0.335889] pnp 00:01: [mem 0xe0000000-0xefffffff]
    [ 0.335895] pnp 00:01: [mem 0xfed14000-0xfed17fff]
    [ 0.335900] pnp 00:01: [mem 0xf8000000-0xfbffffff]
    [ 0.335906] pnp 00:01: [mem 0xfef00000-0xfeffffff]
    [ 0.336082] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 0.336183] system 00:01: [io 0x1000-0x107f] has been reserved
    [ 0.336278] system 00:01: [io 0x1180-0x11bf] has been reserved
    [ 0.336373] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.336468] system 00:01: [io 0xfe00] has been reserved
    [ 0.336560] system 00:01: [io 0x0200-0x020f] has been reserved
    [ 0.336656] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.336798] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.336897] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.336996] system 00:01: [mem 0xfef00000-0xfeffffff] has been reserved
    [ 0.337098] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.337130] pnp 00:02: [io 0x0000-0x000f]
    [ 0.337136] pnp 00:02: [io 0x0081-0x008f]
    [ 0.337141] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.337147] pnp 00:02: [dma 4]
    [ 0.337215] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.337242] pnp 00:03: [io 0x00f0-0x00fe]
    [ 0.337263] pnp 00:03: [irq 13]
    [ 0.337336] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.337431] pnp 00:04: [io 0x0070-0x0071]
    [ 0.337445] pnp 00:04: [irq 8]
    [ 0.337513] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.338017] pnp 00:05: [io 0x03f8-0x03ff]
    [ 0.338032] pnp 00:05: [irq 4]
    [ 0.338239] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.338320] pnp 00:06: [io 0x0061]
    [ 0.338392] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.338454] pnp 00:07: [mem 0xfed40000-0xfed44fff]
    [ 0.338534] pnp 00:07: Plug and Play ACPI device, IDs WEC1000 PNP0c31 (active)
    [ 0.338562] pnp 00:08: [io 0x0060]
    [ 0.338567] pnp 00:08: [io 0x0064]
    [ 0.338581] pnp 00:08: [irq 1]
    [ 0.338653] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.338686] pnp 00:09: [irq 12]
    [ 0.338759] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active)
    [ 0.339063] pnp 00:0a: [mem 0xff800000-0xffffffff]
    [ 0.339151] pnp 00:0a: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.339574] pnp: PnP ACPI: found 11 devices
    [ 0.339666] ACPI: ACPI bus type pnp unregistered
    [ 0.349216] pci 0000:00:1c.1: BAR 14: assigned [mem 0x40000000-0x400fffff]
    [ 0.349328] pci 0000:00:1b.0: BAR 0: assigned [mem 0x40100000-0x40103fff 64bit]
    [ 0.349464] pci 0000:00:1b.0: BAR 0: set to [mem 0x40100000-0x40103fff 64bit] (PCI address [0x40100000-0x40103fff])
    [ 0.349606] pci 0000:00:1d.7: BAR 0: assigned [mem 0x40104000-0x401043ff]
    [ 0.349710] pci 0000:00:1d.7: BAR 0: set to [mem 0x40104000-0x401043ff] (PCI address [0x40104000-0x401043ff])
    [ 0.349849] pci 0000:00:1f.2: BAR 5: assigned [mem 0x40104400-0x401047ff]
    [ 0.349950] pci 0000:00:1f.2: BAR 5: set to [mem 0x40104400-0x401047ff] (PCI address [0x40104400-0x401047ff])
    [ 0.350115] pci 0000:00:1c.2: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.350248] pci 0000:00:1c.0: BAR 14: assigned [mem 0x40400000-0x405fffff]
    [ 0.350352] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.350483] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.350580] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.350673] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.350773] pci 0000:00:1c.0: bridge window [mem 0x40400000-0x405fffff]
    [ 0.350874] pci 0000:00:1c.0: bridge window [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.351009] pci 0000:03:00.0: BAR 6: assigned [mem 0xf0540000-0xf055ffff pref]
    [ 0.351133] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
    [ 0.351225] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    [ 0.351324] pci 0000:00:1c.1: bridge window [mem 0x40000000-0x400fffff]
    [ 0.351425] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff 64bit pref]
    [ 0.351558] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
    [ 0.351649] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.351749] pci 0000:00:1c.2: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.351850] pci 0000:00:1c.2: bridge window [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.351981] pci 0000:00:1e.0: PCI bridge to [bus 11-11]
    [ 0.352070] pci 0000:00:1e.0: bridge window [io disabled]
    [ 0.352164] pci 0000:00:1e.0: bridge window [mem disabled]
    [ 0.352258] pci 0000:00:1e.0: bridge window [mem pref disabled]
    [ 0.352370] pci 0000:00:1c.0: enabling device (0000 -> 0003)
    [ 0.352482] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.352586] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.352607] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.352709] pci 0000:00:1c.1: setting latency timer to 64
    [ 0.352728] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.352830] pci 0000:00:1c.2: setting latency timer to 64
    [ 0.352844] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.352853] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.352859] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.352865] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff]
    [ 0.352871] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.352877] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.352883] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
    [ 0.352890] pci_bus 0000:00: resource 10 [mem 0x40000000-0xf7ffffff]
    [ 0.352896] pci_bus 0000:00: resource 11 [io 0x0d00-0xfdff]
    [ 0.352902] pci_bus 0000:00: resource 12 [mem 0xfed40000-0xfed44fff]
    [ 0.352908] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 0.352914] pci_bus 0000:02: resource 1 [mem 0x40400000-0x405fffff]
    [ 0.352921] pci_bus 0000:02: resource 2 [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.352927] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    [ 0.352933] pci_bus 0000:03: resource 1 [mem 0x40000000-0x400fffff]
    [ 0.352940] pci_bus 0000:03: resource 2 [mem 0xf0500000-0xf05fffff 64bit pref]
    [ 0.352946] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.352952] pci_bus 0000:04: resource 1 [mem 0xf0100000-0xf01fffff]
    [ 0.352959] pci_bus 0000:04: resource 2 [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.352966] pci_bus 0000:11: resource 4 [io 0x0000-0x0cf7]
    [ 0.352972] pci_bus 0000:11: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.352978] pci_bus 0000:11: resource 6 [mem 0x000d0000-0x000d3fff]
    [ 0.352984] pci_bus 0000:11: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.352990] pci_bus 0000:11: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.352996] pci_bus 0000:11: resource 9 [mem 0x000e0000-0x000e3fff]
    [ 0.353002] pci_bus 0000:11: resource 10 [mem 0x40000000-0xf7ffffff]
    [ 0.353009] pci_bus 0000:11: resource 11 [io 0x0d00-0xfdff]
    [ 0.353015] pci_bus 0000:11: resource 12 [mem 0xfed40000-0xfed44fff]
    [ 0.353230] NET: Registered protocol family 2
    [ 0.353666] IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.354759] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    [ 0.356562] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.357461] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.357565] TCP reno registered
    [ 0.357677] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.357790] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.358526] NET: Registered protocol family 1
    [ 0.358655] pci 0000:00:02.0: Boot video device
    [ 0.358843] PCI: CLS 32 bytes, default 64
    [ 0.358970] Unpacking initramfs...
    [ 0.422600] Freeing initrd memory: 1980k freed
    [ 0.424221] Simple Boot Flag at 0x36 set to 0x1
    [ 0.425202] audit: initializing netlink socket (disabled)
    [ 0.425328] type=2000 audit(1312465475.423:1): initialized
    [ 0.426137] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.431274] VFS: Disk quotas dquot_6.5.2
    [ 0.431768] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.432308] msgmni has been set to 1979
    [ 0.433016] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.433243] io scheduler noop registered
    [ 0.433398] io scheduler deadline registered
    [ 0.433626] io scheduler cfq registered (default)
    [ 0.433955] pcieport 0000:00:1c.0: setting latency timer to 64
    [ 0.434029] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.434158] pcieport 0000:00:1c.1: setting latency timer to 64
    [ 0.434222] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.434347] pcieport 0000:00:1c.2: setting latency timer to 64
    [ 0.434410] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
    [ 0.434777] intel_idle: MWAIT substates: 0x20220
    [ 0.434799] intel_idle: v0.4 model 0x1C
    [ 0.434803] intel_idle: lapic_timer_reliable_states 0x2
    [ 0.434847] Marking TSC unstable due to TSC halts in idle states deeper than C2
    [ 0.435010] ERST: Table is not found!
    [ 0.435250] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.456560] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.674724] 00:05: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.727052] Linux agpgart interface v0.103
    [ 0.727338] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
    [ 0.731303] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.734370] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.734541] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.734705] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.734863] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.735024] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.735354] mousedev: PS/2 mouse device common for all mice
    [ 0.753576] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.753717] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.753983] cpuidle: using governor ladder
    [ 0.754335] cpuidle: using governor menu
    [ 0.754959] TCP cubic registered
    [ 0.755047] NET: Registered protocol family 17
    [ 0.755152] Registering the dns_resolver key type
    [ 0.755524] PM: Hibernation image not present or could not be loaded.
    [ 0.755541] registered taskstats version 1
    [ 0.756395] rtc_cmos 00:04: setting system clock to 2011-08-04 13:44:36 UTC (1312465476)
    [ 0.756612] Initializing network drop monitor service
    [ 0.760092] Freeing unused kernel memory: 712k freed
    [ 0.760552] Write protecting the kernel read-only data: 6144k
    [ 0.761521] Freeing unused kernel memory: 60k freed
    [ 0.768916] Freeing unused kernel memory: 784k freed
    [ 0.773948] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.824947] udevd[74]: starting version 173
    [ 0.877923] SCSI subsystem initialized
    [ 0.935196] libata version 3.00 loaded.
    [ 0.956774] ahci 0000:00:1f.2: version 3.0
    [ 0.956824] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.957043] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.957186] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    [ 0.957352] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part
    [ 0.957485] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.964648] scsi0 : ahci
    [ 0.965831] scsi1 : ahci
    [ 0.966239] scsi2 : ahci
    [ 0.966607] scsi3 : ahci
    [ 0.967366] ata1: SATA max UDMA/133 abar m1024@0x40104400 port 0x40104500 irq 43
    [ 0.967524] ata2: SATA max UDMA/133 abar m1024@0x40104400 port 0x40104580 irq 43
    [ 0.967680] ata3: SATA max UDMA/133 abar m1024@0x40104400 port 0x40104600 irq 43
    [ 0.967831] ata4: SATA max UDMA/133 abar m1024@0x40104400 port 0x40104680 irq 43
    [ 1.286817] ata3: SATA link down (SStatus 0 SControl 300)
    [ 1.286986] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.287140] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.287285] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.296743] ata1.00: ATA-8: SAMSUNG HM250HI, 2AC101C4, max UDMA/133
    [ 1.296845] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.306650] ata1.00: configured for UDMA/133
    [ 1.307168] scsi 0:0:0:0: Direct-Access ATA SAMSUNG HM250HI 2AC1 PQ: 0 ANSI: 5
    [ 1.361599] usbcore: registered new interface driver usbfs
    [ 1.361788] usbcore: registered new interface driver hub
    [ 1.362029] usbcore: registered new device driver usb
    [ 1.362890] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 1.363254] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.363390] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.363491] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.371359] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.371567] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 1.371722] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 1.371734] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 1.371971] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    [ 1.393443] ehci_hcd 0000:00:1d.7: using broken periodic workaround
    [ 1.393567] ehci_hcd 0000:00:1d.7: debug port 1
    [ 1.397557] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    [ 1.397596] ehci_hcd 0000:00:1d.7: irq 23, io mem 0x40104000
    [ 1.410069] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.410565] hub 1-0:1.0: USB hub found
    [ 1.410687] hub 1-0:1.0: 8 ports detected
    [ 1.418573] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
    [ 1.420139] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.436350] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.436604] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 1.436912] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.436925] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.437083] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.450137] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
    [ 1.450657] hub 2-0:1.0: USB hub found
    [ 1.450776] hub 2-0:1.0: 2 ports detected
    [ 1.451206] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 1.451346] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.451358] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.451506] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 1.466851] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
    [ 1.467375] hub 3-0:1.0: USB hub found
    [ 1.467491] hub 3-0:1.0: 2 ports detected
    [ 1.467949] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.468100] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.468111] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.468263] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 1.476847] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
    [ 1.477389] hub 4-0:1.0: USB hub found
    [ 1.477506] hub 4-0:1.0: 2 ports detected
    [ 1.477926] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    [ 1.478068] uhci_hcd 0000:00:1d.3: setting latency timer to 64
    [ 1.478080] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 1.478233] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 1.486815] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
    [ 1.487337] hub 5-0:1.0: USB hub found
    [ 1.487454] hub 5-0:1.0: 2 ports detected
    [ 1.720183] usb 1-4: new high speed USB device number 2 using ehci_hcd
    [ 2.310090] usb 1-7: new high speed USB device number 3 using ehci_hcd
    [ 3.346515] EXT4-fs (sda2): INFO: recovery required on readonly filesystem
    [ 3.346624] EXT4-fs (sda2): write access will be enabled during recovery
    [ 3.481722] EXT4-fs (sda2): orphan cleanup on readonly fs
    [ 3.481844] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1572970
    [ 3.481970] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1572968
    [ 3.482041] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 923116
    [ 3.482090] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 1572948
    [ 3.482130] EXT4-fs (sda2): 4 orphan inodes deleted
    [ 3.482225] EXT4-fs (sda2): recovery complete
    [ 4.287281] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.547177] udevd[278]: starting version 173
    [ 5.875278] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 5.875984] ACPI: AC Adapter [AC0] (off-line)
    [ 5.881017] ACPI: acpi_idle yielding to intel_idle
    [ 5.888339] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/PNP0C0D:00/input/input1
    [ 5.939985] ACPI: Lid Switch [LID]
    [ 5.940983] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/PNP0C0C:00/input/input2
    [ 5.941147] ACPI: Power Button [PWRB]
    [ 5.941583] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 5.941763] ACPI: Sleep Button [SLPB]
    [ 5.942546] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.942697] ACPI: Power Button [PWRF]
    [ 5.943413] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.943529] ACPI: Thermal Zone [TZ01] (24 C)
    [ 5.972400] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 5.972588] ACPI: Battery Slot [BAT1] (battery present)
    [ 5.995124] agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
    [ 5.995453] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    [ 5.995846] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 5.999895] iTCO_vendor_support: vendor-support=0
    [ 6.012373] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 6.124751] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 6.125083] iTCO_wdt: Found a NM10 TCO device (Version=2, TCOBASE=0x1060)
    [ 6.125348] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 6.190412] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 6.194157] tpm_tis 00:07: 1.2 TPM (device-id 0xFE, rev-id 70)
    [ 6.215082] Initializing USB Mass Storage driver...
    [ 6.215469] usbcore: registered new interface driver usb-storage
    [ 6.215586] USB Mass Storage support registered.
    [ 6.267697] usb 1-7: USB disconnect, device number 3
    [ 6.269402] Linux media interface: v0.10
    [ 6.271745] scsi4 : usb-storage 1-7:1.0
    [ 6.278594] usbcore: registered new interface driver ums-realtek
    [ 6.324583] usbcore: registered new interface driver uas
    [ 6.361274] Linux video capture interface: v2.00
    [ 6.416800] uvcvideo: Found UVC 1.00 device USB Camera (5986:02a8)
    [ 6.435626] input: USB Camera as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4:1.0/input/input5
    [ 6.435979] usbcore: registered new interface driver uvcvideo
    [ 6.436094] USB Video Class driver (v1.0.0)
    [ 6.516768] [drm] Initialized drm 1.1.0 20060810
    [ 6.632026] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 6.657529] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 6.657663] i915 0000:00:02.0: setting latency timer to 64
    [ 6.729787] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 6.729799] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 6.729904] [drm] Driver supports precise vblank timestamp query.
    [ 6.805456] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 6.805960] [drm] initialized overlay support
    [ 6.965295] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000
    [ 7.013599] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input6
    [ 7.142190] fbcon: inteldrmfb (fb0) is primary device
    [ 7.190534] Console: switching to colour frame buffer device 128x37
    [ 7.197352] fb0: inteldrmfb frame buffer device
    [ 7.197461] drm: registered panic notifier
    [ 7.197660] ACPI Exception: AE_NOT_FOUND, Evaluating _DOD (20110316/video-1148)
    [ 7.198144] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
    [ 7.198602] ACPI: Video Device [IGD0] (multi-head: yes rom: no post: no)
    [ 7.199927] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 8.736636] EXT4-fs (sda2): re-mounted. Opts: (null)
    [ 8.833668] EXT3-fs: barriers not enabled
    [ 8.856596] kjournald starting. Commit interval 5 seconds
    [ 8.859646] EXT3-fs (sda4): using internal journal
    [ 8.862624] EXT3-fs (sda4): mounted filesystem with ordered data mode
    [ 9.026943] Adding 2096444k swap on /dev/sda6. Priority:-1 extents:1 across:2096444k
    [ 18.281512] NET: Registered protocol family 10
    [ 21.591928] EXT4-fs (sda2): re-mounted. Opts: commit=600
    [ 35.750474] fuse init (API version 7.16)
    [ 201.029607] PPP generic driver version 2.4.2
    [ 3255.955029] EXT4-fs (sda2): re-mounted. Opts: commit=0
    [10041.892469] usb 1-1: new high speed USB device number 4 using ehci_hcd
    [10042.021338] scsi5 : usb-storage 1-1:1.0
    [10043.026686] scsi 5:0:0:0: Direct-Access TOSHIBA MK1234GSX PQ: 0 ANSI: 2
    [10043.031863] sd 5:0:0:0: Attached scsi generic sg1 type 0
    [10043.036190] sd 5:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    [10043.041825] sd 5:0:0:0: [sdb] Write Protect is off
    [10043.045147] sd 5:0:0:0: [sdb] Mode Sense: 38 00 00 00
    [10043.045157] sd 5:0:0:0: [sdb] Assuming drive cache: write through
    [10043.052676] sd 5:0:0:0: [sdb] Assuming drive cache: write through
    [10043.064806] sdb: sdb1
    [10043.071939] sd 5:0:0:0: [sdb] Assuming drive cache: write through
    [10043.075091] sd 5:0:0:0: [sdb] Attached SCSI disk
    [10089.898154] EXT3-fs (sdb): error: can't find ext3 filesystem on dev sdb.
    [10089.913066] EXT4-fs (sdb): VFS: Can't find ext4 filesystem
    [10089.936439] FAT: invalid media value (0xb9)
    [10089.939320] VFS: Can't find a valid FAT filesystem on dev sdb.
    EDIT: ls -l /etc/modprobe.d
    total 16
    -rw-r--r-- 1 root root 30 Ago 4 04:57 blacklist_net.conf
    -rw-r--r-- 1 root root 182 Ago 4 04:57 blacklist_sound.conf
    -rw-r--r-- 1 root root 55 Jun 25 15:30 modprobe.conf
    -rw-r--r-- 1 root root 196 Abr 8 11:08 usb-load-ehci-first.conf
    Thanks in advance for any help.
    Last edited by JohnTH (2011-08-04 16:31:18)

    The kernel outputs many error messages when I start NetwrokManager, and persists even when I stop it
    Here is part of a dmesg:
    [ 587.134444] rtl8192_SetWirelessMode(), wireless_mode:10, bEnableHT = 1
    [ 587.135365] InitializeAdapter8192SE(): Set MRC settings on as default!!
    [ 587.136337] HW_VAR_MRC: Turn on 1T1R MRC!
    [ 587.553458] pwrdown, 0x6(BIT6)=f1
    [ 589.566485] pwrdown, 0x6(BIT6)=f1
    [ 591.573163] pwrdown, 0x6(BIT6)=f1
    [ 593.579828] pwrdown, 0x6(BIT6)=f1
    [ 595.586517] pwrdown, 0x6(BIT6)=f1
    [ 597.593183] pwrdown, 0x6(BIT6)=f1
    [ 599.599777] pwrdown, 0x6(BIT6)=f1
    [ 601.606490] pwrdown, 0x6(BIT6)=f1
    [ 603.613185] pwrdown, 0x6(BIT6)=f1
    [ 605.619843] pwrdown, 0x6(BIT6)=f1
    [ 607.626506] pwrdown, 0x6(BIT6)=f1
    [ 609.633150] pwrdown, 0x6(BIT6)=f1
    [ 611.639785] pwrdown, 0x6(BIT6)=f1
    [ 613.646491] pwrdown, 0x6(BIT6)=f1
    [ 615.653171] pwrdown, 0x6(BIT6)=f1
    [ 617.659839] pwrdown, 0x6(BIT6)=f1
    [ 619.666513] pwrdown, 0x6(BIT6)=f1
    [ 621.673175] pwrdown, 0x6(BIT6)=f1
    [ 623.679774] pwrdown, 0x6(BIT6)=f1
    [ 625.686507] pwrdown, 0x6(BIT6)=f1
    [ 627.693176] pwrdown, 0x6(BIT6)=f1
    [ 629.699826] pwrdown, 0x6(BIT6)=f1
    [ 631.706480] pwrdown, 0x6(BIT6)=f1
    [ 633.713169] pwrdown, 0x6(BIT6)=f1
    [ 635.719785] pwrdown, 0x6(BIT6)=f1
    [ 637.726499] pwrdown, 0x6(BIT6)=f1
    [ 639.733146] pwrdown, 0x6(BIT6)=f1
    [ 641.739824] pwrdown, 0x6(BIT6)=f1
    [ 643.746489] pwrdown, 0x6(BIT6)=f1
    [ 645.753149] pwrdown, 0x6(BIT6)=f1
    [ 647.010241] pwrdown, 0x6(BIT6)=f1
    [ 647.135295] rtl8192_SetWirelessMode(), wireless_mode:10, bEnableHT = 1
    [ 647.136216] InitializeAdapter8192SE(): Set MRC settings on as default!!
    [ 647.137240] HW_VAR_MRC: Turn on 1T1R MRC!
    [ 647.753447] pwrdown, 0x6(BIT6)=f1
    [ 649.766491] pwrdown, 0x6(BIT6)=f1
    [ 651.773160] pwrdown, 0x6(BIT6)=f1
    [ 653.779830] pwrdown, 0x6(BIT6)=f1
    Can somebody help me?

  • [SOLVED?] Problem with nVidia card

    This is my first post, so; hello to everyone!! Thx in advance to this great community!!
    My problem is pretty strange and anoying. I have an nVidia 8600GT in a Abit AX78 MB running Arch with KDE. Anything is going right until logon process. I write the user and password in KDM screen and then, after de animation of init proces of KDE, all graphics displayed are corrupted (a rectangle in the upper left corner is showed) and that's it. Only work the mouse pointer.
    This malfunction its showed by the nouveau driver AND the proprietary driver... So i think the problem is it in other place than the driver of the card.
    The Xorg.0.log and dmesg.log files are atached at the end of this thread.
    I hope that annyone can help me.
    Thx in advance again.
    The Xorg.0.log file contains this:
    [ 15.809]
    X.Org X Server 1.10.3
    Release Date: 2011-07-08
    [ 15.814] X Protocol Version 11, Revision 0
    [ 15.814] Build Operating System: Linux 2.6.39-ARCH i686
    [ 15.814] Current Operating System: Linux hidramedia_host 2.6.39-ARCH #1 SMP PREEMPT Sat Jul 9 15:31:04 CEST 2011 i686
    [ 15.815] Kernel command line: root=/dev/sda5 ro
    [ 15.815] Build Date: 09 July 2011 07:57:07AM
    [ 15.815]
    [ 15.815] Current version of pixman: 0.22.2
    [ 15.815] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 15.815] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 15.815] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Aug 1 14:13:23 2011
    [ 15.829] (==) Using config file: "/etc/X11/xorg.conf"
    [ 15.829] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 15.835] (==) ServerLayout "Layout0"
    [ 15.835] (**) |-->Screen "Screen0" (0)
    [ 15.835] (**) | |-->Monitor "Monitor0"
    [ 15.836] (**) | |-->Device "Device0"
    [ 15.836] (**) |-->Input Device "Keyboard0"
    [ 15.836] (**) |-->Input Device "Mouse0"
    [ 15.836] (==) Automatically adding devices
    [ 15.836] (==) Automatically enabling devices
    [ 15.859] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 15.859] Entry deleted from font path.
    [ 15.859] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 15.859] Entry deleted from font path.
    [ 15.859] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 15.859] Entry deleted from font path.
    [ 15.859] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 15.859] Entry deleted from font path.
    [ 15.859] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 15.859] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 15.859] Entry deleted from font path.
    [ 15.859] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 15.859] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 15.859] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 15.859] (**) Extension "Composite" is disabled
    [ 15.859] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 15.859] (WW) Disabling Keyboard0
    [ 15.859] (WW) Disabling Mouse0
    [ 15.859] (II) Loader magic: 0x822e1a0
    [ 15.859] (II) Module ABI versions:
    [ 15.859] X.Org ANSI C Emulation: 0.4
    [ 15.859] X.Org Video Driver: 10.0
    [ 15.859] X.Org XInput driver : 12.2
    [ 15.859] X.Org Server Extension : 5.0
    [ 15.860] (--) PCI:*(0:1:0:0) 10de:0402:0000:0000 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/131072
    [ 15.860] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 15.860] (II) LoadModule: "extmod"
    [ 15.871] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 15.880] (II) Module extmod: vendor="X.Org Foundation"
    [ 15.880] compiled for 1.10.3, module version = 1.0.0
    [ 15.880] Module class: X.Org Server Extension
    [ 15.880] ABI class: X.Org Server Extension, version 5.0
    [ 15.880] (II) Loading extension MIT-SCREEN-SAVER
    [ 15.880] (II) Loading extension XFree86-VidModeExtension
    [ 15.880] (II) Loading extension XFree86-DGA
    [ 15.880] (II) Loading extension DPMS
    [ 15.880] (II) Loading extension XVideo
    [ 15.880] (II) Loading extension XVideo-MotionCompensation
    [ 15.880] (II) Loading extension X-Resource
    [ 15.880] (II) LoadModule: "dbe"
    [ 15.880] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 15.881] (II) Module dbe: vendor="X.Org Foundation"
    [ 15.881] compiled for 1.10.3, module version = 1.0.0
    [ 15.881] Module class: X.Org Server Extension
    [ 15.881] ABI class: X.Org Server Extension, version 5.0
    [ 15.881] (II) Loading extension DOUBLE-BUFFER
    [ 15.881] (II) LoadModule: "glx"
    [ 15.881] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 16.640] (II) Module glx: vendor="NVIDIA Corporation"
    [ 16.640] compiled for 4.0.2, module version = 1.0.0
    [ 16.640] Module class: X.Org Server Extension
    [ 16.640] (II) NVIDIA GLX Module 275.21 Mon Jul 18 14:55:52 PDT 2011
    [ 16.640] (II) Loading extension GLX
    [ 16.640] (II) LoadModule: "record"
    [ 16.641] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 16.645] (II) Module record: vendor="X.Org Foundation"
    [ 16.645] compiled for 1.10.3, module version = 1.13.0
    [ 16.645] Module class: X.Org Server Extension
    [ 16.645] ABI class: X.Org Server Extension, version 5.0
    [ 16.645] (II) Loading extension RECORD
    [ 16.645] (II) LoadModule: "dri"
    [ 16.645] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 16.661] (II) Module dri: vendor="X.Org Foundation"
    [ 16.661] compiled for 1.10.3, module version = 1.0.0
    [ 16.661] ABI class: X.Org Server Extension, version 5.0
    [ 16.661] (II) Loading extension XFree86-DRI
    [ 16.661] (II) LoadModule: "dri2"
    [ 16.661] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 16.662] (II) Module dri2: vendor="X.Org Foundation"
    [ 16.662] compiled for 1.10.3, module version = 1.2.0
    [ 16.662] ABI class: X.Org Server Extension, version 5.0
    [ 16.662] (II) Loading extension DRI2
    [ 16.662] (II) LoadModule: "nvidia"
    [ 16.662] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 16.709] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 16.709] compiled for 4.0.2, module version = 1.0.0
    [ 16.709] Module class: X.Org Video Driver
    [ 16.732] (II) NVIDIA dlloader X Driver 275.21 Mon Jul 18 14:38:30 PDT 2011
    [ 16.737] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 16.740] (++) using VT number 7
    [ 16.751] (II) Loading sub module "fb"
    [ 16.751] (II) LoadModule: "fb"
    [ 16.751] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 16.762] (II) Module fb: vendor="X.Org Foundation"
    [ 16.762] compiled for 1.10.3, module version = 1.0.0
    [ 16.762] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.762] (II) Loading sub module "wfb"
    [ 16.762] (II) LoadModule: "wfb"
    [ 16.763] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 16.769] (II) Module wfb: vendor="X.Org Foundation"
    [ 16.769] compiled for 1.10.3, module version = 1.0.0
    [ 16.769] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 16.769] (II) Loading sub module "ramdac"
    [ 16.769] (II) LoadModule: "ramdac"
    [ 16.769] (II) Module "ramdac" already built-in
    [ 16.771] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 16.771] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 16.771] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 16.780] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 16.780] (==) NVIDIA(0): RGB weight 888
    [ 16.780] (==) NVIDIA(0): Default visual is TrueColor
    [ 16.780] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 17.785] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (CRT-0)) does not support NVIDIA
    [ 17.785] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 17.789] (II) NVIDIA(0): NVIDIA GPU GeForce 8600 GT (G84) at PCI:1:0:0 (GPU-0)
    [ 17.789] (--) NVIDIA(0): Memory: 262144 kBytes
    [ 17.789] (--) NVIDIA(0): VideoBIOS: 60.84.35.00.00
    [ 17.789] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 17.789] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 17.789] (--) NVIDIA(0): Connected display device(s) on GeForce 8600 GT at PCI:1:0:0
    [ 17.789] (--) NVIDIA(0): Samsung SyncMaster (CRT-0)
    [ 17.789] (--) NVIDIA(0): Samsung SyncMaster (CRT-0): 400.0 MHz maximum pixel clock
    [ 17.859] (II) NVIDIA(0): Assigned Display Device: CRT-0
    [ 17.859] (==) NVIDIA(0):
    [ 17.859] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 17.859] (==) NVIDIA(0): will be used as the requested mode.
    [ 17.859] (==) NVIDIA(0):
    [ 17.859] (II) NVIDIA(0): Validated modes:
    [ 17.859] (II) NVIDIA(0): "nvidia-auto-select"
    [ 17.859] (II) NVIDIA(0): Virtual screen size determined to be 800 x 600
    [ 17.900] (--) NVIDIA(0): DPI set to (72, 72); computed from "UseEdidDpi" X config
    [ 17.900] (--) NVIDIA(0): option
    [ 17.900] (--) Depth 24 pixmap format is 32 bpp
    [ 17.901] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 17.905] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 17.905] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 17.905] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 17.905] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 17.905] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 17.905] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 17.905] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 17.905] (II) NVIDIA(0): Config Options in the README.
    [ 17.908] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 17.946] (II) Loading extension NV-GLX
    [ 18.001] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 18.002] (==) NVIDIA(0): Backing store disabled
    [ 18.002] (==) NVIDIA(0): Silken mouse enabled
    [ 18.002] (**) NVIDIA(0): DPMS enabled
    [ 18.002] (II) Loading extension NV-CONTROL
    [ 18.003] (II) Loading extension XINERAMA
    [ 18.003] (II) Loading sub module "dri2"
    [ 18.003] (II) LoadModule: "dri2"
    [ 18.003] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 18.003] (II) Module dri2: vendor="X.Org Foundation"
    [ 18.003] compiled for 1.10.3, module version = 1.2.0
    [ 18.003] ABI class: X.Org Server Extension, version 5.0
    [ 18.003] (II) NVIDIA(0): [DRI2] Setup complete
    [ 18.003] (==) RandR enabled
    [ 18.003] (II) Initializing built-in extension Generic Event Extension
    [ 18.003] (II) Initializing built-in extension SHAPE
    [ 18.003] (II) Initializing built-in extension MIT-SHM
    [ 18.003] (II) Initializing built-in extension XInputExtension
    [ 18.003] (II) Initializing built-in extension XTEST
    [ 18.003] (II) Initializing built-in extension BIG-REQUESTS
    [ 18.003] (II) Initializing built-in extension SYNC
    [ 18.003] (II) Initializing built-in extension XKEYBOARD
    [ 18.003] (II) Initializing built-in extension XC-MISC
    [ 18.003] (II) Initializing built-in extension SECURITY
    [ 18.003] (II) Initializing built-in extension XINERAMA
    [ 18.003] (II) Initializing built-in extension XFIXES
    [ 18.003] (II) Initializing built-in extension RENDER
    [ 18.003] (II) Initializing built-in extension RANDR
    [ 18.003] (II) Initializing built-in extension COMPOSITE
    [ 18.003] (II) Initializing built-in extension DAMAGE
    [ 18.005] (II) Initializing extension GLX
    [ 18.213] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 18.213] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 18.213] (II) LoadModule: "evdev"
    [ 18.213] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.214] (II) Module evdev: vendor="X.Org Foundation"
    [ 18.214] compiled for 1.10.0, module version = 2.6.0
    [ 18.214] Module class: X.Org XInput Driver
    [ 18.214] ABI class: X.Org XInput driver, version 12.2
    [ 18.214] (II) Using input driver 'evdev' for 'Power Button'
    [ 18.214] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.214] (**) Power Button: always reports core events
    [ 18.214] (**) Power Button: Device: "/dev/input/event3"
    [ 18.226] (--) Power Button: Found keys
    [ 18.226] (II) Power Button: Configuring as keyboard
    [ 18.226] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 18.226] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 18.226] (**) Option "xkb_rules" "evdev"
    [ 18.226] (**) Option "xkb_model" "evdev"
    [ 18.226] (**) Option "xkb_layout" "us"
    [ 18.252] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 18.252] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 18.252] (II) Using input driver 'evdev' for 'Power Button'
    [ 18.252] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.252] (**) Power Button: always reports core events
    [ 18.252] (**) Power Button: Device: "/dev/input/event2"
    [ 18.266] (--) Power Button: Found keys
    [ 18.266] (II) Power Button: Configuring as keyboard
    [ 18.266] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 18.266] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 18.266] (**) Option "xkb_rules" "evdev"
    [ 18.266] (**) Option "xkb_model" "evdev"
    [ 18.266] (**) Option "xkb_layout" "us"
    [ 18.271] (II) config/udev: Adding input device Primax Electronics Wireless Mouse (/dev/input/event1)
    [ 18.271] (**) Primax Electronics Wireless Mouse: Applying InputClass "evdev pointer catchall"
    [ 18.271] (II) Using input driver 'evdev' for 'Primax Electronics Wireless Mouse'
    [ 18.271] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.271] (**) Primax Electronics Wireless Mouse: always reports core events
    [ 18.271] (**) Primax Electronics Wireless Mouse: Device: "/dev/input/event1"
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found 3 mouse buttons
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found scroll wheel(s)
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found relative axes
    [ 18.283] (--) Primax Electronics Wireless Mouse: Found x and y relative axes
    [ 18.283] (II) Primax Electronics Wireless Mouse: Configuring as mouse
    [ 18.283] (II) Primax Electronics Wireless Mouse: Adding scrollwheel support
    [ 18.283] (**) Primax Electronics Wireless Mouse: YAxisMapping: buttons 4 and 5
    [ 18.283] (**) Primax Electronics Wireless Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 18.283] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.4/usb6/6-2/6-2:1.0/input/input1/event1"
    [ 18.283] (II) XINPUT: Adding extended input device "Primax Electronics Wireless Mouse" (type: MOUSE)
    [ 18.283] (II) Primax Electronics Wireless Mouse: initialized for relative axes.
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) keeping acceleration scheme 1
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) acceleration profile 0
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) acceleration factor: 2.000
    [ 18.283] (**) Primax Electronics Wireless Mouse: (accel) acceleration threshold: 4
    [ 18.283] (II) config/udev: Adding input device Primax Electronics Wireless Mouse (/dev/input/mouse0)
    [ 18.283] (II) No input driver/identifier specified (ignoring)
    [ 18.285] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 18.285] (II) No input driver/identifier specified (ignoring)
    [ 18.285] (II) config/udev: Adding input device HDA ATI SB Headphone (/dev/input/event6)
    [ 18.285] (II) No input driver/identifier specified (ignoring)
    [ 18.286] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 18.286] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 18.286] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 18.286] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 18.286] (**) AT Translated Set 2 keyboard: always reports core events
    [ 18.286] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 18.300] (--) AT Translated Set 2 keyboard: Found keys
    [ 18.300] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 18.300] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 18.300] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 18.300] (**) Option "xkb_rules" "evdev"
    [ 18.300] (**) Option "xkb_model" "evdev"
    [ 18.300] (**) Option "xkb_layout" "us"
    [ 18.300] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 18.300] (II) No input driver/identifier specified (ignoring)
    [ 1563.531] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 1563.587] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 1563.587] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 1563.587] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 1563.587] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 1563.587] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 1563.587] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 1563.587] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 1563.587] (II) NVIDIA(0): Config Options in the README.
    And the dmesg.log file contains this:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (thomas@evey) (gcc version 4.6.1 (GCC) ) #1 SMP PREEMPT Sat Jul 9 15:31:04 CEST 2011
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
    [ 0.000000] BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000007fff0000 (usable)
    [ 0.000000] BIOS-e820: 000000007fff0000 - 000000007fff3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007fff3000 - 0000000080000000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] DMI 2.5 present.
    [ 0.000000] DMI: . ./AX78(AMD770+SB600), BIOS 6.00 PG 01/17/2008
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0x7fff0 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-C7FFF write-protect
    [ 0.000000] C8000-CFFFF uncachable
    [ 0.000000] D0000-D3FFF write-back
    [ 0.000000] D4000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FF80000000 write-back
    [ 0.000000] 1 disabled
    [ 0.000000] 2 disabled
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [c00f41f0] f41f0
    [ 0.000000] initial memory mapped : 0 - 01c00000
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 0000400000 page 4k
    [ 0.000000] 0000400000 - 0037400000 page 2M
    [ 0.000000] 0037400000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
    [ 0.000000] RAMDISK: 7fdc9000 - 7ffe0000
    [ 0.000000] Allocated new RAMDISK: 375e7000 - 377fd792
    [ 0.000000] Move RAMDISK from 000000007fdc9000 - 000000007ffdf791 to 375e7000 - 377fd791
    [ 0.000000] ACPI: RSDP 000f81d0 00024 (v02 AMD770)
    [ 0.000000] ACPI: RSDT 7fff3000 00038 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP 7fff3080 00074 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT 7fff3100 051E2 (v01 AMD770 AWRDACPI 00001000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 7fff0000 00040
    [ 0.000000] ACPI: SSDT 7fff83c0 002CC (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    [ 0.000000] ACPI: HPET 7fff86c0 00038 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000098)
    [ 0.000000] ACPI: MCFG 7fff8700 0003C (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: APIC 7fff8300 00084 (v01 AMD770 AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 1159MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x0007fff0
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[2] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x0007fff0
    [ 0.000000] On node 0 totalpages: 524159
    [ 0.000000] free_area_init_node: node 0, pgdat c14a1980, node_mem_map f65e6200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 2320 pages used for memmap
    [ 0.000000] HighMem zone: 294626 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] Detected use of extended apic ids on hypertransport bus
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 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 (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 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: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 12 pages/cpu @f6000000 s27648 r0 d21504 u1048576
    [ 0.000000] pcpu-alloc: s27648 r0 d21504 u1048576 alloc=1*4194304
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 520063
    [ 0.000000] Kernel command line: root=/dev/sda5 ro
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 8388096 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0007fff0)
    [ 0.000000] Memory: 2062632k/2097088k available (3376k kernel code, 34004k reserved, 1390k data, 512k init, 1187784k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc14a8000 - 0xc1528000 ( 512 kB)
    [ 0.000000] .data : 0xc134c3bf - 0xc14a7c00 (1390 kB)
    [ 0.000000] .text : 0xc1000000 - 0xc134c3bf (3376 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:512
    [ 0.000000] CPU 0 irqstacks, hard=f540c000 soft=f540e000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration failed
    [ 0.000000] TSC: Unable to calibrate against PIT
    [ 0.000000] TSC: using HPET reference calibration
    [ 0.000000] Detected 2700.236 MHz processor.
    [ 0.000000] Marking TSC unstable due to TSCs unsynchronized
    [ 0.016736] Calibrating delay loop (skipped), value calculated using timer frequency.. 5402.49 BogoMIPS (lpj=9000786)
    [ 0.016870] pid_max: default: 32768 minimum: 301
    [ 0.016983] Security Framework initialized
    [ 0.017051] AppArmor: AppArmor disabled by boot time parameter
    [ 0.017144] Mount-cache hash table entries: 512
    [ 0.017404] Initializing cgroup subsys ns
    [ 0.017471] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.017549] Initializing cgroup subsys cpuacct
    [ 0.017625] Initializing cgroup subsys memory
    [ 0.017701] Initializing cgroup subsys devices
    [ 0.017767] Initializing cgroup subsys freezer
    [ 0.017833] Initializing cgroup subsys net_cls
    [ 0.017899] Initializing cgroup subsys blkio
    [ 0.017995] CPU: Physical Processor ID: 0
    [ 0.018060] CPU: Processor Core ID: 0
    [ 0.018126] mce: CPU supports 5 MCE banks
    [ 0.018199] using C1E aware idle routine
    [ 0.019127] ACPI: Core revision 20110316
    [ 0.023362] ftrace: allocating 15225 entries in 30 pages
    [ 0.026734] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.027332] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061631] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ stepping 02
    [ 0.063329] Performance Events: AMD PMU driver.
    [ 0.063329] ... version: 0
    [ 0.063329] ... bit width: 48
    [ 0.063329] ... generic registers: 4
    [ 0.063329] ... value mask: 0000ffffffffffff
    [ 0.063329] ... max period: 00007fffffffffff
    [ 0.063329] ... fixed-purpose events: 0
    [ 0.063329] ... event mask: 000000000000000f
    [ 0.080086] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.106674] CPU 1 irqstacks, hard=f54b4000 soft=f54b6000
    [ 0.106676] Booting Node 0, Processors #1
    [ 0.106783] smpboot cpu 1: start_ip = 9b000
    [ 0.019998] Initializing CPU#1
    [ 0.200085] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.206657] Brought up 2 CPUs
    [ 0.206721] Total of 2 processors activated (10805.88 BogoMIPS).
    [ 0.207206] devtmpfs: initialized
    [ 0.207206] PM: Registering ACPI NVS region at 7fff0000 (12288 bytes)
    [ 0.207649] print_constraints: dummy:
    [ 0.207764] NET: Registered protocol family 16
    [ 0.207919] node 0 link 0: io port [c000, ffff]
    [ 0.207922] TOM: 0000000080000000 aka 2048M
    [ 0.207987] node 0 link 0: mmio [a0000, bffff]
    [ 0.207990] node 0 link 0: mmio [80000000, dfffffff]
    [ 0.207992] node 0 link 0: mmio [f0000000, fe02ffff]
    [ 0.207995] node 0 link 0: mmio [e0000000, e03fffff]
    [ 0.207997] bus: [00, 03] on node 0 link 0
    [ 0.208000] bus: 00 index 0 [io 0x0000-0xffff]
    [ 0.208002] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
    [ 0.208003] bus: 00 index 2 [mem 0x80000000-0xefffffff]
    [ 0.208005] bus: 00 index 3 [mem 0xf0000000-0xffffffff]
    [ 0.208011] ACPI: bus type pci registered
    [ 0.208149] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.208227] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.208292] PCI: Using MMCONFIG for extended config space
    [ 0.208357] PCI: Using configuration type 1 for base access
    [ 0.208842] bio: create slab <bio-0> at 0
    [ 0.210574] ACPI: EC: Look up EC in DSDT
    [ 0.211181] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.214150] ACPI: Interpreter enabled
    [ 0.214220] ACPI: (supports S0 S3 S4 S5)
    [ 0.214501] ACPI: Using IOAPIC for interrupt routing
    [ 0.225790] ACPI: No dock devices found.
    [ 0.225854] HEST: Table not found.
    [ 0.225919] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.226037] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.226190] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.226257] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.226324] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.226399] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.226474] pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xffffffff]
    [ 0.226562] pci 0000:00:00.0: [1002:5957] type 0 class 0x000600
    [ 0.226576] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
    [ 0.226609] pci 0000:00:02.0: [1002:5978] type 1 class 0x000604
    [ 0.226636] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.226639] pci 0000:00:02.0: PME# disabled
    [ 0.226667] pci 0000:00:0a.0: [1002:597f] type 1 class 0x000604
    [ 0.226693] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.226696] pci 0000:00:0a.0: PME# disabled
    [ 0.226723] pci 0000:00:12.0: [1002:4380] type 0 class 0x000106
    [ 0.226742] pci 0000:00:12.0: reg 10: [io 0xff00-0xff07]
    [ 0.226752] pci 0000:00:12.0: reg 14: [io 0xfe00-0xfe03]
    [ 0.226763] pci 0000:00:12.0: reg 18: [io 0xfd00-0xfd07]
    [ 0.226773] pci 0000:00:12.0: reg 1c: [io 0xfc00-0xfc03]
    [ 0.226784] pci 0000:00:12.0: reg 20: [io 0xfb00-0xfb0f]
    [ 0.226794] pci 0000:00:12.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
    [ 0.226836] pci 0000:00:13.0: [1002:4387] type 0 class 0x000c03
    [ 0.226851] pci 0000:00:13.0: reg 10: [mem 0xfe02e000-0xfe02efff]
    [ 0.226919] pci 0000:00:13.1: [1002:4388] type 0 class 0x000c03
    [ 0.226933] pci 0000:00:13.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
    [ 0.227002] pci 0000:00:13.2: [1002:4389] type 0 class 0x000c03
    [ 0.227016] pci 0000:00:13.2: reg 10: [mem 0xfe02c000-0xfe02cfff]
    [ 0.227084] pci 0000:00:13.3: [1002:438a] type 0 class 0x000c03
    [ 0.227099] pci 0000:00:13.3: reg 10: [mem 0xfe02b000-0xfe02bfff]
    [ 0.227166] pci 0000:00:13.4: [1002:438b] type 0 class 0x000c03
    [ 0.227181] pci 0000:00:13.4: reg 10: [mem 0xfe02a000-0xfe02afff]
    [ 0.227255] pci 0000:00:13.5: [1002:4386] type 0 class 0x000c03
    [ 0.227275] pci 0000:00:13.5: reg 10: [mem 0xfe029000-0xfe0290ff]
    [ 0.227351] pci 0000:00:13.5: supports D1 D2
    [ 0.227352] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot
    [ 0.227357] pci 0000:00:13.5: PME# disabled
    [ 0.227379] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
    [ 0.227402] pci 0000:00:14.0: reg 10: [io 0x0b00-0x0b0f]
    [ 0.227483] pci 0000:00:14.1: [1002:438c] type 0 class 0x000101
    [ 0.227497] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    [ 0.227507] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    [ 0.227518] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    [ 0.227528] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    [ 0.227538] pci 0000:00:14.1: reg 20: [io 0xf900-0xf90f]
    [ 0.227577] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
    [ 0.227600] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
    [ 0.227663] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.227667] pci 0000:00:14.2: PME# disabled
    [ 0.227681] pci 0000:00:14.3: [1002:438d] type 0 class 0x000601
    [ 0.227759] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
    [ 0.227808] pci 0000:00:18.0: [1022:1100] type 0 class 0x000600
    [ 0.227823] pci 0000:00:18.1: [1022:1101] type 0 class 0x000600
    [ 0.227835] pci 0000:00:18.2: [1022:1102] type 0 class 0x000600
    [ 0.227848] pci 0000:00:18.3: [1022:1103] type 0 class 0x000600
    [ 0.227903] pci 0000:01:00.0: [10de:0402] type 0 class 0x000300
    [ 0.227914] pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
    [ 0.227926] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.227937] pci 0000:01:00.0: reg 1c: [mem 0xf8000000-0xf9ffffff 64bit]
    [ 0.227945] pci 0000:01:00.0: reg 24: [io 0xdf00-0xdf7f]
    [ 0.227953] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.233329] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.233396] pci 0000:00:02.0: bridge window [io 0xd000-0xdfff]
    [ 0.233399] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.233404] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.233444] pci 0000:02:00.0: [11ab:4364] type 0 class 0x000200
    [ 0.233462] pci 0000:02:00.0: reg 10: [mem 0xfdffc000-0xfdffffff 64bit]
    [ 0.233472] pci 0000:02:00.0: reg 18: [io 0xee00-0xeeff]
    [ 0.233505] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.233535] pci 0000:02:00.0: supports D1 D2
    [ 0.233537] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.233541] pci 0000:02:00.0: PME# disabled
    [ 0.239995] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.240062] pci 0000:00:0a.0: bridge window [io 0xe000-0xefff]
    [ 0.240065] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.240069] pci 0000:00:0a.0: bridge window [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.240134] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.240203] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.240207] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff]
    [ 0.240212] pci 0000:00:14.4: bridge window [mem 0xfdc00000-0xfdcfffff pref]
    [ 0.240214] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.240217] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.240219] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.240221] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.240224] pci 0000:00:14.4: bridge window [mem 0x80000000-0xffffffff] (subtractive decode)
    [ 0.240236] pci_bus 0000:00: on NUMA node 0
    [ 0.240239] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.240363] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.240408] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
    [ 0.240440] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
    [ 0.240465] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.240531] Unable to assume _OSC PCIe control. Disabling ASPM
    [ 0.251996] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.252665] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.253351] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.254017] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.254684] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.255350] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.257059] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.257725] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.258446] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.258522] vgaarb: loaded
    [ 0.258678] PCI: Using ACPI for IRQ routing
    [ 0.258742] PCI: pci_cache_line_size set to 64 bytes
    [ 0.258749] pci 0000:00:00.0: address space collision: [mem 0xe0000000-0xffffffff 64bit] conflicts with PCI Bus 0000:01 [mem 0xf8000000-0xfbffffff]
    [ 0.258890] reserve RAM buffer: 000000000009f400 - 000000000009ffff
    [ 0.258893] reserve RAM buffer: 000000007fff0000 - 000000007fffffff
    [ 0.259004] NetLabel: Initializing
    [ 0.259067] NetLabel: domain hash size = 128
    [ 0.259131] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.259205] NetLabel: unlabeled traffic allowed by default
    [ 0.259287] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.259608] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    [ 0.261015] Switching to clocksource hpet
    [ 0.261499] Switched to NOHz mode on CPU #0
    [ 0.261582] Switched to NOHz mode on CPU #1
    [ 0.266362] pnp: PnP ACPI init
    [ 0.266443] ACPI: bus type pnp registered
    [ 0.266593] pnp 00:00: [bus 00-ff]
    [ 0.266598] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.266600] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.266602] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.266604] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.266606] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.266609] pnp 00:00: [mem 0x80000000-0xffffffff window]
    [ 0.266662] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.266792] pnp 00:01: [io 0x4100-0x411f]
    [ 0.266794] pnp 00:01: [io 0x0228-0x022f]
    [ 0.266796] pnp 00:01: [io 0x040b]
    [ 0.266798] pnp 00:01: [io 0x04d6]
    [ 0.266799] pnp 00:01: [io 0x0c00-0x0c01]
    [ 0.266801] pnp 00:01: [io 0x0c14]
    [ 0.266803] pnp 00:01: [io 0x0c50-0x0c52]
    [ 0.266805] pnp 00:01: [io 0x0c6c-0x0c6d]
    [ 0.266807] pnp 00:01: [io 0x0c6f]
    [ 0.266808] pnp 00:01: [io 0x0cd0-0x0cd1]
    [ 0.266810] pnp 00:01: [io 0x0cd2-0x0cd3]
    [ 0.266812] pnp 00:01: [io 0x0cd4-0x0cdf]
    [ 0.266814] pnp 00:01: [io 0x4000-0x40fe]
    [ 0.266815] pnp 00:01: [io 0x4210-0x4217]
    [ 0.266817] pnp 00:01: [io 0x0b10-0x0b1f]
    [ 0.266819] pnp 00:01: [mem 0x00000000-0x00000fff window]
    [ 0.266822] pnp 00:01: [mem 0xfee00400-0xfee00fff window]
    [ 0.266828] pnp 00:01: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.266939] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
    [ 0.267023] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
    [ 0.267131] system 00:01: [io 0x4100-0x411f] has been reserved
    [ 0.267198] system 00:01: [io 0x0228-0x022f] has been reserved
    [ 0.267264] system 00:01: [io 0x040b] has been reserved
    [ 0.267330] system 00:01: [io 0x04d6] has been reserved
    [ 0.267395] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.267461] system 00:01: [io 0x0c14] has been reserved
    [ 0.267530] system 00:01: [io 0x0c50-0x0c52] has been reserved
    [ 0.267596] system 00:01: [io 0x0c6c-0x0c6d] has been reserved
    [ 0.267662] system 00:01: [io 0x0c6f] has been reserved
    [ 0.267727] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.267793] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.267859] system 00:01: [io 0x0cd4-0x0cdf] has been reserved
    [ 0.267926] system 00:01: [io 0x4000-0x40fe] has been reserved
    [ 0.267992] system 00:01: [io 0x4210-0x4217] has been reserved
    [ 0.268058] system 00:01: [io 0x0b10-0x0b1f] has been reserved
    [ 0.268125] system 00:01: [mem 0xfee00400-0xfee00fff window] has been reserved
    [ 0.268201] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.268290] pnp 00:02: [dma 4]
    [ 0.268291] pnp 00:02: [io 0x0000-0x000f]
    [ 0.268293] pnp 00:02: [io 0x0080-0x0090]
    [ 0.268295] pnp 00:02: [io 0x0094-0x009f]
    [ 0.268297] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.268326] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.268366] pnp 00:03: [irq 0 disabled]
    [ 0.268380] pnp 00:03: [irq 8]
    [ 0.268382] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.268408] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.268430] pnp 00:04: [io 0x0070-0x0073]
    [ 0.268456] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.268463] pnp 00:05: [io 0x0061]
    [ 0.268488] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.268495] pnp 00:06: [io 0x00f0-0x00ff]
    [ 0.268504] pnp 00:06: [irq 13]
    [ 0.268535] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.268566] pnp 00:07: [io 0x0010-0x001f]
    [ 0.268567] pnp 00:07: [io 0x0022-0x003f]
    [ 0.268569] pnp 00:07: [io 0x0044-0x005f]
    [ 0.268571] pnp 00:07: [io 0x0062-0x0063]
    [ 0.268573] pnp 00:07: [io 0x0065-0x006f]
    [ 0.268575] pnp 00:07: [io 0x0074-0x007f]
    [ 0.268576] pnp 00:07: [io 0x0091-0x0093]
    [ 0.268578] pnp 00:07: [io 0x00a2-0x00bf]
    [ 0.268580] pnp 00:07: [io 0x00e0-0x00ef]
    [ 0.268582] pnp 00:07: [io 0x04d0-0x04d1]
    [ 0.268632] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 0.268699] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.269033] pnp 00:08: [io 0x0060]
    [ 0.269034] pnp 00:08: [io 0x0064]
    [ 0.269043] pnp 00:08: [irq 1]
    [ 0.269080] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.269127] pnp 00:09: [mem 0x000f0000-0x000fffff]
    [ 0.269129] pnp 00:09: [mem 0x00000000-0x001fffff]
    [ 0.269131] pnp 00:09: [mem 0xfed00000-0xfed000ff]
    [ 0.269132] pnp 00:09: [mem 0x7fff0000-0x7fffffff]
    [ 0.269134] pnp 00:09: [mem 0xffff0000-0xffffffff]
    [ 0.269136] pnp 00:09: [mem 0x00000000-0x0009ffff]
    [ 0.269138] pnp 00:09: [mem 0x00100000-0x7ffeffff]
    [ 0.269140] pnp 00:09: [mem 0xfec00000-0xfec00fff]
    [ 0.269142] pnp 00:09: [mem 0xfee00000-0xfee00fff]
    [ 0.269144] pnp 00:09: [mem 0xfff80000-0xfffeffff]
    [ 0.269148] pnp 00:09: disabling [mem 0x000f0000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269229] pnp 00:09: disabling [mem 0x00000000-0x001fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269309] pnp 00:09: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269390] pnp 00:09: disabling [mem 0x00100000-0x7ffeffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.269519] system 00:09: [mem 0xfed00000-0xfed000ff] has been reserved
    [ 0.269587] system 00:09: [mem 0x7fff0000-0x7fffffff] could not be reserved
    [ 0.269654] system 00:09: [mem 0xffff0000-0xffffffff] has been reserved
    [ 0.269721] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.269788] system 00:09: [mem 0xfee00000-0xfee00fff] could not be reserved
    [ 0.269855] system 00:09: [mem 0xfff80000-0xfffeffff] has been reserved
    [ 0.269922] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.269930] pnp: PnP ACPI: found 10 devices
    [ 0.269994] ACPI: ACPI bus type pnp unregistered
    [ 0.306168] pci 0000:01:00.0: BAR 6: assigned [mem 0xfb000000-0xfb01ffff pref]
    [ 0.306245] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.306311] pci 0000:00:02.0: bridge window [io 0xd000-0xdfff]
    [ 0.306378] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.306445] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.306523] pci 0000:02:00.0: BAR 6: assigned [mem 0xfde00000-0xfde1ffff pref]
    [ 0.306598] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.306664] pci 0000:00:0a.0: bridge window [io 0xe000-0xefff]
    [ 0.306741] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.306809] pci 0000:00:0a.0: bridge window [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.306886] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 0.306952] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.307022] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff]
    [ 0.307090] pci 0000:00:14.4: bridge window [mem 0xfdc00000-0xfdcfffff pref]
    [ 0.307175] pci 0000:00:02.0: setting latency timer to 64
    [ 0.307180] pci 0000:00:0a.0: setting latency timer to 64
    [ 0.307188] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.307190] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.307192] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.307194] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.307197] pci_bus 0000:00: resource 8 [mem 0x80000000-0xffffffff]
    [ 0.307199] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.307201] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfbffffff]
    [ 0.307203] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.307206] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.307208] pci_bus 0000:02: resource 1 [mem 0xfdf00000-0xfdffffff]
    [ 0.307210] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.307213] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.307215] pci_bus 0000:03: resource 1 [mem 0xfdd00000-0xfddfffff]
    [ 0.307217] pci_bus 0000:03: resource 2 [mem 0xfdc00000-0xfdcfffff pref]
    [ 0.307219] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.307222] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.307224] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.307226] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.307228] pci_bus 0000:03: resource 8 [mem 0x80000000-0xffffffff]
    [ 0.307274] NET: Registered protocol family 2
    [ 0.307398] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.307694] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.308325] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.308652] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.308719] TCP reno registered
    [ 0.308783] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.308856] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.309050] NET: Registered protocol family 1
    [ 0.426742] pci 0000:01:00.0: Boot video device
    [ 0.426749] PCI: CLS 64 bytes, default 64
    [ 0.426800] Unpacking initramfs...
    [ 0.460291] Freeing initrd memory: 2140k freed
    [ 0.461639] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
    [ 0.461707] apm: disabled - APM is not SMP safe.
    [ 0.461884] audit: initializing netlink socket (disabled)
    [ 0.461957] type=2000 audit(1312207987.459:1): initialized
    [ 0.462290] highmem bounce pool size: 64 pages
    [ 0.462357] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.464180] VFS: Disk quotas dquot_6.5.2
    [ 0.464312] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.464469] msgmni has been set to 1712
    [ 0.464730] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.464841] io scheduler noop registered
    [ 0.464907] io scheduler deadline registered
    [ 0.464983] io scheduler cfq registered (default)
    [ 0.465152] pcieport 0000:00:02.0: setting latency timer to 64
    [ 0.465180] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.465225] pcieport 0000:00:0a.0: setting latency timer to 64
    [ 0.465246] pcieport 0000:00:0a.0: irq 41 for MSI/MSI-X
    [ 0.465393] ERST: Table is not found!
    [ 0.465467] isapnp: Scanning for PnP cards...
    [ 0.822554] isapnp: No Plug & Play device found
    [ 0.822675] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.050031] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 1.050099] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 1.050669] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.050792] mousedev: PS/2 mouse device common for all mice
    [ 1.050892] rtc_cmos 00:04: RTC can wake from S4
    [ 1.074526] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.076767] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 1.076869] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 1.076954] cpuidle: using governor ladder
    [ 1.077018] cpuidle: using governor menu
    [ 1.077281] TCP cubic registered
    [ 1.077345] NET: Registered protocol family 17
    [ 1.077415] Registering the dns_resolver key type
    [ 1.077492] Using IPI No-Shortcut mode
    [ 1.077626] PM: Hibernation image not present or could not be loaded.
    [ 1.077633] registered taskstats version 1
    [ 1.077987] rtc_cmos 00:04: setting system clock to 2011-08-01 14:13:08 UTC (1312207988)
    [ 1.078086] Initializing network drop monitor service
    [ 1.078222] Freeing unused kernel memory: 512k freed
    [ 1.078587] Write protecting the kernel text: 3380k
    [ 1.078672] Write protecting the kernel read-only data: 1028k
    [ 1.088713] udevd[47]: starting version 171
    [ 1.180160] SCSI subsystem initialized
    [ 1.197209] usbcore: registered new interface driver usbfs
    [ 1.197412] usbcore: registered new interface driver hub
    [ 1.197625] usbcore: registered new device driver usb
    [ 1.215729] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.215840] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 1.215930] ehci_hcd 0000:00:13.5: EHCI Host Controller
    [ 1.216028] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1
    [ 1.226748] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround
    [ 1.226842] ehci_hcd 0000:00:13.5: debug port 1
    [ 1.226937] ehci_hcd 0000:00:13.5: irq 19, io mem 0xfe029000
    [ 1.237087] libata version 3.00 loaded.
    [ 1.240040] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00
    [ 1.240292] hub 1-0:1.0: USB hub found
    [ 1.240359] hub 1-0:1.0: 10 ports detected
    [ 1.240733] pata_atiixp 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.241613] scsi0 : pata_atiixp
    [ 1.241804] scsi1 : pata_atiixp
    [ 1.242405] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf900 irq 14
    [ 1.242472] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf908 irq 15
    [ 1.244130] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 1.244228] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.244315] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 1.244390] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2
    [ 1.250091] ohci_hcd 0000:00:13.0: irq 16, io mem 0xfe02e000
    [ 1.307508] hub 2-0:1.0: USB hub found
    [ 1.307579] hub 2-0:1.0: 2 ports detected
    [ 1.307730] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 1.307813] ohci_hcd 0000:00:13.1: OHCI Host Controller
    [ 1.307889] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3
    [ 1.326729] ohci_hcd 0000:00:13.1: irq 17, io mem 0xfe02d000
    [ 1.384201] hub 3-0:1.0: USB hub found
    [ 1.384274] hub 3-0:1.0: 2 ports detected
    [ 1.384428] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.384511] ohci_hcd 0000:00:13.2: OHCI Host Controller
    [ 1.384583] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 1.405209] ohci_hcd 0000:00:13.2: irq 18, io mem 0xfe02c000
    [ 1.460849] hub 4-0:1.0: USB hub found
    [ 1.460923] hub 4-0:1.0: 2 ports detected
    [ 1.461068] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 1.461149] ohci_hcd 0000:00:13.3: OHCI Host Controller
    [ 1.461220] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5
    [ 1.480027] ohci_hcd 0000:00:13.3: irq 17, io mem 0xfe02b000
    [ 1.537463] hub 5-0:1.0: USB hub found
    [ 1.537533] hub 5-0:1.0: 2 ports detected
    [ 1.537661] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.537735] ohci_hcd 0000:00:13.4: OHCI Host Controller
    [ 1.537805] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6
    [ 1.553363] ohci_hcd 0000:00:13.4: irq 18, io mem 0xfe02a000
    [ 1.610820] hub 6-0:1.0: USB hub found
    [ 1.610890] hub 6-0:1.0: 2 ports detected
    [ 1.611025] ahci 0000:00:12.0: version 3.0
    [ 1.611043] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 1.611127] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit
    [ 1.611295] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    [ 1.611377] ahci 0000:00:12.0: flags: ncq sntf ilck led clo pmp pio ccc
    [ 1.612922] scsi2 : ahci
    [ 1.613831] scsi3 : ahci
    [ 1.614815] scsi4 : ahci
    [ 1.614997] scsi5 : ahci
    [ 1.615170] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
    [ 1.615247] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
    [ 1.615324] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
    [ 1.615400] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
    [ 1.933384] ata6: SATA link down (SStatus 0 SControl 300)
    [ 1.933527] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.063354] usb 6-2: new low speed USB device number 2 using ohci_hcd
    [ 2.106684] ata3: softreset failed (device not ready)
    [ 2.106751] ata3: applying SB600 PMP SRST workaround and retrying
    [ 2.106831] ata4: softreset failed (device not ready)
    [ 2.106897] ata4: applying SB600 PMP SRST workaround and retrying
    [ 2.273373] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.273477] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.275971] ata4.00: ATAPI: HL-DT-ST DVDRAM GH20NS10, EL00, max UDMA/100
    [ 2.276040] ata4.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.278897] ata3.00: ATA-7: SAMSUNG HD161HJ, JF100-19, max UDMA7
    [ 2.278963] ata3.00: 312581808 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 2.279030] ata3.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.279635] ata4.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.279701] ata4.00: configured for UDMA/100
    [ 2.284467] ata3.00: SB600 AHCI: limiting to 255 sectors per cmd
    [ 2.284533] ata3.00: configured for UDMA/133
    [ 2.284747] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD161HJ JF10 PQ: 0 ANSI: 5
    [ 2.397145] scsi 3:0:0:0: CD-ROM HL-DT-ST DVDRAM GH20NS10 EL00 PQ: 0 ANSI: 5
    [ 2.407639] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    [ 2.407755] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.407821] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.407838] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.411375] input: Primax Electronics Wireless Mouse as /devices/pci0000:00/0000:00:13.4/usb6/6-2/6-2:1.0/input/input1
    [ 2.411568] generic-usb 0003:0461:4D25.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [Primax Electronics Wireless Mouse] on usb-0000:00:13.4-2/input0
    [ 2.411669] usbcore: registered new interface driver usbhid
    [ 2.411745] usbhid: USB HID core driver
    [ 2.437927] sda: sda1 sda2 sda3 < sda5 >
    [ 2.438378] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 2.518436] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.518516] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.518787] sr 3:0:0:0: Attached scsi CD-ROM sr0
    [ 2.959493] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.003984] udevd[255]: starting version 171
    [ 4.140765] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 4.140858] ACPI: Power Button [PWRB]
    [ 4.140981] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 4.141058] ACPI: Power Button [PWRF]
    [ 4.154881] Linux agpgart interface v0.103
    [ 4.157785] ACPI: Fan [FAN] (on)
    [ 4.158635] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    [ 4.161972] ACPI: acpi_idle registered with cpuidle
    [ 4.162457] SP5100 TCO timer: mmio address 0xfec000f0 already in use
    [ 4.228336] sky2: driver version 1.28
    [ 4.228452] sky2 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 4.228527] sky2 0000:02:00.0: setting latency timer to 64
    [ 4.228555] sky2 0000:02:00.0: Yukon-2 EC Ultra chip revision 5
    [ 4.228709] sky2 0000:02:00.0: irq 42 for MSI/MSI-X
    [ 4.228991] sky2 0000:02:00.0: eth0: addr 00:50:8d:ba:48:da
    [ 4.232113] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 4.250935] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
    [ 4.302867] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 4.356767] ACPI Warning: For \_TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20110316/nspredef-1059)
    [ 4.356967] ACPI: Expecting a [Reference] package element, found type 0
    [ 4.357033] ACPI: Invalid passive threshold
    [ 4.363965] sd 2:0:0:0: Attached scsi generic sg0 type 0
    [ 4.364111] sr 3:0:0:0: Attached scsi generic sg1 type 5
    [ 4.476288] nvidia: module license 'NVIDIA' taints kernel.
    [ 4.476360] Disabling lock debugging due to kernel taint
    [ 4.556743] thermal LNXTHERM:00: registered as thermal_zone0
    [ 4.556813] ACPI: Thermal Zone [THRM] (44 C)
    [ 4.691172] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 4.775620] hda_codec: ALC888: BIOS auto-probing.
    [ 4.777062] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5
    [ 4.781547] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    [ 5.638691] nvidia 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 5.638769] nvidia 0000:01:00.0: setting latency timer to 64
    [ 5.638774] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 5.639105] NVRM: loading NVIDIA UNIX x86 Kernel Module 275.21 Mon Jul 18 14:37:03 PDT 2011
    [ 5.886530] EXT4-fs (sda5): re-mounted. Opts: (null)
    [ 5.965890] Adding 996024k swap on /dev/sda2. Priority:-1 extents:1 across:996024k
    Last edited by Fuentes (2011-08-16 22:44:13)

    the contents of /home/user/.xsession-errors
    startkde: Starting up...
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    kbuildsycoca4 running...
    kded(920) LayoutMemoryPersister::restoreFromFile: Failed to open layout memory xml file for reading "/home/alvaro/.kde4/share/apps/kded/session/keyboard/layout_memory.xml" error: 5
    kded(920)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
    No outputs have backlight property
    QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.5'
    kded(920) PowerDevilUPowerBackend::brightness: org.kde.powerdevil.backlighthelper.brightness failed
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    Invalid D-BUS member name 'idle-hint' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'is-local' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'x11-display-device' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'x11-display' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'display-device' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'remote-host-name' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'session-type' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    Invalid D-BUS member name 'unix-user' found in interface 'org.freedesktop.ConsoleKit.Session' while parsing introspection
    QDBusObjectPath: invalid path ""
    QDBusObjectPath: invalid path ""
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00141
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0x8bf31cc
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00141
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00143
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00143
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00145
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00145
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00147
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00147
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e00149
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e00149
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e0014b
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e0014b
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e0014d
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e0014d
    X Error: BadValue (integer parameter out of range for operation) 2
    Major opcode: 53 (X_CreatePixmap)
    Resource id: 0x0
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Major opcode: 14 (X_GetGeometry)
    Resource id: 0x1e0014f
    X Error: BadWindow (invalid Window parameter) 3
    Major opcode: 3 (X_GetWindowAttributes)
    Resource id: 0xb6d1bef4
    QPainter::begin: Cannot paint on a null pixmap
    X Error: BadDrawable (invalid Pixmap or Window parameter) 9
    Extension: 152 (RENDER)
    Minor opcode: 4 (RenderCreatePicture)
    Resource id: 0x1e0014f
    Object::connect: No such signal QDBusAbstractInterface::Changed()
    Object::connect: No such signal KWindowSystem::windowChanged(WId,unsigned long*)
    kwin(977): Compositing is not possible
    kwin(977): Compositing is not possible
    kwin(977): Compositing is not possible
    kded(920) PowerDevilUPowerBackend::brightness: org.kde.powerdevil.backlighthelper.brightness failed
    kded(920) PowerDevilUPowerBackend::brightness: org.kde.powerdevil.backlighthelper.brightness failed
    kded(920) PowerDevilUPowerBackend::setBrightness: org.kde.powerdevil.backlighthelper.setbrightness failed
    kded(920) PowerDevilUPowerBackend::setBrightness: org.kde.powerdevil.backlighthelper.setbrightness failed
    QProcess: Destroyed while process is still running.
    plasma-desktop(1001): Communication problem with "plasma-desktop" , it probably crashed.
    Error message was: "org.freedesktop.DBus.Error.Disconnected" : " "Connection was disconnected before a reply was received" "
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    klauncher: Exiting on signal 1
    kglobalaccel: Fatal IO error: client killed
    kdeinit4: Fatal IO error: client killed
    kdeinit4: sending SIGHUP to children.
    ksmserver: Fatal IO error: client killed
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.
    kded4: Fatal IO error: client killed
    kdeinit4: sending SIGTERM to children.
    kdeinit4: Exit.

Maybe you are looking for