Grub bug?

Hello. I think that there is a grub bug. I'll explain myself: When I try to boot the last Solaris 10 build (Solaris, not Solaris express) I got "Error 28: Selected item can not fit into memory". I know that it is not a memory problem, since I've got 640MB, enough to load all the cd in memory.
The displaymem command at grub console show me that I have 624K of lower memory and 654320K of upper memory. The base address of upper memory is 0x100000, as it must be.
In another machine I've got very similar values, 640K of lower memory and 512M of upper memory, and the upper memory base address is 0x100000 too, but this time Solaris boots up.
I don't think that it is a lower memory issue, because I read in a one month old thread that some user get same error with 639K of lower memory. And some user tells in that thread that:
Unfortunatelly, the root cause for the "error 28: Selected item cannot fit into memory"
message could also be
- read errors / I/O errors
- corrupted compressed data in the ramdisk miniroot image
Well, it can't be corrupted compressed data, because the same dvd, and the same cd (I've tried booth) works fine on another machine. And, as suggested in the other thread, I change the dvd drive, but I get the same error.
There is a bug report on opensolaris comunity http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6387379 but basically it says that grub can't handle errors correctly. This is ok but, in my case, I think that everything in my machine is ok, so... perhaps there is another grub bug related to this symptom? Anyone got a workaround for this thing? It is very frustrating. The older thread is http://forum.sun.com/jive/thread.jspa?threadID=94387&messageID=325313
I've got older Solaris version, labeled 20050613 that works fine, but I can't use ZFS with it.
My machine is a IBM Netfinity 5000, Dual Pentium III 500MHz, 640MB, Voodoo 3 3000 PCI Video Card, and a ServeRAID-3L controller with 4 hd's scsi of 9.1GB attached to it, configured as RAID0. And everything is updated.
Thank you all.

Someone know if another Solaris 10 revision (older
than update 1), support ZFS, containers and don't use
grub?No. Update 1 doesn't support ZFS today and nothing older will either. ZFS won't appear in Solaris until update 2 (presumably sometime around June).
Solaris 10 FCS (03/05) has zones included but does not use GRUB on x86 hardware.
Darren

Similar Messages

  • [x86_64] Let's fix grub issues - help wanted

    We have some issues with our grub bootloader. Lilo is working well but need to be recalled for every kernel update. Grub2 is not ready for x86_64 and still under heavy developement. So we should get grub (legacy) working. Arch32 is not patching it at all. It looks like we need to do this now.
    I myself have two systems: one with GeForce 6100 chipset (nforce4) booting from IDE hard disc very well. No issues there. The other system with Uli1695 chipset booting form IDE or SATA installs grub fine but cannot find the right partition when booting, even not in grub-shell. I cannot play to much with it as it is my main system.
    Read more on the mailing lists: http://savannah.gnu.org/mail/?group=grub
    You can base any testing package on this PKGBUILD
    The Package has to be build on i686 (Arch32) as it will not compile on x86_64 natively.
    So I've tried to collect all important patches and it's up to you to test them and report which will help!
    CLFS http://cross-lfs.org/view/svn/x86_64/bo … build.html
    1) http://cross-lfs.org/files/patches/svn/ … es-1.patch
    Description: Contains various fixes and enhancements
    Graphics mode support
    Fixes for Raid Support
    XFS Filesystem Boot Freeze Fixes
    Removed 2GB Memory Limitation
    Freebsd support
    Fixes for initrd support
    Grub installation Fixes
    Linux 2.6 geometry Fixes
    Intel Mac Support
    Autoconf and aclocal updates
    2) http://cross-lfs.org/files/patches/svn/ … ap-1.patch
    Description: This patch fixes the following issues on x86_64
    1) malloc'd pages seem to lack the execute bit on x86_64;
    2) grub seems to use some stack pointer diversion to malloc'd pages;
    3) nested functions execute data on the stack;
    4) this causes a segfault (at least on my machine)
    Frugalware http://darcs.frugalware.org/darcsweb/da … /base/grub
    They patch for better network support, cd support and a graphical menu.
    Gentoo
    http://www.gentoo.org/cgi-bin/viewcvs.c … iew=markup
    http://ftp.ucsb.edu/pub/mirrors/linux/g … .2.tar.bz2
    The patchset includes fixes for: splash, PIC, bounced checks, unsigned adresses, i2o raid, nxstac, netboot-pic, reiser4, netboot-gcc4.
    So user with grub issues - come on - test the patches and report if you got  it working for you :!:

    @gs:judd is mainating the installer. if you wanna see something new in there open a featurew request in flyspray ;-)
    I will checkin the fixed grub package. Then I will make new isos for a (hopefully) short testing period.
    @gs, here are some small fixes you can locally test if they fix your issues:
    Submitted By: Jim Gifford <jim>
    Date: 07-14-2006
    Initial Package Version: 0.97
    Upstream Status: Unknown
    Origin: Grub Bug Report - http://savannah.gnu.org/bugs/?func=detailitem&item_id=11312
    Description: This patch fixes the following issues on x86_64
    1) malloc'd pages seem to lack the execute bit on x86_64;
    2) grub seems to use some stack pointer diversion to malloc'd pages;
    3) nested functions execute data on the stack;
    4) this causes a segfault (at least on my machine)
    diff -Naur grub-0.97.orig/grub/asmstub.c grub-0.97/grub/asmstub.c
    --- grub-0.97.orig/grub/asmstub.c 2005-02-16 12:45:14.000000000 -0800
    +++ grub-0.97/grub/asmstub.c 2006-07-14 12:38:08.305902933 -0700
    @@ -43,6 +43,8 @@
    #include <termios>
    #include <signal>
    +#include <sys>
    +
    #ifdef __linux__
    # include <sys> /* ioctl */
    # if !defined(__GLIBC__) ||
    @@ -142,14 +144,25 @@
    assert (grub_scratch_mem == 0);
    - scratch = malloc (0x100000 + EXTENDED_MEMSIZE + 15);
    + scratch = mmap(NULL,
    + 0x100000 + EXTENDED_MEMSIZE + 15,
    + PROT_EXEC | PROT_READ | PROT_WRITE,
    + MAP_PRIVATE | MAP_GROWSDOWN | MAP_ANONYMOUS | MAP_32BIT,
    + -1,
    + 0);
    +
    assert (scratch);
    grub_scratch_mem = (char *) ((((int) scratch) >> 4) << 4);
    /* FIXME: simulate the memory holes using mprot, if available. */
    assert (disks == 0);
    - disks = malloc (NUM_DISKS * sizeof (*disks));
    + disks = mmap(NULL,
    + NUM_DISKS * sizeof (*disks),
    + PROT_EXEC | PROT_READ | PROT_WRITE,
    + MAP_PRIVATE | MAP_GROWSDOWN | MAP_ANONYMOUS | MAP_32BIT,
    + -1,
    + 0);
    assert (disks);
    /* Initialize DISKS. */
    for (i = 0; i < NUM_DISKS; i++)
    @@ -215,9 +228,9 @@
    /* Release memory. */
    restore_device_map (device_map);
    device_map = 0;
    - free (disks);
    + munmap(disks, NUM_DISKS * sizeof (*disks));
    disks = 0;
    - free (scratch);
    + munmap(scratch, 0x100000 + EXTENDED_MEMSIZE + 15);
    grub_scratch_mem = 0;
    if (serial_device)
    or this one, a part from http://ftp.jg555.com/grub-0.97-disk_geometry-2.patch
    diff -Naur grub-0.97.orig/grub/asmstub.c grub-0.97/grub/asmstub.c
    --- grub-0.97.orig/grub/asmstub.c 2005-02-16 12:45:14.000000000 -0800
    +++ grub-0.97/grub/asmstub.c 2006-07-14 12:38:08.305902933 -0700
    @@ -43,6 +43,8 @@
    #include <termios>
    #include <signal>
    +#include <sys>
    +
    #ifdef __linux__
    # include <sys> /* ioctl */
    # if !defined(__GLIBC__) ||
    @@ -142,14 +144,25 @@
    assert (grub_scratch_mem == 0);
    - scratch = malloc (0x100000 + EXTENDED_MEMSIZE + 15);
    + scratch = mmap(NULL,
    + 0x100000 + EXTENDED_MEMSIZE + 15,
    + PROT_EXEC | PROT_READ | PROT_WRITE,
    + MAP_PRIVATE | MAP_GROWSDOWN | MAP_ANONYMOUS | MAP_32BIT,
    + -1,
    + 0);
    +
    assert (scratch);
    grub_scratch_mem = (char *) ((((int) scratch) >> 4) << 4);
    /* FIXME: simulate the memory holes using mprot, if available. */
    assert (disks == 0);
    - disks = malloc (NUM_DISKS * sizeof (*disks));
    + disks = mmap(NULL,
    + NUM_DISKS * sizeof (*disks),
    + PROT_EXEC | PROT_READ | PROT_WRITE,
    + MAP_PRIVATE | MAP_GROWSDOWN | MAP_ANONYMOUS | MAP_32BIT,
    + -1,
    + 0);
    assert (disks);
    /* Initialize DISKS. */
    for (i = 0; i < NUM_DISKS; i++)
    @@ -215,9 +228,9 @@
    /* Release memory. */
    restore_device_map (device_map);
    device_map = 0;
    - free (disks);
    + munmap(disks, NUM_DISKS * sizeof (*disks));
    disks = 0;
    - free (scratch);
    + munmap(scratch, 0x100000 + EXTENDED_MEMSIZE + 15);
    grub_scratch_mem = 0;
    if (serial_device)
    diff -Naur grub-0.97.orig/lib/device.c grub-0.97/lib/device.c
    --- grub-0.97.orig/lib/device.c 2005-03-27 15:14:25.000000000 -0800
    +++ grub-0.97/lib/device.c 2006-07-14 12:37:02.523614144 -0700
    @@ -131,6 +131,152 @@
    #include <shared>
    #include <device>
    +#if defined(__linux__)
    +/* The 2.6 kernel has removed all of the geometry handling for IDE drives
    + * that did fixups for LBA, etc. This means that the geometry we get
    + * with the ioctl has a good chance of being wrong. So, we get to
    + * also know about partition tables and try to read what the geometry
    + * is there. *grumble* Very closely based on code from cfdisk
    + */
    +static void get_kernel_geometry(int fd, long long *cyl, int *heads, int *sectors) {
    + struct hd_geometry hdg;
    +
    + if (ioctl (fd, HDIO_GETGEO, &hdg))
    + return;
    +
    + *cyl = hdg.cylinders;
    + *heads = hdg.heads;
    + *sectors = hdg.sectors;
    +}
    +
    +struct partition {
    + unsigned char boot_ind; /* 0x80 - active */
    + unsigned char head; /* starting head */
    + unsigned char sector; /* starting sector */
    + unsigned char cyl; /* starting cylinder */
    + unsigned char sys_ind; /* What partition type */
    + unsigned char end_head; /* end head */
    + unsigned char end_sector; /* end sector */
    + unsigned char end_cyl; /* end cylinder */
    + unsigned char start4[4]; /* starting sector counting from 0 */
    + unsigned char size4[4]; /* nr of sectors in partition */
    +};
    +
    +#define ALIGNMENT 2
    +typedef union {
    + struct {
    + unsigned char align[ALIGNMENT];
    + unsigned char b[SECTOR_SIZE];
    + } c;
    + struct {
    + unsigned char align[ALIGNMENT];
    + unsigned char buffer[0x1BE];
    + struct partition part[4];
    + unsigned char magicflag[2];
    + } p;
    +} partition_table;
    +
    +#define PART_TABLE_FLAG0 0x55
    +#define PART_TABLE_FLAG1 0xAA
    +
    +static void
    +get_partition_table_geometry(partition_table *bufp, long long *cyl, int *heads,
    + int *sectors) {
    + struct partition *p;
    + int i,h,s,hh,ss;
    + int first = 1;
    + int bad = 0;
    +
    + if (bufp->p.magicflag[0] != PART_TABLE_FLAG0 ||
    + bufp->p.magicflag[1] != PART_TABLE_FLAG1) {
    + /* Matthew Wilcox: slightly friendlier version of
    + fatal(_("Bad signature on partition table"), 3);
    + */
    + fprintf(stderr, "Unknown partition table signaturen");
    + return;
    + }
    +
    + hh = ss = 0;
    + for (i=0; i<4>p.part[i]);
    + if (p->sys_ind != 0) {
    + h = p->end_head + 1;
    + s = (p->end_sector & 077);
    + if (first) {
    + hh = h;
    + ss = s;
    + first = 0;
    + } else if (hh != h || ss != s)
    + bad = 1;
    + }
    + }
    +
    + if (!first && !bad) {
    + *heads = hh;
    + *sectors = ss;
    + }
    +}
    +
    +static long long my_lseek (unsigned int fd, long long offset,
    + unsigned int origin)
    +{
    +#if defined(__linux__) && (!defined(__GLIBC__) ||
    + ((__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ <1>> 32, offset & 0xffffffff, &result, SEEK_SET))
    - errnum = ERR_DEV_VALUES;
    - return 0;
    -#else
    - off_t offset = (off_t) sector * (off_t) SECTOR_SIZE;
    - if (lseek (fd, offset, SEEK_SET) != offset)
    - errnum = ERR_DEV_VALUES;
    - return 0;
    -#endif
    + if (my_lseek(fd, offset, SEEK_SET) != offset)
    + {
    + errnum = ERR_DEV_VALUES;
    + return 0;
    + }
    if (write (fd, buf, size * SECTOR_SIZE) != (size * SECTOR_SIZE))
    diff -Naur grub-0.97.orig/util/grub-install.in grub-0.97/util/grub-install.in
    --- grub-0.97.orig/util/grub-install.in 2004-07-24 11:57:31.000000000 -0700
    +++ grub-0.97/util/grub-install.in 2006-07-14 12:37:02.535613832 -0700
    @@ -336,6 +336,10 @@
    # Create a safe temporary file.
    test -n "$mklog" && log_file=`$mklog`
    + # Before all invocations of the grub shell, call sync to make sure
    + # the raw device is in sync with any bufferring in filesystems.
    + sync
    +
    $grub_shell --batch $no_floppy --device-map=$device_map <<EOF>$log_file
    quit
    EOF
    @@ -450,6 +454,10 @@
    # Create a safe temporary file.
    test -n "$mklog" && log_file=`$mklog`
    +# Before all invocations of the grub shell, call sync to make sure
    +# the raw device is in sync with any bufferring in filesystems.
    +sync
    +
    # Now perform the installation.
    $grub_shell --batch $no_floppy --device-map=$device_map <<EOF>$log_file
    root $root_drive

  • GRUB-install weirdness

    When I installed Arch I decided not to install its GRUB in the MBR, leaving that to Mepis, which I have on another partition. Now I've decided to get rid of Mepis; before doing that, I want to install Arch's GRUB in the MBR.
    I followed the directions in my Knoppix book for reinstalling GRUB in the MBR. Using a Knoppix disk I mounted my Arch partition (hda6) and tried to run grub-install:
    root@1[root]# mount -o dev,rw /mnt/hda6
    root@1[root]# chroot /mnt/hda6 grub-install /dev/hda
    /dev/hda: Not found or not a block device.
    Then on a whim I tried reinstalling Mepis' GRUB (Mepis is hdb1) in the MBR:
    root@1[root]# mount -o dev,rw /mnt/hdb1
    root@1[root]# chroot /mnt/hdb1 grub-install /dev/hda
    Installation finished. No error reported.
    This is the contents of the device map /boot/grub/device.map.
    Check if this is correct or not. If any of the lines is incorrect,
    fix it and re-run the script `grub-install'.
    (hd0) /dev/hda
    (hd1) /dev/hdb
    (hd2) /dev/sda
    Why this discrepancy--why the /dev/hda error in the first case but not the second? Is this a GRUB bug or am I missing something? I also tried this with the Mepis CD, with the same results. Thanks.

    I tried mount --bind dev/proc but it did not solve the problem. I got an error message stating that /dev/hda was not a valid BIOS drive. When I Googled the error message I found a post on the Mandriva forums from a person with the same problem, who found that it was caused by the lack of (hdx) info in /boot/grub/device.map.
    Sure enough, I looked in my Arch device.map and found no hd info. I was wondering if this had something to do with udev--I'm still not very udev-savvy. Other distros I have installed that don't use udev (like the Mepis I partition) had device.map listings with hd mapping. Anyway, I added (hd0) /dev/hda to Arch's device.map and GRUB installed in the MBR like I wanted. Just wondering, though, will this mess with udev?

  • Grub doesn't find OSs (UEFI installation)

    I'm trying to install Arch Linux for the second time. Apparently Universe doesn't want me to do it easily not even once...
    So I've done everything that the wiki says, and when it comes to installing grub, I install grub, os-prober and efibootmgr
    then I do:
    grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub_uefi --recheck --debug
    This step finishes without errors.
    Then I try to detect the OSs and create a grub.cfg file that contains them with no success....
    grub-mkconfig -o /boot/grub/grub.cfg
    I haven't saved the output of the command but something between the lines is this...
    It tries to run something that has to do with lvm (I think it said it's a module) and it can't find that module? Or something like that <---< I have no clue what that is, but by reading on the internet it's something that I've never messed with so... it's unlikely to have it
    Then I get errors/warnings about sda3 partition which is the Microsoft Windows 8.1 Reserved partition... and something about not naming right my ufs partition? Or something like that
    If I uninstall os-prober then the script runs without warnings but it still doesn't find the OS not even arch linux, cfg file contains zero entries.
    When I boot from grub_uefi boot entry, I get the grub minimal console (Which I don't know how to operate or what to do with it)
    And last but not least... A fix to that "grub bug" was to disable submenus (Read that In this forum). I did it, I disabled submenus and ran grub-mkconfig again but nothing changed.
    I know the info is very vague but I hope that someone with knowledge can figure out what those errors are and why it can't find the oses....
    Ty in advance

    @TheSaint Yes, I chrooted  into the installation...
    @ Head_on_a_Stick, I'm not home right now but if you tell me what you want to see from that command, Maybe I can tell you by memory, I've run fdisk -l (Which I suspect shows a similar output) too many times so I've memorized my partitions.
    I did solve the problem by using gummiboot instead of grub, but I'd still like to know why grub couldn't find the OSes... I'm VERY sure that I did all the steps of the installation right, I've memorized the steps AND I made sure to read them again before doing the installation.

  • Arch 0.7 ISO -- Grub Install Bug?

    I only encountered two odd issues during the installation of Arch using the 0.7 final ISO. One of them was that when I attempted to install grub to the root partition, the installer only gave me a list of existing partitions up to dev/hda9 as possible options. Although there were several more (including the arch root and home partitions), the list would not scroll down past that hda9 partition.
    I submitted to the will of the installer, and instead edited the lilo.conf file by changing the boot directory to boot=/dev/discs/disc0/part12, which is where I would have installed grub if given the option. But lilo installed fine of course using this method and all is well.
    I would have preferred grub, but lilo is fine and I am familiar with using it as a bootloader so in the end it's no big deal. I just wondered if this might be a bug in the installer ... or ... horror, an operator error.

    That was a bug in the installer.  Fixed for the next release.
    Thanks!

  • Laptop Keyboard doesnot work after grub

    Hello,
    My laptop's keyboard stops working after i select distro from grub menu. I've did huge amount of search but i'm hopeless right now.
    I'm using a usb keyboard and it works fine, my laptop's keyboard also works fine in windows and boot menu.
    I have x86-input-evdev and -keyboard for sure.
    I'm using SLIM+ i3w if you need this!
    What to do and where to go?!
    any way if u need my dmesg here it is:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.10.3-1-ARCH (tobias@testing-i686) (gcc version 4.8.1 (GCC) ) #1 SMP PREEMPT Fri Jul 26 17:13:15 CEST 2013
    [ 0.000000] Disabled fast string operations
    [ 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 0x00000000000dc000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005f68ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000005f690000-0x000000005f699fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000005f69a000-0x000000005f6fffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000005f700000-0x000000005fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000f0005fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0008000-0x00000000f000bfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.3 present.
    [ 0.000000] DMI: LG Electronics LS75-25JLCE5/HUNTER, BIOS HURFSF07 09/28/2005
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x5f690 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-CFFFF write-protect
    [ 0.000000] D0000-E3FFF uncachable
    [ 0.000000] E4000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask FC0000000 write-back
    [ 0.000000] 1 base 040000000 mask FE0000000 write-back
    [ 0.000000] 2 base 05F700000 mask FFFF00000 uncachable
    [ 0.000000] 3 base 05F800000 mask FFF800000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] PAT not supported by CPU.
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x00bfffff]
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
    [ 0.000000] [mem 0x37000000-0x373fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
    [ 0.000000] [mem 0x30000000-0x36ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x37400000-0x377fdfff]
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] BRK [0x00849000, 0x00849fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37a12000-0x37d00fff]
    [ 0.000000] Allocated new RAMDISK: [mem 0x3750f000-0x377fda6a]
    [ 0.000000] Move RAMDISK from [mem 0x37a12000-0x37d00a6a] to [mem 0x3750f000-0x377fda6a]
    [ 0.000000] ACPI: RSDP 000f65b0 00014 (v00 PTLTD )
    [ 0.000000] ACPI: RSDT 5f690af0 0004C (v01 PTLTD HunterFL 06040000 LTP 00000000)
    [ 0.000000] ACPI: FACP 5f699e88 00074 (v01 LGE HunterFL 06040000 LGE 0000005F)
    [ 0.000000] ACPI: DSDT 5f691a5d 0842B (v01 LGE HUNTER 06040000 INTL 20030224)
    [ 0.000000] ACPI: FACS 5f6aafc0 00040
    [ 0.000000] ACPI: APIC 5f699efc 00068 (v01 INTEL ALVISO 06040000 LOHR 0000005F)
    [ 0.000000] ACPI: HPET 5f699f64 00038 (v01 INTEL ALVISO 06040000 LOHR 0000005F)
    [ 0.000000] ACPI: MCFG 5f699f9c 0003C (v01 INTEL ALVISO 06040000 LOHR 0000005F)
    [ 0.000000] ACPI: BOOT 5f699fd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SSDT 5f69182f 0022E (v01 SataRe SataAhci 00001000 INTL 20030224)
    [ 0.000000] ACPI: SSDT 5f69135a 004D5 (v01 LGE HNT_IGFX 00001000 INTL 20030224)
    [ 0.000000] ACPI: SSDT 5f690f15 00277 (v01 PmRef Cpu0Ist 00003000 INTL 20030224)
    [ 0.000000] ACPI: SSDT 5f690d55 001C0 (v01 PmRef Cpu0Cst 00003001 INTL 20030224)
    [ 0.000000] ACPI: SSDT 5f690b3c 00219 (v01 PmRef CpuPm 00003000 INTL 20030224)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 638MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x0084a000, 0x0084afff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0x5f68ffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0x5f68ffff]
    [ 0.000000] On node 0 totalpages: 390702
    [ 0.000000] free_area_init_node: node 0, pgdat c06af240, node_mem_map f691f020
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 1278 pages used for memmap
    [ 0.000000] HighMem zone: 163474 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 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] 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: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, 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] smpboot: Allowing 2 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 - 00000000000dc000
    [ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
    [ 0.000000] e820: [mem 0x60000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 14 pages/cpu @f68fa000 s33472 r0 d23872 u57344
    [ 0.000000] pcpu-alloc: s33472 r0 d23872 u57344 alloc=14*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 388926
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b68b701a-eb23-4df9-b3c8-ec3497d5f78f ro quiet
    [ 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 3126392 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:0005f690)
    [ 0.000000] Memory: 1536040k/1563200k available (4154k kernel code, 26768k reserved, 1734k data, 596k init, 653896k highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff14000 - 0xfffff000 ( 940 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc06c1000 - 0xc0756000 ( 596 kB)
    .data : 0xc050e91e - 0xc06c0300 (1734 kB)
    .text : 0xc0100000 - 0xc050e91e (4154 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, 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=8 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:2304 nr_irqs:512 16
    [ 0.000000] CPU 0 irqstacks, hard=f6008000 soft=f600a000
    [ 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.000000] tsc: Detected 1862.042 MHz processor
    [ 0.003335] Calibrating delay loop (skipped), value calculated using timer frequency.. 3725.25 BogoMIPS (lpj=6206806)
    [ 0.003339] pid_max: default: 32768 minimum: 301
    [ 0.003390] Security Framework initialized
    [ 0.003401] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003415] Mount-cache hash table entries: 512
    [ 0.003697] Initializing cgroup subsys memory
    [ 0.003710] Initializing cgroup subsys devices
    [ 0.003713] Initializing cgroup subsys freezer
    [ 0.003715] Initializing cgroup subsys net_cls
    [ 0.003718] Initializing cgroup subsys blkio
    [ 0.003751] Disabled fast string operations
    [ 0.003759] mce: CPU supports 5 MCE banks
    [ 0.003768] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003779] Last level iTLB entries: 4KB 128, 2MB 0, 4MB 2
    Last level dTLB entries: 4KB 128, 2MB 0, 4MB 8
    tlb_flushall_shift: 6
    [ 0.010647] ACPI: Core revision 20130328
    [ 0.016690] ACPI: All ACPI Tables successfully acquired
    [ 0.020010] ftrace: allocating 18608 entries in 37 pages
    [ 0.026776] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.027225] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061246] smpboot: CPU0: Intel(R) Pentium(R) M processor 1.86GHz (fam: 06, model: 0d, stepping: 08)
    [ 0.063333] Performance Events: p6 PMU driver.
    [ 0.063333] ... version: 0
    [ 0.063333] ... bit width: 32
    [ 0.063333] ... generic registers: 2
    [ 0.063333] ... value mask: 00000000ffffffff
    [ 0.063333] ... max period: 000000007fffffff
    [ 0.063333] ... fixed-purpose events: 0
    [ 0.063333] ... event mask: 0000000000000003
    [ 0.076681] Brought up 1 CPUs
    [ 0.076684] smpboot: Total of 1 processors activated (3725.25 BogoMIPS)
    [ 0.077871] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.078028] devtmpfs: initialized
    [ 0.078311] PM: Registering ACPI NVS region [mem 0x5f69a000-0x5f6fffff] (417792 bytes)
    [ 0.079835] RTC time: 0:17:13, date: 08/01/13
    [ 0.079897] NET: Registered protocol family 16
    [ 0.080138] ACPI: bus type PCI registered
    [ 0.080221] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.080225] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.080227] PCI: Using MMCONFIG for extended config space
    [ 0.080229] PCI: Using configuration type 1 for base access
    [ 0.081113] bio: create slab <bio-0> at 0
    [ 0.081231] ACPI: Added _OSI(Module Device)
    [ 0.081234] ACPI: Added _OSI(Processor Device)
    [ 0.081237] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.081239] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.082662] ACPI: EC: Look up EC in DSDT
    [ 0.086937] ACPI: Interpreter enabled
    [ 0.086956] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130328/hwxface-568)
    [ 0.086962] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568)
    [ 0.086980] ACPI: (supports S0 S3 S4 S5)
    [ 0.086983] ACPI: Using IOAPIC for interrupt routing
    [ 0.087016] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.087127] ACPI: No dock devices found.
    [ 0.100886] ACPI: Power Resource [CTHT] (off)
    [ 0.103939] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.104651] acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.104655] acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.104658] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.104662] acpi PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] (ignored)
    [ 0.104665] acpi PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
    [ 0.104668] acpi PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
    [ 0.104672] acpi PNP0A08:00: host bridge window [mem 0x60000000-0xfebfffff] (ignored)
    [ 0.104675] PCI: root bus 00: using default resources
    [ 0.104777] PCI host bridge to bus 0000:00
    [ 0.104781] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.104785] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.104788] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    [ 0.104800] pci 0000:00:00.0: [8086:2590] type 00 class 0x060000
    [ 0.104921] pci 0000:00:02.0: [8086:2592] type 00 class 0x030000
    [ 0.104933] pci 0000:00:02.0: reg 10: [mem 0xb0080000-0xb00fffff]
    [ 0.104939] pci 0000:00:02.0: reg 14: [io 0x1800-0x1807]
    [ 0.104946] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff pref]
    [ 0.104953] pci 0000:00:02.0: reg 1c: [mem 0xb0040000-0xb007ffff]
    [ 0.105035] pci 0000:00:02.1: [8086:2792] type 00 class 0x038000
    [ 0.105045] pci 0000:00:02.1: reg 10: [mem 0x00000000-0x0007ffff]
    [ 0.105212] pci 0000:00:1b.0: [8086:2668] type 00 class 0x040300
    [ 0.105235] pci 0000:00:1b.0: reg 10: [mem 0xb0000000-0xb0003fff 64bit]
    [ 0.105333] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.105390] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.105451] pci 0000:00:1c.0: [8086:2660] type 01 class 0x060400
    [ 0.105553] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.105593] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.105654] pci 0000:00:1c.2: [8086:2664] type 01 class 0x060400
    [ 0.105755] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.105803] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.105861] pci 0000:00:1d.0: [8086:2658] type 00 class 0x0c0300
    [ 0.105915] pci 0000:00:1d.0: reg 20: [io 0x1820-0x183f]
    [ 0.106742] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.106797] pci 0000:00:1d.1: [8086:2659] type 00 class 0x0c0300
    [ 0.106852] pci 0000:00:1d.1: reg 20: [io 0x1840-0x185f]
    [ 0.106930] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.106985] pci 0000:00:1d.2: [8086:265a] type 00 class 0x0c0300
    [ 0.107039] pci 0000:00:1d.2: reg 20: [io 0x1860-0x187f]
    [ 0.107119] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.107171] pci 0000:00:1d.3: [8086:265b] type 00 class 0x0c0300
    [ 0.107225] pci 0000:00:1d.3: reg 20: [io 0x1880-0x189f]
    [ 0.107306] pci 0000:00:1d.3: System wakeup disabled by ACPI
    [ 0.107374] pci 0000:00:1d.7: [8086:265c] type 00 class 0x0c0320
    [ 0.107398] pci 0000:00:1d.7: reg 10: [mem 0xb0004000-0xb00043ff]
    [ 0.107497] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.107550] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.107609] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.107721] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.107778] pci 0000:00:1f.0: [8086:2641] type 00 class 0x060100
    [ 0.107883] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
    [ 0.107889] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO
    [ 0.107896] pci 0000:00:1f.0: LPC Generic IO decode 2 PIO at 0300-030f
    [ 0.107987] pci 0000:00:1f.1: [8086:266f] type 00 class 0x01018a
    [ 0.108004] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
    [ 0.108016] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
    [ 0.108029] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
    [ 0.108041] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
    [ 0.108053] pci 0000:00:1f.1: reg 20: [io 0x1810-0x181f]
    [ 0.108175] pci 0000:00:1f.3: [8086:266a] type 00 class 0x0c0500
    [ 0.108246] pci 0000:00:1f.3: reg 20: [io 0x18e0-0x18ff]
    [ 0.108477] pci 0000:02:00.0: [11ab:4351] type 00 class 0x020000
    [ 0.108510] pci 0000:02:00.0: reg 10: [mem 0xb4000000-0xb4003fff 64bit]
    [ 0.108527] pci 0000:02:00.0: reg 18: [io 0x2000-0x20ff]
    [ 0.108674] pci 0000:02:00.0: supports D1 D2
    [ 0.108677] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.108734] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.110062] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.110076] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.110082] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.110087] pci 0000:00:1c.0: bridge window [mem 0xb4000000-0xb7ffffff]
    [ 0.110096] pci 0000:00:1c.0: bridge window [mem 0xd0000000-0xd3ffffff 64bit pref]
    [ 0.110182] pci 0000:00:1c.2: PCI bridge to [bus 04]
    [ 0.110188] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.110193] pci 0000:00:1c.2: bridge window [mem 0xb8000000-0xbbffffff]
    [ 0.110202] pci 0000:00:1c.2: bridge window [mem 0xd4000000-0xd7ffffff 64bit pref]
    [ 0.110279] pci 0000:06:00.0: [104c:8031] type 02 class 0x060700
    [ 0.110305] pci 0000:06:00.0: reg 10: [mem 0xfedff000-0xfedfffff]
    [ 0.110347] pci 0000:06:00.0: supports D1 D2
    [ 0.110350] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.110429] pci 0000:06:00.2: [104c:8032] type 00 class 0x0c0010
    [ 0.110455] pci 0000:06:00.2: reg 10: [mem 0xbc006000-0xbc0067ff]
    [ 0.110469] pci 0000:06:00.2: reg 14: [mem 0xbc000000-0xbc003fff]
    [ 0.110572] pci 0000:06:00.2: supports D1 D2
    [ 0.110575] pci 0000:06:00.2: PME# supported from D0 D1 D2 D3hot
    [ 0.110654] pci 0000:06:00.3: [104c:8033] type 00 class 0x018000
    [ 0.110680] pci 0000:06:00.3: reg 10: [mem 0xbc004000-0xbc005fff]
    [ 0.110790] pci 0000:06:00.3: supports D1 D2
    [ 0.110793] pci 0000:06:00.3: PME# supported from D0 D1 D2 D3hot
    [ 0.110870] pci 0000:06:00.4: [104c:8034] type 00 class 0x080500
    [ 0.110896] pci 0000:06:00.4: reg 10: [mem 0xbc007000-0xbc0070ff]
    [ 0.110911] pci 0000:06:00.4: reg 14: [mem 0xbc006c00-0xbc006cff]
    [ 0.110925] pci 0000:06:00.4: reg 18: [mem 0xbc006800-0xbc0068ff]
    [ 0.111013] pci 0000:06:00.4: supports D1 D2
    [ 0.111016] pci 0000:06:00.4: PME# supported from D0 D1 D2 D3hot
    [ 0.111098] pci 0000:06:02.0: [8086:4220] type 00 class 0x028000
    [ 0.111124] pci 0000:06:02.0: reg 10: [mem 0xbc008000-0xbc008fff]
    [ 0.111236] pci 0000:06:02.0: PME# supported from D0 D3hot D3cold
    [ 0.111354] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
    [ 0.111362] pci 0000:00:1e.0: bridge window [mem 0xbc000000-0xbc0fffff]
    [ 0.111371] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.111374] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
    [ 0.111379] pci 0000:06:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
    [ 0.111448] pci_bus 0000:07: busn_res: can not insert [bus 07-ff] under [bus 06] (conflicts with (null) [bus 06])
    [ 0.111455] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 0a
    [ 0.111459] pci_bus 0000:07: busn_res: can not insert [bus 07-0a] under [bus 06] (conflicts with (null) [bus 06])
    [ 0.111464] pci_bus 0000:07: [bus 07-0a] partially hidden behind transparent bridge 0000:06 [bus 06]
    [ 0.111487] pci_bus 0000:00: on NUMA node 0
    [ 0.111491] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.111495] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.111688] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 6 7 *10 14 15)
    [ 0.111768] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 6 7 *11 14 15)
    [ 0.111846] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 6 *7 10 14 15)
    [ 0.111924] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 6 7 *11 14 15)
    [ 0.112001] ACPI: PCI Interrupt Link [LNKE] (IRQs 5 6 7 10 14 15) *0, disabled.
    [ 0.112082] ACPI: PCI Interrupt Link [LNKF] (IRQs 5 6 7 11 14 15) *0, disabled.
    [ 0.112159] ACPI: PCI Interrupt Link [LNKG] (IRQs 5 6 7 10 14 15) *0, disabled.
    [ 0.112238] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 6 7 11 14 15) *10
    [ 0.113690] ACPI: Enabled 3 GPEs in block 00 to 1F
    [ 0.113703] acpi root: \_SB_.PCI0 notify handler is installed
    [ 0.113752] Found 1 acpi root devices
    [ 0.113811] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    [ 0.113894] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.113899] vgaarb: loaded
    [ 0.113901] vgaarb: bridge control possible 0000:00:02.0
    [ 0.113956] PCI: Using ACPI for IRQ routing
    [ 0.123744] PCI: pci_cache_line_size set to 64 bytes
    [ 0.123813] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    [ 0.123815] e820: reserve RAM buffer [mem 0x5f690000-0x5fffffff]
    [ 0.123948] NetLabel: Initializing
    [ 0.123950] NetLabel: domain hash size = 128
    [ 0.123952] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.123968] NetLabel: unlabeled traffic allowed by default
    [ 0.124001] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.124008] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.124013] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.126058] Switching to clocksource hpet
    [ 0.130773] pnp: PnP ACPI init
    [ 0.130800] ACPI: bus type PNP registered
    [ 0.131416] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.131421] system 00:00: [mem 0xf0000000-0xf0003fff] has been reserved
    [ 0.131425] system 00:00: [mem 0xf0004000-0xf0004fff] has been reserved
    [ 0.131429] system 00:00: [mem 0xf0005000-0xf0005fff] has been reserved
    [ 0.131432] system 00:00: [mem 0xf0008000-0xf000bfff] has been reserved
    [ 0.131436] system 00:00: [mem 0xfed20000-0xfed8ffff] has been reserved
    [ 0.131442] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.131661] pnp 00:01: [dma 4]
    [ 0.131697] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.131737] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.131879] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.131929] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.132035] system 00:05: [io 0x0300-0x030f] has been reserved
    [ 0.132039] system 00:05: [io 0x0800-0x080f] has been reserved
    [ 0.132042] system 00:05: [io 0x1000-0x107f] has been reserved
    [ 0.132046] system 00:05: [io 0x1180-0x11bf] has been reserved
    [ 0.132050] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.132113] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.132390] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.133678] pnp 00:08: [dma 1]
    [ 0.133784] pnp 00:08: Plug and Play ACPI device, IDs PNP0401 (active)
    [ 0.134099] pnp 00:09: [dma 3]
    [ 0.134174] pnp 00:09: Plug and Play ACPI device, IDs SMCf010 PNP0511 (active)
    [ 0.134235] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.134282] pnp 00:0b: Plug and Play ACPI device, IDs SYN1301 PNP0f13 (active)
    [ 0.134310] pnp: PnP ACPI: found 12 devices
    [ 0.134312] ACPI: bus type PNP unregistered
    [ 0.171975] pci 0000:06:00.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.171980] pci 0000:06:00.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.171985] pci 0000:00:1e.0: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000
    [ 0.171989] pci 0000:06:00.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    [ 0.171994] pci 0000:00:1e.0: bridge window [mem 0x04000000-0x03ffffff pref] to [bus 06] add_size 4000000
    [ 0.172003] pci 0000:00:1e.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    [ 0.172007] pci 0000:00:1e.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.172014] pci 0000:00:1e.0: BAR 15: assigned [mem 0x60000000-0x63ffffff pref]
    [ 0.172018] pci 0000:00:02.1: BAR 0: assigned [mem 0x64000000-0x6407ffff]
    [ 0.172025] pci 0000:00:1e.0: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.172029] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.172033] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.172040] pci 0000:00:1c.0: bridge window [mem 0xb4000000-0xb7ffffff]
    [ 0.172046] pci 0000:00:1c.0: bridge window [mem 0xd0000000-0xd3ffffff 64bit pref]
    [ 0.172055] pci 0000:00:1c.2: PCI bridge to [bus 04]
    [ 0.172059] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.172066] pci 0000:00:1c.2: bridge window [mem 0xb8000000-0xbbffffff]
    [ 0.172072] pci 0000:00:1c.2: bridge window [mem 0xd4000000-0xd7ffffff 64bit pref]
    [ 0.172083] pci 0000:06:00.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    [ 0.172087] pci 0000:06:00.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    [ 0.172090] pci 0000:06:00.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.172093] pci 0000:06:00.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.172097] pci 0000:06:00.0: BAR 15: assigned [mem 0x60000000-0x63ffffff pref]
    [ 0.172102] pci 0000:06:00.0: BAR 16: assigned [mem 0x68000000-0x6bffffff]
    [ 0.172105] pci 0000:06:00.0: BAR 13: assigned [io 0x4000-0x40ff]
    [ 0.172108] pci 0000:06:00.0: BAR 14: assigned [io 0x4400-0x44ff]
    [ 0.172112] pci 0000:06:00.0: CardBus bridge to [bus 07-0a]
    [ 0.172115] pci 0000:06:00.0: bridge window [io 0x4000-0x40ff]
    [ 0.172122] pci 0000:06:00.0: bridge window [io 0x4400-0x44ff]
    [ 0.172128] pci 0000:06:00.0: bridge window [mem 0x60000000-0x63ffffff pref]
    [ 0.172135] pci 0000:06:00.0: bridge window [mem 0x68000000-0x6bffffff]
    [ 0.172141] pci 0000:00:1e.0: PCI bridge to [bus 06]
    [ 0.172145] pci 0000:00:1e.0: bridge window [io 0x4000-0x4fff]
    [ 0.172152] pci 0000:00:1e.0: bridge window [mem 0xbc000000-0xbc0fffff]
    [ 0.172158] pci 0000:00:1e.0: bridge window [mem 0x60000000-0x63ffffff pref]
    [ 0.172482] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.172565] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.172568] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.172571] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.172575] pci_bus 0000:02: resource 1 [mem 0xb4000000-0xb7ffffff]
    [ 0.172578] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd3ffffff 64bit pref]
    [ 0.172581] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.172585] pci_bus 0000:04: resource 1 [mem 0xb8000000-0xbbffffff]
    [ 0.172588] pci_bus 0000:04: resource 2 [mem 0xd4000000-0xd7ffffff 64bit pref]
    [ 0.172591] pci_bus 0000:06: resource 0 [io 0x4000-0x4fff]
    [ 0.172594] pci_bus 0000:06: resource 1 [mem 0xbc000000-0xbc0fffff]
    [ 0.172598] pci_bus 0000:06: resource 2 [mem 0x60000000-0x63ffffff pref]
    [ 0.172601] pci_bus 0000:06: resource 4 [io 0x0000-0xffff]
    [ 0.172604] pci_bus 0000:06: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.172607] pci_bus 0000:07: resource 0 [io 0x4000-0x40ff]
    [ 0.172610] pci_bus 0000:07: resource 1 [io 0x4400-0x44ff]
    [ 0.172613] pci_bus 0000:07: resource 2 [mem 0x60000000-0x63ffffff pref]
    [ 0.172617] pci_bus 0000:07: resource 3 [mem 0x68000000-0x6bffffff]
    [ 0.172672] NET: Registered protocol family 2
    [ 0.172896] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.172951] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.173002] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.173041] TCP: reno registered
    [ 0.173044] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.173060] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.173150] NET: Registered protocol family 1
    [ 0.173167] pci 0000:00:02.0: Boot video device
    [ 0.174673] PCI: CLS 32 bytes, default 64
    [ 0.174731] Unpacking initramfs...
    [ 0.263828] Freeing initrd memory: 3004k freed
    [ 0.266187] Simple Boot Flag at 0x39 set to 0x1
    [ 0.266287] apm: BIOS not found.
    [ 0.266346] Scanning for low memory corruption every 60 seconds
    [ 0.266796] audit: initializing netlink socket (disabled)
    [ 0.266816] type=2000 audit(1375316232.266:1): initialized
    [ 0.281831] bounce pool size: 64 pages
    [ 0.281845] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.284147] VFS: Disk quotas dquot_6.5.2
    [ 0.284226] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.284495] msgmni has been set to 1728
    [ 0.284769] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.284804] io scheduler noop registered
    [ 0.284806] io scheduler deadline registered
    [ 0.284852] io scheduler cfq registered (default)
    [ 0.284987] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.285087] pcieport 0000:00:1c.2: irq 41 for MSI/MSI-X
    [ 0.285270] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.285273] vesafb: scrolling: redraw
    [ 0.285276] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.285482] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.315579] Console: switching to colour frame buffer device 128x48
    [ 0.345515] fb0: VESA VGA frame buffer device
    [ 0.345558] intel_idle: does not run on family 6 model 13
    [ 0.345597] GHES: HEST is not enabled!
    [ 0.345617] isapnp: Scanning for PnP cards...
    [ 0.658543] isapnp: No Plug & Play device found
    [ 0.658601] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.679337] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.680017] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.684556] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.686055] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.686096] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.686128] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.686159] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.686194] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.686311] mousedev: PS/2 mouse device common for all mice
    [ 0.686409] rtc_cmos 00:06: RTC can wake from S4
    [ 0.686571] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.686605] rtc_cmos 00:06: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.686637] cpuidle: using governor ladder
    [ 0.686639] cpuidle: using governor menu
    [ 0.686687] drop_monitor: Initializing network drop monitor service
    [ 0.686801] TCP: cubic registered
    [ 0.686956] NET: Registered protocol family 10
    [ 0.687187] NET: Registered protocol family 17
    [ 0.687199] Key type dns_resolver registered
    [ 0.687333] Using IPI No-Shortcut mode
    [ 0.687439] PM: Hibernation image not present or could not be loaded.
    [ 0.687450] registered taskstats version 1
    [ 0.687968] Magic number: 9:800:252
    [ 0.687999] pci 0000:00:1d.0: hash matches
    [ 0.688056] rtc_cmos 00:06: setting system clock to 2013-08-01 00:17:13 UTC (1375316233)
    [ 0.688187] Freeing unused kernel memory: 596k freed
    [ 0.688527] Write protecting the kernel text: 4156k
    [ 0.688561] Write protecting the kernel read-only data: 1316k
    [ 0.693760] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.699029] systemd-udevd[38]: starting version 204
    [ 0.749237] ACPI: bus type USB registered
    [ 0.749277] usbcore: registered new interface driver usbfs
    [ 0.749292] usbcore: registered new interface driver hub
    [ 0.753176] usbcore: registered new device driver usb
    [ 0.753809] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.753997] ehci-pci: EHCI PCI platform driver
    [ 0.754224] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 0.754238] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 0.754248] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
    [ 0.754268] ehci-pci 0000:00:1d.7: debug port 1
    [ 0.757154] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.761830] sdhci: Secure Digital Host Controller Interface driver
    [ 0.761835] sdhci: Copyright(c) Pierre Ossman
    [ 0.762138] sdhci-pci 0000:06:00.4: SDHCI controller found [104c:8034] (rev 0)
    [ 0.762387] mmc0: SDHCI controller on PCI [0000:06:00.4] using PIO
    [ 0.763154] mmc1: SDHCI controller on PCI [0000:06:00.4] using PIO
    [ 0.763242] mmc2: SDHCI controller on PCI [0000:06:00.4] using PIO
    [ 0.767069] SCSI subsystem initialized
    [ 0.769405] ACPI: bus type ATA registered
    [ 0.769889] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
    [ 0.769918] ehci-pci 0000:00:1d.7: irq 23, io mem 0xb0004000
    [ 0.776689] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 0.776917] hub 1-0:1.0: USB hub found
    [ 0.776924] hub 1-0:1.0: 8 ports detected
    [ 0.777495] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 0.777500] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 0.777510] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.777540] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
    [ 0.777717] hub 2-0:1.0: USB hub found
    [ 0.777722] hub 2-0:1.0: 2 ports detected
    [ 0.777972] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 0.777976] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 0.777984] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 0.778025] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
    [ 0.778188] hub 3-0:1.0: USB hub found
    [ 0.778193] hub 3-0:1.0: 2 ports detected
    [ 0.778441] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 0.778446] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 0.778453] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 0.778492] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
    [ 0.778666] hub 4-0:1.0: USB hub found
    [ 0.778671] hub 4-0:1.0: 2 ports detected
    [ 0.778926] uhci_hcd 0000:00:1d.3: setting latency timer to 64
    [ 0.778930] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 0.778938] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 0.778966] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
    [ 0.779135] hub 5-0:1.0: USB hub found
    [ 0.779140] hub 5-0:1.0: 2 ports detected
    [ 0.779655] libata version 3.00 loaded.
    [ 0.780086] ata_piix 0000:00:1f.1: version 2.13
    [ 0.780279] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 0.783440] scsi0 : ata_piix
    [ 0.786084] scsi1 : ata_piix
    [ 0.786168] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14
    [ 0.786171] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15
    [ 0.786694] tifm_core: MMC/SD card detected in socket 0:3
    [ 0.786781] ata2: port disabled--ignoring
    [ 0.823446] firewire_ohci 0000:06:00.2: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
    [ 0.950540] ata1.00: ATA-7: FUJITSU MHV2080AT PL, 000000A0, max UDMA/100
    [ 0.950544] ata1.00: 156301488 sectors, multi 16: LBA
    [ 0.950557] ata1.01: ATAPI: HL-DT-ST DVDRAM GSA-4082N, HH02, max UDMA/33
    [ 0.963752] ata1.00: configured for UDMA/100
    [ 0.976914] ata1.01: configured for UDMA/33
    [ 0.979353] scsi 0:0:0:0: Direct-Access ATA FUJITSU MHV2080A 0000 PQ: 0 ANSI: 5
    [ 0.982892] scsi 0:0:1:0: CD-ROM HL-DT-ST DVDRAM GSA-4082N HH02 PQ: 0 ANSI: 5
    [ 0.986322] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 0.986396] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.986400] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.986430] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.080286] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.080290] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.080606] sr 0:0:1:0: Attached scsi CD-ROM sr0
    [ 1.108366] sda: sda1 < sda5 > sda2 sda3 sda4
    [ 1.109847] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.190025] usb 1-5: new high-speed USB device number 4 using ehci-pci
    [ 1.266683] tsc: Refined TSC clocksource calibration: 1861.999 MHz
    [ 1.266690] Switching to clocksource tsc
    [ 1.317249] usb-storage 1-5:1.0: USB Mass Storage device detected
    [ 1.317314] scsi2 : usb-storage 1-5:1.0
    [ 1.317597] usbcore: registered new interface driver usb-storage
    [ 1.323429] firewire_core 0000:06:00.2: created device fw0: GUID 6600774200e09104, S400
    [ 1.420016] usb 1-6: new high-speed USB device number 5 using ehci-pci
    [ 1.546136] usb-storage 1-6:1.0: USB Mass Storage device detected
    [ 1.546307] scsi3 : usb-storage 1-6:1.0
    [ 1.770014] usb 2-1: new low-speed USB device number 2 using uhci_hcd
    [ 1.949297] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.961728] usbcore: registered new interface driver usbhid
    [ 1.961731] usbhid: USB HID core driver
    [ 2.148459] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.173364] usb 2-2: new low-speed USB device number 3 using uhci_hcd
    [ 2.320861] scsi 2:0:0:0: CD-ROM SONY DVD RW DRU-190A 1.62 PQ: 0 ANSI: 0
    [ 2.323718] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.323862] sr 2:0:0:0: Attached scsi CD-ROM sr1
    [ 2.547488] scsi 3:0:0:0: Direct-Access JetFlash Transcend 8GB 8.07 PQ: 0 ANSI: 2
    [ 2.548846] sd 3:0:0:0: [sdb] 15687680 512-byte logical blocks: (8.03 GB/7.48 GiB)
    [ 2.549467] sd 3:0:0:0: [sdb] Write Protect is off
    [ 2.549470] sd 3:0:0:0: [sdb] Mode Sense: 03 00 00 00
    [ 2.550095] sd 3:0:0:0: [sdb] No Caching mode page present
    [ 2.550415] sd 3:0:0:0: [sdb] Assuming drive cache: write through
    [ 2.554343] sd 3:0:0:0: [sdb] No Caching mode page present
    [ 2.554659] sd 3:0:0:0: [sdb] Assuming drive cache: write through
    [ 2.727731] sdb: sdb1
    [ 2.729968] sd 3:0:0:0: [sdb] No Caching mode page present
    [ 2.730299] sd 3:0:0:0: [sdb] Assuming drive cache: write through
    [ 2.731468] sd 3:0:0:0: [sdb] Attached SCSI removable disk
    [ 3.120230] systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.159302] systemd[1]: Set hostname to <ighost>.
    [ 3.828104] systemd[1]: Cannot add dependency job for unit acpid.service, ignoring: Unit acpid.service failed to load: No such file or directory. See system logs and 'systemctl status acpid.service' for details.
    [ 3.828451] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.828515] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.828533] systemd[1]: Starting Remote File Systems.
    [ 3.828551] systemd[1]: Reached target Remote File Systems.
    [ 3.828567] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.828615] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.828630] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.828661] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.828675] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.828705] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.828719] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.828753] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.828772] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.828816] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.828830] systemd[1]: Starting Paths.
    [ 3.828845] systemd[1]: Reached target Paths.
    [ 3.828861] systemd[1]: Starting Journal Socket.
    [ 3.828922] systemd[1]: Listening on Journal Socket.
    [ 3.828942] systemd[1]: Starting Setup Virtual Console...
    [ 3.829541] systemd[1]: Starting Create static device nodes in /dev...
    [ 3.859627] systemd[1]: Starting Apply Kernel Variables...
    [ 3.860503] systemd[1]: Mounting Huge Pages File System...
    [ 3.860890] systemd[1]: Starting Journal Service...
    [ 3.861380] systemd[1]: Started Journal Service.
    [ 3.861499] systemd[1]: Starting udev Kernel Socket.
    [ 3.861542] systemd[1]: Listening on udev Kernel Socket.
    [ 3.861615] systemd[1]: Starting udev Control Socket.
    [ 3.861652] systemd[1]: Listening on udev Control Socket.
    [ 3.861722] systemd[1]: Starting udev Coldplug all Devices...
    [ 3.862166] systemd[1]: Mounting Debug File System...
    [ 3.862572] systemd[1]: Mounting POSIX Message Queue File System...
    [ 3.862944] systemd[1]: Starting Encrypted Volumes.
    [ 3.862964] systemd[1]: Reached target Encrypted Volumes.
    [ 3.863003] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.863164] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.879599] systemd[1]: Started Set Up Additional Binary Formats.
    [ 3.914088] systemd[1]: Starting Load Kernel Modules...
    [ 3.914616] systemd[1]: Expecting device dev-disk-by\x2duuid-9fa4ccc9\x2d879c\x2d42b0\x2d8c42\x2d39ff67b9bf38.device...
    [ 3.914650] systemd[1]: Started File System Check on Root Device.
    [ 3.914670] systemd[1]: Mounting Temporary Directory...
    [ 3.930156] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 3.930608] systemd[1]: Expecting device dev-disk-by\x2duuid-BAA022C6A0228949.device...
    [ 3.930627] systemd[1]: Expecting device dev-disk-by\x2duuid-42143f2b\x2d29c6\x2d4174\x2dab7b\x2dfb1600c601e6.device...
    [ 5.034037] FS-Cache: Loaded
    [ 5.056025] RPC: Registered named UNIX socket transport module.
    [ 5.056030] RPC: Registered udp transport module.
    [ 5.056032] RPC: Registered tcp transport module.
    [ 5.056034] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 5.158185] EXT4-fs (sda5): re-mounted. Opts: data=ordered
    [ 5.291383] systemd-udevd[105]: starting version 204
    [ 5.355353] FS-Cache: Netfs 'nfs' registered for caching
    [ 6.472733] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 6.472878] ACPI: Lid Switch [LID0]
    [ 6.474425] ACPI: Video Device [GFX0] (multi-head: yes rom: yes post: no)
    [ 6.474491] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input2
    [ 6.475351] ACPI: Requesting acpi_cpufreq
    [ 6.475712] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 6.475718] ACPI: Power Button [PWRB]
    [ 6.475794] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
    [ 6.475798] ACPI: Sleep Button [SLPB]
    [ 6.477173] ACPI: AC Adapter [AC] (on-line)
    [ 6.524341] tsc: Marking TSC unstable due to TSC halts in idle
    [ 6.525067] ACPI: acpi_idle registered with cpuidle
    [ 6.525459] ACPI: Battery Slot [CMB0] (battery absent)
    [ 6.525775] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 6.525782] ACPI: Power Button [PWRF]
    [ 6.529302] Switching to clocksource hpet
    [ 6.623493] wmi: Mapper loaded
    [ 6.706893] NET: Registered protocol family 23
    [ 6.749372] found SMC SuperIO Chip (devid=0x7a rev=01 base=0x004e): LPC47N227
    [ 6.749400] smsc_superio_flat(): fir: 0x6f8, sir: 0x2f8, dma: 03, irq: 3, mode: 0x0e
    [ 6.749418] smsc_ircc_present(), addr 0x06f8 - no device found!
    [ 6.752284] parport_pc 00:08: reported by Plug and Play ACPI
    [ 6.752364] parport0: PC-style at 0x378 (0x778), irq 5 [PCSPP,TRISTATE]
    [ 6.759649] thermal LNXTHERM:00: registered as thermal_zone0
    [ 6.759653] ACPI: Thermal Zone [TZ1] (40 C)
    [ 6.761691] thermal LNXTHERM:01: registered as thermal_zone1
    [ 6.761694] ACPI: Thermal Zone [TZ2] (55 C)
    [ 6.775603] ACPI: Fan [FAN0] (off)
    [ 6.868349] sky2: driver version 1.30
    [ 6.868486] sky2 0000:02:00.0: Yukon-2 FE chip revision 1
    [ 6.868560] sky2 0000:02:00.0: irq 42 for MSI/MSI-X
    [ 6.868879] sky2 0000:02:00.0 eth0: addr 00:e0:91:0f:4a:19
    [ 6.886311] intel_rng: FWH not detected
    [ 7.052962] ACPI Warning: 0x00001028-0x0000102f SystemIO conflicts with Region \PMIO 1 (20130328/utaddress-251)
    [ 7.052973] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.052978] ACPI Warning: 0x000011b0-0x000011bf SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
    [ 7.052983] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.052985] ACPI Warning: 0x00001180-0x000011af SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
    [ 7.052990] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.052992] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.106512] Linux agpgart interface v0.103
    [ 7.142882] agpgart-intel 0000:00:00.0: Intel 915GM Chipset
    [ 7.143028] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
    [ 7.144655] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 7.144970] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
    [ 7.217080] yenta_cardbus 0000:06:00.0: CardBus bridge found [1854:0028]
    [ 7.217106] yenta_cardbus 0000:06:00.0: Using INTVAL to route CSC interrupts to PCI
    [ 7.217109] yenta_cardbus 0000:06:00.0: Routing CardBus interrupts to PCI
    [ 7.217116] yenta_cardbus 0000:06:00.0: TI: mfunc 0x01d01002, devctl 0x64
    [ 7.228515] [drm] Initialized drm 1.1.0 20060810
    [ 7.266001] cfg80211: Calling CRDA to update world regulatory domain
    [ 7.297286] lib80211: common routines for IEEE802.11 drivers
    [ 7.297292] lib80211_crypt: registered algorithm 'NULL'
    [ 7.301107] [drm] Memory usable by graphics device = 256M
    [ 7.301113] checking generic (c0000000 300000) vs hw (c0000000 10000000)
    [ 7.301116] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 7.301141] Console: switching to colour dummy device 80x25
    [ 7.301257] i915 0000:00:02.0: setting latency timer to 64
    [ 7.302295] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 7.302300] [drm] Driver supports precise vblank timestamp query.
    [ 7.302376] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 7.316734] libipw: 802.11 data/management/control stack, git-1.1.13
    [ 7.316737] libipw: Copyright (C) 2004-2005 Intel Corporation <[email protected]>
    [ 7.323825] ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.2.2kmprq
    [ 7.323828] ipw2200: Copyright(c) 2003-2006 Intel Corporation
    [ 7.434003] [drm] initialized overlay support
    [ 7.447402] yenta_cardbus 0000:06:00.0: ISA IRQ mask 0x0cd8, PCI irq 16
    [ 7.447408] yenta_cardbus 0000:06:00.0: Socket status: 30000006
    [ 7.447414] pci_bus 0000:06: Raising subordinate bus# of parent bus (#06) from #06 to #0a
    [ 7.447425] yenta_cardbus 0000:06:00.0: pcmcia: parent PCI bridge window: [io 0x4000-0x4fff]
    [ 7.447429] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x4fff:
    [ 7.448715] excluding 0x4000-0x40ff 0x4400-0x44ff
    [ 7.454021] yenta_cardbus 0000:06:00.0: pcmcia: parent PCI bridge window: [mem 0xbc000000-0xbc0fffff]
    [ 7.454026] pcmcia_socket pcmcia_socket0: cs: memory probe 0xbc000000-0xbc0fffff:
    [ 7.454030] excluding 0xbc000000-0xbc00ffff
    [ 7.454045] yenta_cardbus 0000:06:00.0: pcmcia: parent PCI bridge window: [mem 0x60000000-0x63ffffff pref]
    [ 7.454049] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x63ffffff:
    [ 7.454061] excluding 0x60000000-0x63ffffff
    [ 7.457625] ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
    [ 7.726030] input: Plus More Enterprise LTD. USB-compliant keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input6
    [ 7.727184] input: A4Tech PS/2+USB Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/input/input7
    [ 7.730133] hid-generic 0003:0518:0001.0002: input,hidraw0: USB HID v1.10 Keyboard [Plus More Enterprise LTD. USB-compliant keyboard] on usb-0000:00:1d.0-2/input0
    [ 7.730188] a4tech 0003:09DA:000A.0001: input,hidraw1: USB HID v1.10 Mouse [A4Tech PS/2+USB Mouse] on usb-0000:00:1d.0-1/input0
    [ 7.732273] input: Plus More Enterprise LTD. USB-compliant keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input8
    [ 7.732416] hid-generic 0003:0518:0001.0003: input,hidraw2: USB HID v1.10 Mouse [Plus More Enterprise LTD. USB-compliant keyboard] on usb-0000:00:1d.0-2/input1
    [ 7.797551] ipw2200: Radio Frequency Kill Switch is On:
    Kill switch must be turned off for wireless networking to work.
    [ 7.800799] ipw2200: Detected geography ZZR (14 802.11bg channels, 0 802.11a channels)
    [ 7.893088] input: PC Speaker as /devices/platform/pcspkr/input/input9
    [ 7.991976] tc1100_wmi: HP Compaq TC1100 Tablet WMI Extras loaded
    [ 8.038907] fbcon: inteldrmfb (fb0) is primary device
    [ 8.048603] ppdev: user-space parallel port driver
    [ 8.059482] microcode: CPU0 sig=0x6d8, pf=0x20, revision=0x20
    [ 8.059630] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 8.083387] Console: switching to colour frame buffer device 128x48
    [ 8.089032] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 8.089037] i915 0000:00:02.0: registered panic notifier
    [ 8.089048] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 8.089555] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    [ 8.110287] systemd-udevd[128]: renamed network interface eth0 to enp2s0
    [ 8.123115] iTCO_vendor_support: vendor-support=0
    [ 8.199308] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af:
    [ 8.200763] excluding 0x170-0x177 0x1f0-0x1f7 0x300-0x30f 0x370-0x37f
    [ 8.201559] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff:
    [ 8.201948] excluding 0x3f0-0x3ff 0x4d0-0x4d7
    [ 8.202341] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff:
    [ 8.202952] clean.
    [ 8.203000] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7:
    [ 8.204946] clean.
    [ 8.205013] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
    [ 8.205024] excluding 0xc0000-0xc7fff 0xdc000-0xfffff
    [ 8.205096] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
    [ 8.205128] clean.
    [ 8.205177] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
    [ 8.205200] excluding 0x60000000-0x60ffffff
    [ 8.205252] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff:
    [ 8.205948] clean.
    [ 8.260695] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 8.260987] input: HDA Intel Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 8.261238] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 8.261465] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    [ 8.261705] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    [ 8.261931] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
    [ 8.263318] ACPI Warning: 0x000018e0-0x000018ff SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130328/utaddress-251)
    [ 8.263328] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.264893] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 8.264941] iTCO_wdt: Found a ICH6-M TCO device (Version=2, TCOBASE=0x1060)
    [ 8.268408] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 8.283555] systemd-udevd[123]: renamed network interface eth1 to wlp6s2
    [ 8.508098] psmouse serio2: synaptics: Touchpad model: 1, fw: 5.9, id: 0x23aeb3, caps: 0xa04713/0x10008/0x0, board id: 3655, fw id: 28762
    [ 8.543316] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input16
    [ 9.444744] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 9.746168] fuse init (API version 7.22)
    [ 9.795856] Adding 2096476k swap on /dev/sda4. Priority:-1 extents:1 across:2096476k FS
    [ 10.804356] sky2 0000:02:00.0 enp2s0: enabling interface
    [ 10.804455] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
    [ 12.524356] sky2 0000:02:00.0 enp2s0: Link is up at 100 Mbps, full duplex, flow control rx
    [ 12.524399] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
    [ 15.965900] systemd-logind[185]: Watching system buttons on /dev/input/event5 (Power Button)
    [ 15.966015] systemd-logind[185]: Watching system buttons on /dev/input/event2 (Video Bus)
    [ 15.966122] systemd-logind[185]: Watching system buttons on /dev/input/event3 (Power Button)
    [ 15.966231] systemd-logind[185]: Watching system buttons on /dev/input/event1 (Lid Switch)
    [ 15.966337] systemd-logind[185]: Watching system buttons on /dev/input/event4 (Sleep Button)
    [ 29.280330] systemd[1]: Unit [email protected] entered failed state.
    [ 29.380404] systemd[1]: [email protected] holdoff time over, scheduling restart.
    [ 29.383839] systemd[1]: Unit [email protected] entered failed state.
    [ 283.968752] sky2 0000:02:00.0 enp2s0: Link is down
    [ 288.653377] sky2 0000:02:00.0 enp2s0: Link is up at 100 Mbps, full duplex, flow control rx
    [ 301.725348] sky2 0000:02:00.0 enp2s0: Link is down
    [ 303.401808] sky2 0000:02:00.0 enp2s0: Link is up at 100 Mbps, full duplex, flow control rx
    [ 978.946847] usb 1-5: USB disconnect, device number 4
    [ 978.952420] cdrom: issuing MRW background format suspend
    [36653.884288] hda-intel 0000:00:1b.0: spurious response 0x0:0x0, last cmd=0xb70740
    [36653.884298] hda-intel 0000:00:1b.0: spurious response 0x0:0x0, last cmd=0xb70740
    [36653.884304] hda-intel 0000:00:1b.0: spurious response 0x0:0x0, last cmd=0xb70740
    [36653.884310] hda-intel 0000:00:1b.0: spurious response 0x0:0x0, last cmd=0xb70740
    [36653.983274] hda-intel 0000:00:1b.0: spurious response 0x0:0x0, last cmd=0xb70740
    [36653.983488] hda-intel 0000:00:1b.0: spurious response 0x0:0x0, last cmd=0xb70740
    [40311.593171] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [40311.595838] sr 0:0:1:0: Attached scsi generic sg1 type 5
    [40311.596002] sd 3:0:0:0: Attached scsi generic sg2 type 0
    [43081.692487] EXT4-fs (sda5): re-mounted. Opts: data=ordered,commit=0
    [43081.983029] EXT4-fs (sda2): re-mounted. Opts: commit=0
    [43083.232434] ipw2200: Failed to send POWER_MODE: Command timed out.

    cfr wrote:
    Welcome to the forums.
    Have you tried uninstalling xf86-input-keyboard? If you want evdev to handle it, that is.
    Does the keyboard work when you decrypt the encryption device (or maybe you use a keyfile)?
    Does it work if you boot to the command line?
    Is the keyboard hook included in the initramfs? (Though I don't think this should matter for later.)
    first place, tnx for the answer and sorry cause it took too long for me to answer back.
    I uninstalled xf86-input-keyboard. now i get an error at boot time but it passes to arch so no big deal.
    About encryption device I have no idea cause i never chose to encrypt anything.
    About working at command line, answer is no. It is not working in my bash and also at tty1.
    about keyboard hook, Answer is yes, it is included.
    I'm really enjoying my systems speed with arch but this problem is really killing me. Now i'm using my laptop like a PC no movement allowed cause I must take a keyboard with me.
    and really, an active forum and just one answer to my question!

  • Install on mdadm-raid1 / cryptsetup home - GRUB-Problems

    I try to install arch-linux on some lvl1-raids done with mdadm and a home-partition encrypted with cryptsetup.
    I dont want an lvm, just some lvl1 raids.
    I've added encrypt and mdadm_udev to the kernel-image.
    I've got two harddisks in my laptop, one is filled with fedora-stuff which I want to copy to the new system. So I created the raids with /dev/sdbX and missing.
    /dev/md0 - /dev/sdb1 & missing is swap
    /dev/md1 - /dev/sdb2 & missing is root (ext4)
    /dev/md2 - /dev/sdb3 & missing is /boot (ext4)
    /dev/md3 - /dev/sdb4 & missing is /dev/mapper/home (luks) is /home (ext4)
    I tried to install grub as boot-manager, grub-mkconfig fail:
    sh-4.2# grub-mkconfig -o /boot/grub/grub.cfg
    Generating grub configuration file ...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    /usr/bin/grub-probe: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    error: out of memory
    error: syntax error.
    error: Incorrect command.
    error: syntax error.
    Syntax error at line 168
    Syntax error detected in generated GRUB config file.
    Ensure that there are no errors in /etc/default/grub
    and /etc/grub.d/* files or please file a bug report with
    /boot/grub/grub.cfg.new file attached.done
    I didn't touched /etc/default/grub nor any file of /etc/grub.d/*. Just added my home-partition to /etc/crypttab and my raids to /etc/mdadm.conf ... else I let genfstab generate my /etc/fstab.
    My /boot/grub/grub.cfg.new:
    http://pastebin.com/PXGY6GrN
    Hope you might help me
    Best Regards
    Ruben

    Thanks for your hint, the line with "out of memory" and following are gone now.
    The "grub-install --target=i386-pc --recheck /dev/sdb" outputs the following:
    grub-install: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    grub-install: warning: Couldn't find physical volume '(null)'. Some modules may be missing from core image...
    grub-install: error: cannot open '/usr/lib/grub/i386-pc/msdos.mod': No such file or directory.

  • Raid0 Btrfs grub boot experiments full size devices (See Edits)

    The following source has detailed info on a method to utilize grub2 in arch raid bootable installs:
    http://travishegner.com/2012/02/boot-ar … 42AA7OVv3T
    My utilization involves Compact Flash devices in raid0 and was successfully used to install the latest linux kernel yesterday.
    The key seems to be to skip grub steps in the archiso and install grub2-bios in a subsequent chroot, utilizing the mdadm.conf steps and mkinitcpio -p linux.  Grub2 is installed in the mbr of the boot device.
    I setup the raid0 array in gparted and provided 100mb of free space before the primary boot partition which is also 100mb.  The rest of the 16GB device is partitioned as ext3 .
    The second device is similarly partitoned with 100mb of free space followed by a primary partition of 100mb swap and the rest partitioned the same size as boot device and is ext3.
    During the archiso install, the manual partitioning is skipped with "done", preserving the parttioning and the mountpoints are then established.  All grub steps are skipped after configuring the system. 
    I used remote install from mirror to install the latest linux kernel.
    The linux kernel and its associated udev,mdadm and init results in mdadm devices with names such as md126, md127 or the like.  Mine came out as md127.
    The resulting raid0 array using maxell 16GB udma devices boots in about 20 seconds and in hdparm read speed is 90mb/s.
    The speed reading is not as expected, it should be 180mb/s.  I believe this is due to a failed dma step in the install of linux.
    I am hopeful that can be corrected in the near future.
    I am using xfce4 and have installed  xorg, xfce4,vlc,mirage,kdenlive,smplayer,gparted, hdparm,firefox and jumanji-git subsequent to initial booting.
    Happy camper again!
    EDIT:  Prior installs of raid0 utilized UDMA protocol but this linux kernel does not provide ioctl dma for these devices altho the maxell CF card is labeled UDMA.
    Perhaps a guru can explain how to correct this limitation?
    Edit:  The hdparm reads are weird as shown below:
    sh-4.2# hdparm -tT /dev/md1
    /dev/md1:
    Timing cached reads: 1982 MB in 2.00 seconds = 990.90 MB/sec
    Timing buffered disk reads: 272 MB in 3.01 seconds = 90.41 MB/sec
    sh-4.2# hdparm -tT /dev/sda2
    /dev/sda2:
    Timing cached reads: 1988 MB in 2.00 seconds = 994.16 MB/sec
    Timing buffered disk reads: 258 MB in 3.02 seconds = 85.33 MB/sec
    sh-4.2# hdparm -tT /dev/sdb2a2
    /dev/sdb2a2: No such file or directory
    sh-4.2# hdparm -tT /dev/sdb2
    /dev/sdb2:
    Timing cached reads: 1990 MB in 2.00 seconds = 994.97 MB/sec
    Timing buffered disk reads: 258 MB in 3.02 seconds = 85.51 MB/sec
    sh-4.2#
    Thus the speed of the array is not twice the speed of the devices.
    Why?
    EDIT: Further data on the problem:
    sh-4.2# dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.3.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.0 20120407 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Apr 14 09:48:37 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=525bf29b-6c96-4f58-bb2a-931052c7697f ro quiet add_efi_memmap
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cf7f0000 (usable)
    [ 0.000000] BIOS-e820: 00000000cf7f0000 - 00000000cf7f3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000cf7f3000 - 00000000cf800000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. 945GCM-S2C/945GCM-S2C, BIOS F4 11/08/2007
    [ 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 = 0xcf7f0 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-C9FFF write-protect
    [ 0.000000] CA000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FF0000000 write-back
    [ 0.000000] 3 base 0CF800000 mask FFF800000 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] found SMP MP-table at [ffff8800000f4c00] f4c00
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000cf7f0000
    [ 0.000000] 0000000000 - 00cf600000 page 2M
    [ 0.000000] 00cf600000 - 00cf7f0000 page 4k
    [ 0.000000] kernel direct mapping tables up to cf7f0000 @ 1fffa000-20000000
    [ 0.000000] RAMDISK: 37a1a000 - 37d05000
    [ 0.000000] ACPI: RSDP 00000000000f6540 00014 (v00 GBT )
    [ 0.000000] ACPI: RSDT 00000000cf7f3040 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: FACP 00000000cf7f30c0 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: DSDT 00000000cf7f3180 03844 (v01 GBT GBTUACPI 00001000 MSFT 0100000C)
    [ 0.000000] ACPI: FACS 00000000cf7f0000 00040
    [ 0.000000] ACPI: HPET 00000000cf7f6b00 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    [ 0.000000] ACPI: MCFG 00000000cf7f6b80 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: APIC 00000000cf7f6a40 00068 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: SSDT 00000000cf7f6c00 0015C (v01 PmRef Cpu0Ist 00003000 INTL 20040311)
    [ 0.000000] ACPI: SSDT 00000000cf7f7090 00167 (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-00000000cf7f0000
    [ 0.000000] Initmem setup node 0 0000000000000000-00000000cf7f0000
    [ 0.000000] NODE_DATA [00000000cf7eb000 - 00000000cf7effff]
    [ 0.000000] [ffffea0000000000-ffffea00033fffff] PMD -> [ffff8800cba00000-ffff8800cedfffff] 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 memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x000cf7f0
    [ 0.000000] On node 0 totalpages: 849791
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3914 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13216 pages used for memmap
    [ 0.000000] DMA32 zone: 832592 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_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] 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 2 CPUs, 0 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 cf800000 (gap: cf800000:20800000)
    [ 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 @ffff8800cf400000 s82176 r8192 d24320 u1048576
    [ 0.000000] pcpu-alloc: s82176 r8192 d24320 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 836506
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=525bf29b-6c96-4f58-bb2a-931052c7697f ro quiet 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: 3331536k/3399616k available (4495k kernel code, 452k absent, 67628k reserved, 4327k data, 732k 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] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 13631488 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 2800.194 MHz processor.
    [ 0.003339] Calibrating delay loop (skipped), value calculated using timer frequency.. 5602.73 BogoMIPS (lpj=9333980)
    [ 0.003347] pid_max: default: 32768 minimum: 301
    [ 0.003388] Security Framework initialized
    [ 0.003396] AppArmor: AppArmor disabled by boot time parameter
    [ 0.004365] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.007269] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008386] Mount-cache hash table entries: 256
    [ 0.008630] Initializing cgroup subsys cpuacct
    [ 0.008636] Initializing cgroup subsys memory
    [ 0.008650] Initializing cgroup subsys devices
    [ 0.008654] Initializing cgroup subsys freezer
    [ 0.008657] Initializing cgroup subsys net_cls
    [ 0.008661] Initializing cgroup subsys blkio
    [ 0.008721] CPU: Physical Processor ID: 0
    [ 0.008724] CPU: Processor Core ID: 0
    [ 0.008728] mce: CPU supports 4 MCE banks
    [ 0.008743] CPU0: Thermal monitoring enabled (TM1)
    [ 0.008751] using mwait in idle threads.
    [ 0.010140] ACPI: Core revision 20120111
    [ 0.013347] ftrace: allocating 17486 entries in 69 pages
    [ 0.023811] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.057795] CPU0: Intel(R) Pentium(R) D CPU 2.80GHz stepping 04
    [ 0.059996] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
    [ 0.059996] ... version: 0
    [ 0.059996] ... bit width: 40
    [ 0.059996] ... generic registers: 18
    [ 0.059996] ... value mask: 000000ffffffffff
    [ 0.059996] ... max period: 0000007fffffffff
    [ 0.059996] ... fixed-purpose events: 0
    [ 0.059996] ... event mask: 000000000003ffff
    [ 0.076759] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.103352] Booting Node 0, Processors #1 Ok.
    [ 0.103357] smpboot cpu 1: start_ip = 9a000
    [ 0.116693] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.123335] Brought up 2 CPUs
    [ 0.123339] Total of 2 processors activated (11205.47 BogoMIPS).
    [ 0.125088] devtmpfs: initialized
    [ 0.127567] PM: Registering ACPI NVS region at cf7f0000 (12288 bytes)
    [ 0.127909] NET: Registered protocol family 16
    [ 0.128107] ACPI: bus type pci registered
    [ 0.128210] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.128216] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.141075] PCI: Using configuration type 1 for base access
    [ 0.141255] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.141259] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.141261] mtrr: corrected configuration.
    [ 0.141925] bio: create slab <bio-0> at 0
    [ 0.141925] ACPI: Added _OSI(Module Device)
    [ 0.141925] ACPI: Added _OSI(Processor Device)
    [ 0.141925] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.141925] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.141925] ACPI: EC: Look up EC in DSDT
    [ 0.146902] ACPI: SSDT 00000000cf7f7000 00087 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.147150] ACPI: Dynamic OEM Table Load:
    [ 0.147155] ACPI: SSDT (null) 00087 (v01 PmRef Cpu1Ist 00003000 INTL 20040311)
    [ 0.147342] ACPI: Interpreter enabled
    [ 0.147350] ACPI: (supports S0 S1 S4 S5)
    [ 0.147377] ACPI: Using IOAPIC for interrupt routing
    [ 0.153543] ACPI: No dock devices found.
    [ 0.153551] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.153634] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.153747] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.153751] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.153755] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.153759] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    [ 0.153763] pci_root PNP0A03:00: host bridge window [mem 0xcf800000-0xfebfffff] (ignored)
    [ 0.153766] PCI: root bus 00: using default resources
    [ 0.153839] PCI host bridge to bus 0000:00
    [ 0.153844] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.153847] pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff]
    [ 0.153861] pci 0000:00:00.0: [8086:2770] type 0 class 0x000600
    [ 0.153926] pci 0000:00:02.0: [8086:2772] type 0 class 0x000300
    [ 0.153942] pci 0000:00:02.0: reg 10: [mem 0xe2000000-0xe207ffff]
    [ 0.153950] pci 0000:00:02.0: reg 14: [io 0xb000-0xb007]
    [ 0.153959] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
    [ 0.153967] pci 0000:00:02.0: reg 1c: [mem 0xe2080000-0xe20bffff]
    [ 0.154057] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
    [ 0.154076] pci 0000:00:1b.0: reg 10: [mem 0xe20c0000-0xe20c3fff 64bit]
    [ 0.154159] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.154188] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
    [ 0.154272] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.154303] pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
    [ 0.154387] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.154420] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
    [ 0.154468] pci 0000:00:1d.0: reg 20: [io 0xb400-0xb41f]
    [ 0.154507] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
    [ 0.154555] pci 0000:00:1d.1: reg 20: [io 0xb800-0xb81f]
    [ 0.154593] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
    [ 0.154642] pci 0000:00:1d.2: reg 20: [io 0xbc00-0xbc1f]
    [ 0.154682] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
    [ 0.154731] pci 0000:00:1d.3: reg 20: [io 0xc000-0xc01f]
    [ 0.154782] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
    [ 0.154804] pci 0000:00:1d.7: reg 10: [mem 0xe20c4000-0xe20c43ff]
    [ 0.154906] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
    [ 0.154986] pci 0000:00:1f.0: [8086:27b8] type 0 class 0x000601
    [ 0.155081] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
    [ 0.155087] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
    [ 0.155138] pci 0000:00:1f.1: [8086:27df] type 0 class 0x000101
    [ 0.155155] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
    [ 0.155167] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
    [ 0.155178] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
    [ 0.155189] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
    [ 0.155201] pci 0000:00:1f.1: reg 20: [io 0xf000-0xf00f]
    [ 0.155245] pci 0000:00:1f.2: [8086:27c0] type 0 class 0x000101
    [ 0.155263] pci 0000:00:1f.2: reg 10: [io 0xd400-0xd407]
    [ 0.155274] pci 0000:00:1f.2: reg 14: [io 0xd800-0xd803]
    [ 0.155284] pci 0000:00:1f.2: reg 18: [io 0xdc00-0xdc07]
    [ 0.155294] pci 0000:00:1f.2: reg 1c: [io 0xe000-0xe003]
    [ 0.155304] pci 0000:00:1f.2: reg 20: [io 0xe400-0xe40f]
    [ 0.155348] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.155368] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
    [ 0.155427] pci 0000:00:1f.3: reg 20: [io 0x0500-0x051f]
    [ 0.155517] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.155522] pci 0000:00:1c.0: bridge window [io 0x9000-0x9fff]
    [ 0.155604] pci 0000:02:00.0: [10ec:8136] type 0 class 0x000200
    [ 0.155626] pci 0000:02:00.0: reg 10: [io 0xa000-0xa0ff]
    [ 0.155661] pci 0000:02:00.0: reg 18: [mem 0xe1000000-0xe1000fff 64bit]
    [ 0.155703] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.155794] pci 0000:02:00.0: supports D1 D2
    [ 0.155796] pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.155827] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.155840] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 0.155846] pci 0000:00:1c.1: bridge window [io 0xa000-0xafff]
    [ 0.155851] pci 0000:00:1c.1: bridge window [mem 0xe0000000-0xe1ffffff]
    [ 0.155928] pci 0000:00:1e.0: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.155934] pci 0000:00:1e.0: bridge window [io 0x8000-0x8fff]
    [ 0.155944] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.155947] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode)
    [ 0.155969] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.156112] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    [ 0.156164] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
    [ 0.156226] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.156341] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.156346] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.156349] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.166267] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
    [ 0.166357] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    [ 0.166444] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
    [ 0.166529] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    [ 0.166614] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    [ 0.166711] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    [ 0.166797] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    [ 0.166884] ACPI: PCI Interrupt Link [LNK1] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
    [ 0.167018] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.167018] vgaarb: loaded
    [ 0.167018] vgaarb: bridge control possible 0000:00:02.0
    [ 0.167018] PCI: Using ACPI for IRQ routing
    [ 0.168569] PCI: pci_cache_line_size set to 64 bytes
    [ 0.168650] reserve RAM buffer: 000000000009f800 - 000000000009ffff
    [ 0.168654] reserve RAM buffer: 00000000cf7f0000 - 00000000cfffffff
    [ 0.168821] NetLabel: Initializing
    [ 0.168824] NetLabel: domain hash size = 128
    [ 0.168826] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.168852] NetLabel: unlabeled traffic allowed by default
    [ 0.168860] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.168866] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.168873] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.181124] Switching to clocksource hpet
    [ 0.191359] pnp: PnP ACPI init
    [ 0.191394] ACPI: bus type pnp registered
    [ 0.191545] pnp 00:00: [bus 00-3f]
    [ 0.191550] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.191553] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.191557] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.191560] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.191563] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.191566] pnp 00:00: [mem 0xcf800000-0xfebfffff window]
    [ 0.191641] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.191734] pnp 00:01: [io 0x0010-0x001f]
    [ 0.191738] pnp 00:01: [io 0x0022-0x003f]
    [ 0.191740] pnp 00:01: [io 0x0044-0x005f]
    [ 0.191743] pnp 00:01: [io 0x0062-0x0063]
    [ 0.191746] pnp 00:01: [io 0x0065-0x006f]
    [ 0.191748] pnp 00:01: [io 0x0074-0x007f]
    [ 0.191751] pnp 00:01: [io 0x0091-0x0093]
    [ 0.191753] pnp 00:01: [io 0x00a2-0x00bf]
    [ 0.191756] pnp 00:01: [io 0x00e0-0x00ef]
    [ 0.191758] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.191761] pnp 00:01: [io 0x0290-0x029f]
    [ 0.191763] pnp 00:01: [io 0x0800-0x087f]
    [ 0.191766] pnp 00:01: [io 0x0290-0x0294]
    [ 0.191769] pnp 00:01: [io 0x0880-0x088f]
    [ 0.191858] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.191863] system 00:01: [io 0x0290-0x029f] has been reserved
    [ 0.191866] system 00:01: [io 0x0800-0x087f] has been reserved
    [ 0.191870] system 00:01: [io 0x0290-0x0294] has been reserved
    [ 0.191873] system 00:01: [io 0x0880-0x088f] has been reserved
    [ 0.191879] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.191900] pnp 00:02: [dma 4]
    [ 0.191903] pnp 00:02: [io 0x0000-0x000f]
    [ 0.191906] pnp 00:02: [io 0x0080-0x0090]
    [ 0.191909] pnp 00:02: [io 0x0094-0x009f]
    [ 0.191911] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.191969] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.192037] pnp 00:03: [io 0x0070-0x0073]
    [ 0.192054] pnp 00:03: [irq 8]
    [ 0.192102] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.192119] pnp 00:04: [io 0x0061]
    [ 0.192163] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.192180] pnp 00:05: [io 0x00f0-0x00ff]
    [ 0.192188] pnp 00:05: [irq 13]
    [ 0.192237] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.192570] pnp 00:06: [io 0x03f8-0x03ff]
    [ 0.192579] pnp 00:06: [irq 4]
    [ 0.192673] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.192928] pnp 00:07: [io 0x0378-0x037f]
    [ 0.192936] pnp 00:07: [irq 7]
    [ 0.193013] pnp 00:07: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.193189] pnp 00:08: [io 0x0400-0x04bf]
    [ 0.193258] system 00:08: [io 0x0400-0x04bf] has been reserved
    [ 0.193264] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.193583] pnp 00:09: [mem 0xf0000000-0xf3ffffff]
    [ 0.193671] system 00:09: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.193677] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.193888] pnp 00:0a: [mem 0x000cc000-0x000d3fff]
    [ 0.193892] pnp 00:0a: [mem 0x000f0000-0x000f7fff]
    [ 0.193895] pnp 00:0a: [mem 0x000f8000-0x000fbfff]
    [ 0.193898] pnp 00:0a: [mem 0x000fc000-0x000fffff]
    [ 0.193900] pnp 00:0a: [mem 0xcf7f0000-0xcf7fffff]
    [ 0.193903] pnp 00:0a: [mem 0x00000000-0x0009ffff]
    [ 0.193906] pnp 00:0a: [mem 0x00100000-0xcf7effff]
    [ 0.193909] pnp 00:0a: [mem 0xfec00000-0xfec00fff]
    [ 0.193912] pnp 00:0a: [mem 0xfed13000-0xfed1dfff]
    [ 0.193915] pnp 00:0a: [mem 0xfed20000-0xfed8ffff]
    [ 0.193918] pnp 00:0a: [mem 0xfee00000-0xfee00fff]
    [ 0.193920] pnp 00:0a: [mem 0xffb00000-0xffb7ffff]
    [ 0.193923] pnp 00:0a: [mem 0xfff00000-0xffffffff]
    [ 0.193926] pnp 00:0a: [mem 0x000e0000-0x000effff]
    [ 0.194017] system 00:0a: [mem 0x000cc000-0x000d3fff] has been reserved
    [ 0.194022] system 00:0a: [mem 0x000f0000-0x000f7fff] could not be reserved
    [ 0.194026] system 00:0a: [mem 0x000f8000-0x000fbfff] could not be reserved
    [ 0.194030] system 00:0a: [mem 0x000fc000-0x000fffff] could not be reserved
    [ 0.194034] system 00:0a: [mem 0xcf7f0000-0xcf7fffff] could not be reserved
    [ 0.194038] system 00:0a: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.194042] system 00:0a: [mem 0x00100000-0xcf7effff] could not be reserved
    [ 0.194046] system 00:0a: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.194049] system 00:0a: [mem 0xfed13000-0xfed1dfff] has been reserved
    [ 0.194053] system 00:0a: [mem 0xfed20000-0xfed8ffff] has been reserved
    [ 0.194057] system 00:0a: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.194060] system 00:0a: [mem 0xffb00000-0xffb7ffff] has been reserved
    [ 0.194064] system 00:0a: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.194071] system 00:0a: [mem 0x000e0000-0x000effff] has been reserved
    [ 0.194077] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.194109] pnp 00:0b: [mem 0xffb80000-0xffbfffff]
    [ 0.194171] pnp 00:0b: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.194180] pnp: PnP ACPI: found 12 devices
    [ 0.194182] ACPI: ACPI bus type pnp unregistered
    [ 0.203774] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.203813] pci 0000:00:1c.1: BAR 15: assigned [mem 0xe2100000-0xe21fffff pref]
    [ 0.203820] pci 0000:00:1c.1: BAR 15: assigned [mem 0xe2100000-0xe23fffff pref]
    [ 0.203825] pci 0000:00:1c.0: BAR 14: assigned [mem 0xe2400000-0xe25fffff]
    [ 0.203830] pci 0000:00:1c.0: BAR 15: assigned [mem 0xe2600000-0xe27fffff 64bit pref]
    [ 0.203834] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.203839] pci 0000:00:1c.0: bridge window [io 0x9000-0x9fff]
    [ 0.203845] pci 0000:00:1c.0: bridge window [mem 0xe2400000-0xe25fffff]
    [ 0.203851] pci 0000:00:1c.0: bridge window [mem 0xe2600000-0xe27fffff 64bit pref]
    [ 0.203860] pci 0000:02:00.0: BAR 6: assigned [mem 0xe2100000-0xe211ffff pref]
    [ 0.203864] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 0.203868] pci 0000:00:1c.1: bridge window [io 0xa000-0xafff]
    [ 0.203874] pci 0000:00:1c.1: bridge window [mem 0xe0000000-0xe1ffffff]
    [ 0.203880] pci 0000:00:1c.1: bridge window [mem 0xe2100000-0xe23fffff pref]
    [ 0.203887] pci 0000:00:1e.0: PCI bridge to [bus 03-03]
    [ 0.203891] pci 0000:00:1e.0: bridge window [io 0x8000-0x8fff]
    [ 0.203939] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.203945] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.203948] pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff]
    [ 0.203952] pci_bus 0000:01: resource 0 [io 0x9000-0x9fff]
    [ 0.203955] pci_bus 0000:01: resource 1 [mem 0xe2400000-0xe25fffff]
    [ 0.203958] pci_bus 0000:01: resource 2 [mem 0xe2600000-0xe27fffff 64bit pref]
    [ 0.203962] pci_bus 0000:02: resource 0 [io 0xa000-0xafff]
    [ 0.203965] pci_bus 0000:02: resource 1 [mem 0xe0000000-0xe1ffffff]
    [ 0.203968] pci_bus 0000:02: resource 2 [mem 0xe2100000-0xe23fffff pref]
    [ 0.203972] pci_bus 0000:03: resource 0 [io 0x8000-0x8fff]
    [ 0.203975] pci_bus 0000:03: resource 4 [io 0x0000-0xffff]
    [ 0.203978] pci_bus 0000:03: resource 5 [mem 0x00000000-0xfffffffff]
    [ 0.204032] NET: Registered protocol family 2
    [ 0.204338] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.206849] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.211394] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.211962] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.211965] TCP reno registered
    [ 0.211987] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.212049] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.212209] NET: Registered protocol family 1
    [ 0.212240] pci 0000:00:02.0: Boot video device
    [ 0.212425] PCI: CLS 32 bytes, default 64
    [ 0.212520] Unpacking initramfs...
    [ 0.304914] Freeing initrd memory: 2988k freed
    [ 0.307162] audit: initializing netlink socket (disabled)
    [ 0.307182] type=2000 audit(1334738548.306:1): initialized
    [ 0.307834] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.311581] VFS: Disk quotas dquot_6.5.2
    [ 0.311675] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.311824] msgmni has been set to 6512
    [ 0.312151] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.312203] io scheduler noop registered
    [ 0.312207] io scheduler deadline registered
    [ 0.312333] io scheduler cfq registered (default)
    [ 0.312521] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.312650] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.312856] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.312859] vesafb: scrolling: redraw
    [ 0.312863] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.313479] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90005100000, using 3072k, total 3072k
    [ 0.345759] Console: switching to colour frame buffer device 128x48
    [ 0.377873] fb0: VESA VGA frame buffer device
    [ 0.377932] GHES: HEST is not enabled!
    [ 0.378043] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.398611] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.419664] 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.419939] Linux agpgart interface v0.103
    [ 0.420083] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.420471] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.420523] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.420725] mousedev: PS/2 mouse device common for all mice
    [ 0.420858] rtc_cmos 00:03: RTC can wake from S4
    [ 0.421016] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 0.421045] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.421060] cpuidle: using governor ladder
    [ 0.421063] cpuidle: using governor menu
    [ 0.421369] TCP cubic registered
    [ 0.421636] NET: Registered protocol family 10
    [ 0.422361] NET: Registered protocol family 17
    [ 0.422369] Registering the dns_resolver key type
    [ 0.422613] PM: Hibernation image not present or could not be loaded.
    [ 0.422626] registered taskstats version 1
    [ 0.423248] rtc_cmos 00:03: setting system clock to 2012-04-18 08:42:29 UTC (1334738549)
    [ 0.423302] Initializing network drop monitor service
    [ 0.424697] Freeing unused kernel memory: 732k freed
    [ 0.425077] Write protecting the kernel read-only data: 8192k
    [ 0.432038] Freeing unused kernel memory: 1632k freed
    [ 0.435658] Freeing unused kernel memory: 656k freed
    [ 0.448943] udevd[37]: starting version 182
    [ 0.497512] usbcore: registered new interface driver usbfs
    [ 0.497555] usbcore: registered new interface driver hub
    [ 0.497642] usbcore: registered new device driver usb
    [ 0.498708] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.498793] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 0.498798] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 0.498837] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    [ 0.498865] ehci_hcd 0000:00:1d.7: using broken periodic workaround
    [ 0.502771] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    [ 0.502799] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe20c4000
    [ 0.510593] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.512088] SCSI subsystem initialized
    [ 0.512269] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 0.513131] hub 1-0:1.0: USB hub found
    [ 0.513140] hub 1-0:1.0: 8 ports detected
    [ 0.513313] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 0.513319] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 0.513410] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.513449] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000b400
    [ 0.513901] hub 2-0:1.0: USB hub found
    [ 0.513910] hub 2-0:1.0: 2 ports detected
    [ 0.514034] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 0.514039] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 0.514052] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 0.514121] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000b800
    [ 0.514684] hub 3-0:1.0: USB hub found
    [ 0.514691] hub 3-0:1.0: 2 ports detected
    [ 0.514840] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 0.514846] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 0.514861] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 0.514904] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000bc00
    [ 0.515122] hub 4-0:1.0: USB hub found
    [ 0.515129] hub 4-0:1.0: 2 ports detected
    [ 0.515245] uhci_hcd 0000:00:1d.3: setting latency timer to 64
    [ 0.515250] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 0.515262] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 0.515325] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000c000
    [ 0.516908] hub 5-0:1.0: USB hub found
    [ 0.516919] hub 5-0:1.0: 2 ports detected
    [ 0.518287] libata version 3.00 loaded.
    [ 0.519240] ata_piix 0000:00:1f.1: version 2.13
    [ 0.519301] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 0.521189] scsi0 : ata_piix
    [ 0.521850] scsi1 : ata_piix
    [ 0.522635] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
    [ 0.522641] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
    [ 0.522741] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    [ 0.522797] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 0.522921] ata2: port disabled--ignoring
    [ 0.523388] scsi2 : ata_piix
    [ 0.526732] scsi3 : ata_piix
    [ 0.527628] ata3: SATA max UDMA/133 cmd 0xd400 ctl 0xd800 bmdma 0xe400 irq 19
    [ 0.527633] ata4: SATA max UDMA/133 cmd 0xdc00 ctl 0xe000 bmdma 0xe408 irq 19
    [ 0.703487] ata4.00: CFA: CF Card, Ver6.04, max UDMA/133
    [ 0.703493] ata4.00: 31227840 sectors, multi 1: LBA48
    [ 0.703500] ata4.01: CFA: CF Card, Ver6.04, max UDMA/133
    [ 0.703503] ata4.01: 31227840 sectors, multi 1: LBA48
    [ 0.710158] ata4.00: configured for UDMA/133
    [ 0.716816] ata4.01: configured for UDMA/133
    [ 0.716974] scsi 3:0:0:0: Direct-Access ATA CF Card Ver6 PQ: 0 ANSI: 5
    [ 0.717369] scsi 3:0:1:0: Direct-Access ATA CF Card Ver6 PQ: 0 ANSI: 5
    [ 0.724905] sd 3:0:0:0: [sda] 31227840 512-byte logical blocks: (15.9 GB/14.8 GiB)
    [ 0.725016] sd 3:0:1:0: [sdb] 31227840 512-byte logical blocks: (15.9 GB/14.8 GiB)
    [ 0.725077] sd 3:0:0:0: [sda] Write Protect is off
    [ 0.725082] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.725155] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.725162] sd 3:0:1:0: [sdb] Write Protect is off
    [ 0.725167] sd 3:0:1:0: [sdb] Mode Sense: 00 3a 00 00
    [ 0.725205] sd 3:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.729476] sda: sda1 sda2
    [ 0.730031] sdb: sdb1 sdb2
    [ 0.730174] sd 3:0:0:0: [sda] Attached SCSI disk
    [ 0.730514] sd 3:0:1:0: [sdb] Attached SCSI disk
    [ 0.817477] usb 1-6: new high-speed USB device number 2 using ehci_hcd
    [ 0.879397] mdassemble: sending ioctl 800c0910 to a partition!
    [ 0.879403] mdassemble: sending ioctl 800c0910 to a partition!
    [ 0.879413] mdassemble: sending ioctl 1261 to a partition!
    [ 0.879416] mdassemble: sending ioctl 1261 to a partition!
    [ 0.879764] mdassemble: sending ioctl 800c0910 to a partition!
    [ 0.879768] mdassemble: sending ioctl 800c0910 to a partition!
    [ 0.879773] mdassemble: sending ioctl 1261 to a partition!
    [ 0.879776] mdassemble: sending ioctl 1261 to a partition!
    [ 0.881551] mdassemble: sending ioctl 800c0910 to a partition!
    [ 0.881555] mdassemble: sending ioctl 800c0910 to a partition!
    [ 0.884599] md: md1 stopped.
    [ 0.888847] md: bind<sdb2>
    [ 0.889106] md: bind<sda2>
    [ 0.890802] md: raid0 personality registered for level 0
    [ 0.891196] bio: create slab <bio-1> at 1
    [ 0.891208] md/raid0:md1: md_size is 61628416 sectors.
    [ 0.891212] md: RAID0 configuration for md1 - 1 zone
    [ 0.891214] md: zone0=[sda2/sdb2]
    [ 0.891222] zone-offset= 0KB, device-offset= 0KB, size= 30814208KB
    [ 0.891225]
    [ 0.891237] md1: detected capacity change from 0 to 31553748992
    [ 0.941428] hub 1-6:1.0: USB hub found
    [ 0.941473] hub 1-6:1.0: 4 ports detected
    [ 0.954302] md1: unknown partition table
    [ 1.131212] EXT4-fs (md1): mounting ext3 file system using the ext4 subsystem
    [ 1.135334] EXT4-fs (md1): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.220124] usb 1-6.1: new low-speed USB device number 3 using ehci_hcd
    [ 1.306694] Refined TSC clocksource calibration: 2800.001 MHz.
    [ 1.306703] Switching to clocksource tsc
    [ 1.403502] usb 1-6.2: new low-speed USB device number 4 using ehci_hcd
    [ 1.518102] udevd[147]: starting version 182
    [ 1.649651] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.7/usb1/1-6/1-6.1/1-6.1:1.0/input/input0
    [ 1.649790] generic-usb 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.7-6.1/input0
    [ 1.652254] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 1.652264] ACPI: Power Button [PWRB]
    [ 1.652742] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 1.652749] ACPI: Power Button [PWRF]
    [ 1.660429] input: Chicony Saitek Eclipse II Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-6/1-6.2/1-6.2:1.0/input/input3
    [ 1.660673] generic-usb 0003:06A3:8021.0002: input,hidraw1: USB HID v1.11 Keyboard [Chicony Saitek Eclipse II Keyboard] on usb-0000:00:1d.7-6.2/input0
    [ 1.670411] IT8718 SuperIO detected.
    [ 1.670725] parport_pc 00:07: reported by Plug and Play ACPI
    [ 1.670774] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    [ 1.684890] input: Chicony Saitek Eclipse II Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-6/1-6.2/1-6.2:1.1/input/input4
    [ 1.685402] generic-usb 0003:06A3:8021.0003: input,hiddev0,hidraw2: USB HID v1.11 Device [Chicony Saitek Eclipse II Keyboard] on usb-0000:00:1d.7-6.2/input1
    [ 1.685434] usbcore: registered new interface driver usbhid
    [ 1.685437] usbhid: USB HID core driver
    [ 1.706305] intel_rng: FWH not detected
    [ 1.712611] leds_ss4200: no LED devices found
    [ 1.720342] iTCO_vendor_support: vendor-support=0
    [ 1.722921] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 1.723090] iTCO_wdt: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0460)
    [ 1.723619] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 1.729909] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 1.733254] [drm] Initialized drm 1.1.0 20060810
    [ 1.744963] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 1.745106] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
    [ 1.745933] r8169 0000:02:00.0: eth0: RTL8101e at 0xffffc900058d2000, 00:1d:7d:c1:af:ac, XID 14000000 IRQ 42
    [ 1.765162] agpgart-intel 0000:00:00.0: Intel 945G Chipset
    [ 1.765303] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
    [ 1.766152] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 1.766499] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 1.770284] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    [ 1.841921] ppdev: user-space parallel port driver
    [ 1.925606] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 1.925802] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 1.927348] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 1.927572] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 1.927906] input: HDA Intel Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 1.929058] i915 0000:00:02.0: setting latency timer to 64
    [ 2.007384] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.007389] [drm] Driver supports precise vblank timestamp query.
    [ 2.033489] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 2.052399] [drm] initialized overlay support
    [ 2.130899] checking generic (d0000000 300000) vs hw (d0000000 10000000)
    [ 2.130905] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 2.130988] Console: switching to colour dummy device 80x25
    [ 2.131832] fbcon: inteldrmfb (fb0) is primary device
    [ 2.170693] Console: switching to colour frame buffer device 200x56
    [ 2.177031] fb0: inteldrmfb frame buffer device
    [ 2.177034] drm: registered panic notifier
    [ 2.177093] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 2.306851] EXT4-fs (md1): re-mounted. Opts: (null)
    [ 2.369941] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 2.375033] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 2.413220] Adding 102396k swap on /dev/sdb1. Priority:-1 extents:1 across:102396k
    [ 2.994535] r8169 0000:02:00.0: eth0: link down
    [ 2.994545] r8169 0000:02:00.0: eth0: link down
    [ 2.995025] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 5.138610] r8169 0000:02:00.0: eth0: link up
    [ 5.139067] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 15.736686] eth0: no IPv6 routers present
    sh-4.2#
    EDIT:sh-4.2# cat /proc/mdstat
    Personalities : [raid0]
    md0 : active raid0 sdb2[0] sdc2[1]
          30717952 blocks super 1.2 512k chunks
    unused devices: <none>
    sh-4.2#
    Further data:
    sh-4.2# cat /proc/mdstat
    Personalities : [raid0]
    md0 : active raid0 sdb2[0] sdc2[1]
          30717952 blocks super 1.2 512k chunks
    unused devices: <none>
    sh-4.2#
    Thus, it seems that raid0 is established and therefore must be running at twice the device read speed even though hdparm does not recognize it.
    One observation regarding dmesg is that the pio and udma data does no longer appear.  This would suggest a kernel change eleiminating the udma factor.  Perhaps that limits the raid array as well.
    Any insight into this matter is appreciated.
    Last edited by lilsirecho (2013-10-12 14:18:49)

    The following data indicates the states provided by the devices in the raid0:
    sh-4.2# hdparm -I /dev/sda2
    /dev/sda2:
    CompactFlash ATA device
    Model Number:
    Serial Number: CF CARD A0202F59
    Firmware Revision: 20090728
    Standards:
    Likely used: 6
    Configuration:
    Logical max current
    cylinders 31045 31045
    heads 16 16
    sectors/track 63 63
    CHS current addressable sectors: 31293360
    LBA user addressable sectors: 31293360
    Logical/Physical Sector size: 512 bytes
    device size with M = 1024*1024: 15279 MBytes
    device size with M = 1000*1000: 16022 MBytes (16 GB)
    cache/buffer size = 1 KBytes (type=DualPort)
    Capabilities:
    LBA, IORDY(can be disabled)
    bytes avail on r/w long: 4
    Standby timer values: spec'd by Vendor
    R/W multiple sector transfer: Max = 1 Current = 0
    Advanced power management level: disabled
    DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 *udma5 udma6
    Cycle time: min=120ns recommended=120ns
    PIO: pio0 pio1 pio2 pio3 pio4
    Cycle time: no flow control=120ns IORDY flow control=120ns
    Commands/features:
    Enabled Supported:
    Power Management feature set
    * Write cache
    WRITE_BUFFER command
    READ_BUFFER command
    NOP cmd
    CFA feature set
    Advanced Power Management feature set
    * Mandatory FLUSH_CACHE
    * CFA advanced modes: pio5 pio6 mdma3 mdma4
    * CFA Power Level 1 (max 500mA)
    HW reset results:
    CBLID- above Vih
    Device num = 0
    Integrity word not set (found 0x0000, expected 0xb2a5)
    sh-4.2#
    The following for the second device:
    sh-4.2# hdparm -I /dev/sdb2
    /dev/sdb2:
    CompactFlash ATA device
    Model Number:
    Serial Number: CF CARD A01007DF
    Firmware Revision: 20090728
    Standards:
    Likely used: 6
    Configuration:
    Logical max current
    cylinders 31045 31045
    heads 16 16
    sectors/track 63 63
    CHS current addressable sectors: 31293360
    LBA user addressable sectors: 31293360
    Logical/Physical Sector size: 512 bytes
    device size with M = 1024*1024: 15279 MBytes
    device size with M = 1000*1000: 16022 MBytes (16 GB)
    cache/buffer size = 1 KBytes (type=DualPort)
    Capabilities:
    LBA, IORDY(can be disabled)
    bytes avail on r/w long: 4
    Standby timer values: spec'd by Vendor
    R/W multiple sector transfer: Max = 1 Current = 0
    Advanced power management level: disabled
    DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 *udma5 udma6
    Cycle time: min=120ns recommended=120ns
    PIO: pio0 pio1 pio2 pio3 pio4
    Cycle time: no flow control=120ns IORDY flow control=120ns
    Commands/features:
    Enabled Supported:
    Power Management feature set
    * Write cache
    WRITE_BUFFER command
    READ_BUFFER command
    NOP cmd
    CFA feature set
    Advanced Power Management feature set
    * Mandatory FLUSH_CACHE
    * CFA advanced modes: pio5 pio6 mdma3 mdma4
    * CFA Power Level 1 (max 500mA)
    HW reset results:
    CBLID- above Vih
    Device num = 0
    Integrity word not set (found 0x0000, expected 0xa8a5)
    sh-4.2#
    This indicates UDMA5 is applicable for the devices in the raid array.

  • Grub-BIOS UUID-base Arch/LXDE fails to boot completly 2/3 of times

    Hi,
    I have a GRUB-BIOS systemd based Arch/LXDE fresh installation (latest 2/2013 image).
    About 2 out of 3 times I boot the system freezes after  displaying that the  /dev/sda2 (my root) is clean.
    Yet, about 1 out of 3 trials, boot completes without problems.
    In either case I don't add any parameters, and just wait for Grub's timeout.
    The same happen with the Linux fallback as well.
    This is a single drive (sda) netbook installation.
    From the journalctl (see below) it seems to me that the alleged stuck boot almost completed!
    I'd appreciate any help!
    Below please find:
    1. Output of journalctl relating to the last two boots: the 17:33 boot got stuck, whereas I'm writing now after successfully rebooting at 17:36
    2. Copy of my fstab
    3. Copy of grub.cfg
    Thanks a lot!
    ----------copy of journalctl of last 2 boots (sorry, it's long)--------------------
    -- Logs begin at Sat 2013-02-16 11:47:04 IST, end at Sat 2013-02-23 17:36:36 IST. --
    [1;39m-- Reboot --[0m
    Feb 23 17:33:34 miki_netbook systemd-journal[119]: Allowing runtime journal files to grow to 100.3M.
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys cpuset
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys cpu
    Feb 23 17:33:34 miki_netbook kernel: Linux version 3.7.9-1-ARCH (nobody@foutrelis) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Mon Feb 18 02:27:20 EET 2013
    Feb 23 17:33:34 miki_netbook kernel: Atom PSE erratum detected, BIOS microcode update recommended
    Feb 23 17:33:34 miki_netbook kernel: Disabled fast string operations
    Feb 23 17:33:34 miki_netbook kernel: e820: BIOS-provided physical RAM map:
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007f375fff] usable
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f376000-0x000000007f3befff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f3bf000-0x000000007f46cfff] ACPI data
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f46d000-0x000000007f4befff] ACPI NVS
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f4bf000-0x000000007f4fffff] ACPI data
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f500000-0x000000007fffffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: Notice: NX (Execute Disable) protection missing in CPU!
    Feb 23 17:33:34 miki_netbook kernel: SMBIOS 2.4 present.
    Feb 23 17:33:34 miki_netbook kernel: DMI: Quanta UW1/Base Board Product Name, BIOS Q3A51 2/05/2009
    Feb 23 17:33:34 miki_netbook kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Feb 23 17:33:34 miki_netbook kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Feb 23 17:33:34 miki_netbook kernel: e820: last_pfn = 0x7f376 max_arch_pfn = 0x100000
    Feb 23 17:33:34 miki_netbook kernel: MTRR default type: uncachable
    Feb 23 17:33:34 miki_netbook kernel: MTRR fixed ranges enabled:
    Feb 23 17:33:34 miki_netbook kernel: 00000-9FFFF write-back
    Feb 23 17:33:34 miki_netbook kernel: A0000-BFFFF uncachable
    Feb 23 17:33:34 miki_netbook kernel: C0000-C7FFF write-protect
    Feb 23 17:33:34 miki_netbook kernel: C8000-EFFFF uncachable
    Feb 23 17:33:34 miki_netbook kernel: F0000-FFFFF write-protect
    Feb 23 17:33:34 miki_netbook kernel: MTRR variable ranges enabled:
    Feb 23 17:33:34 miki_netbook kernel: 0 base 0FFFE0000 mask 0FFFE0000 write-protect
    Feb 23 17:33:34 miki_netbook kernel: 1 base 0FFFC0000 mask 0FFFE0000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 2 base 000000000 mask 0C0000000 write-back
    Feb 23 17:33:34 miki_netbook kernel: 3 base 040000000 mask 0C0000000 write-back
    Feb 23 17:33:34 miki_netbook kernel: 4 base 07F800000 mask 0FF800000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 5 base 07F600000 mask 0FFE00000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 6 base 07F500000 mask 0FFF00000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 7 base 000000000 mask 0FFFE0000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Feb 23 17:33:34 miki_netbook kernel: initial memory mapped: [mem 0x00000000-0x01bfffff]
    Feb 23 17:33:34 miki_netbook kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Feb 23 17:33:34 miki_netbook kernel: init_memory_mapping: [mem 0x00000000-0x377fdfff]
    Feb 23 17:33:34 miki_netbook kernel: [mem 0x00000000-0x377fdfff] page 4k
    Feb 23 17:33:34 miki_netbook kernel: kernel direct mapping tables up to 0x377fdfff @ [mem 0x01b1f000-0x01bfffff]
    Feb 23 17:33:34 miki_netbook kernel: RAMDISK: [mem 0x37a72000-0x37d30fff]
    Feb 23 17:33:34 miki_netbook kernel: Allocated new RAMDISK: [mem 0x3753f000-0x377fd99b]
    Feb 23 17:33:34 miki_netbook kernel: Move RAMDISK from [mem 0x37a72000-0x37d3099b] to [mem 0x3753f000-0x377fd99b]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: RSDP 000fe020 00024 (v02 haier)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: XSDT 7f4fe120 00064 (v01 haier computer 00000001 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: FACP 7f4fc000 000F4 (v04 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: DSDT 7f4f3000 04DDE (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: FACS 7f488000 00040
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f4fd000 004C4 (v02 PmRef CpuPm 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: HPET 7f4fb000 00038 (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: APIC 7f4fa000 00068 (v02 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: MCFG 7f4f9000 0003C (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: ASF! 7f4f8000 000A5 (v32 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SLIC 7f4f2000 00180 (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: BOOT 7f4f1000 00028 (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Local APIC address 0xfee00000
    Feb 23 17:33:34 miki_netbook kernel: 1147MB HIGHMEM available.
    Feb 23 17:33:34 miki_netbook kernel: 887MB LOWMEM available.
    Feb 23 17:33:34 miki_netbook kernel: mapped low ram: 0 - 377fe000
    Feb 23 17:33:34 miki_netbook kernel: low ram: 0 - 377fe000
    Feb 23 17:33:34 miki_netbook kernel: Zone ranges:
    Feb 23 17:33:34 miki_netbook kernel: DMA [mem 0x00010000-0x00ffffff]
    Feb 23 17:33:34 miki_netbook kernel: Normal [mem 0x01000000-0x377fdfff]
    Feb 23 17:33:34 miki_netbook kernel: HighMem [mem 0x377fe000-0x7f375fff]
    Feb 23 17:33:34 miki_netbook kernel: Movable zone start for each node
    Feb 23 17:33:34 miki_netbook kernel: Early memory node ranges
    Feb 23 17:33:34 miki_netbook kernel: node 0: [mem 0x00010000-0x0009efff]
    Feb 23 17:33:34 miki_netbook kernel: node 0: [mem 0x00100000-0x7f375fff]
    Feb 23 17:33:34 miki_netbook kernel: On node 0 totalpages: 520965
    Feb 23 17:33:34 miki_netbook kernel: free_area_init_node: node 0, pgdat c158d880, node_mem_map f6556200
    Feb 23 17:33:34 miki_netbook kernel: DMA zone: 32 pages used for memmap
    Feb 23 17:33:34 miki_netbook kernel: DMA zone: 0 pages reserved
    Feb 23 17:33:34 miki_netbook kernel: DMA zone: 3951 pages, LIFO batch:0
    Feb 23 17:33:34 miki_netbook kernel: Normal zone: 1744 pages used for memmap
    Feb 23 17:33:34 miki_netbook kernel: Normal zone: 221486 pages, LIFO batch:31
    Feb 23 17:33:34 miki_netbook kernel: HighMem zone: 2295 pages used for memmap
    Feb 23 17:33:34 miki_netbook kernel: HighMem zone: 291457 pages, LIFO batch:31
    Feb 23 17:33:34 miki_netbook kernel: Using APIC driver default
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PM-Timer IO Port: 0x408
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Local APIC address 0xfee00000
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Feb 23 17:33:34 miki_netbook kernel: IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    Feb 23 17:33:34 miki_netbook kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IRQ0 used by override.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IRQ2 used by override.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IRQ9 used by override.
    Feb 23 17:33:34 miki_netbook kernel: Using ACPI (MADT) for SMP configuration information
    Feb 23 17:33:34 miki_netbook kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Feb 23 17:33:34 miki_netbook kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    Feb 23 17:33:34 miki_netbook kernel: nr_irqs_gsi: 40
    Feb 23 17:33:34 miki_netbook kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Feb 23 17:33:34 miki_netbook kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Feb 23 17:33:34 miki_netbook kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Feb 23 17:33:34 miki_netbook kernel: e820: [mem 0x80000000-0xdfffffff] available for PCI devices
    Feb 23 17:33:34 miki_netbook kernel: Booting paravirtualized kernel on bare hardware
    Feb 23 17:33:34 miki_netbook kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    Feb 23 17:33:34 miki_netbook kernel: PERCPU: Embedded 13 pages/cpu @f6530000 s32448 r0 d20800 u53248
    Feb 23 17:33:34 miki_netbook kernel: pcpu-alloc: s32448 r0 d20800 u53248 alloc=13*4096
    Feb 23 17:33:34 miki_netbook kernel: pcpu-alloc: [0] 0 [0] 1
    Feb 23 17:33:34 miki_netbook kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 516894
    Feb 23 17:33:34 miki_netbook kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=7cbfd7ba-38ed-40b5-b5b6-041c1c0f2677 ro quiet
    Feb 23 17:33:34 miki_netbook kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Feb 23 17:33:34 miki_netbook kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Feb 23 17:33:34 miki_netbook kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Feb 23 17:33:34 miki_netbook kernel: __ex_table already sorted, skipping sort
    Feb 23 17:33:34 miki_netbook kernel: Initializing CPU#0
    Feb 23 17:33:34 miki_netbook kernel: allocated 4168496 bytes of page_cgroup
    Feb 23 17:33:34 miki_netbook kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Feb 23 17:33:34 miki_netbook kernel: Initializing HighMem for node 0 (000377fe:0007f376)
    Feb 23 17:33:34 miki_netbook kernel: Memory: 2051608k/2084312k available (4099k kernel code, 32252k reserved, 1644k data, 556k init, 1175008k highmem)
    Feb 23 17:33:34 miki_netbook kernel: [379B blob data]
    Feb 23 17:33:34 miki_netbook kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Feb 23 17:33:34 miki_netbook kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Feb 23 17:33:34 miki_netbook kernel: Preemptible hierarchical RCU implementation.
    Feb 23 17:33:34 miki_netbook kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Feb 23 17:33:34 miki_netbook kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Feb 23 17:33:34 miki_netbook kernel: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
    Feb 23 17:33:34 miki_netbook kernel: NR_IRQS:2304 nr_irqs:512 16
    Feb 23 17:33:34 miki_netbook kernel: CPU 0 irqstacks, hard=f5c08000 soft=f5c0a000
    Feb 23 17:33:34 miki_netbook kernel: Console: colour dummy device 80x25
    Feb 23 17:33:34 miki_netbook kernel: console [tty0] enabled
    Feb 23 17:33:34 miki_netbook kernel: hpet clockevent registered
    Feb 23 17:33:34 miki_netbook kernel: tsc: Fast TSC calibration failed
    Feb 23 17:33:34 miki_netbook kernel: tsc: PIT calibration matches HPET. 1 loops
    Feb 23 17:33:34 miki_netbook kernel: tsc: Detected 1595.989 MHz processor
    Feb 23 17:33:34 miki_netbook kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3193.97 BogoMIPS (lpj=5319963)
    Feb 23 17:33:34 miki_netbook kernel: pid_max: default: 32768 minimum: 301
    Feb 23 17:33:34 miki_netbook kernel: Security Framework initialized
    Feb 23 17:33:34 miki_netbook kernel: AppArmor: AppArmor disabled by boot time parameter
    Feb 23 17:33:34 miki_netbook kernel: Mount-cache hash table entries: 512
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys cpuacct
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys memory
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys devices
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys freezer
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys net_cls
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys blkio
    Feb 23 17:33:34 miki_netbook kernel: Atom PSE erratum detected, BIOS microcode update recommended
    Feb 23 17:33:34 miki_netbook kernel: Disabled fast string operations
    Feb 23 17:33:34 miki_netbook kernel: CPU: Physical Processor ID: 0
    Feb 23 17:33:34 miki_netbook kernel: CPU: Processor Core ID: 0
    Feb 23 17:33:34 miki_netbook kernel: mce: CPU supports 5 MCE banks
    Feb 23 17:33:34 miki_netbook kernel: CPU0: Thermal monitoring enabled (TM2)
    Feb 23 17:33:34 miki_netbook kernel: process: using mwait in idle threads
    Feb 23 17:33:34 miki_netbook kernel: [113B blob data]
    Feb 23 17:33:34 miki_netbook kernel: Freeing SMP alternatives: 16k freed
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Core revision 20120913
    Feb 23 17:33:34 miki_netbook kernel: ftrace: allocating 17730 entries in 35 pages
    Feb 23 17:33:34 miki_netbook kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Feb 23 17:33:34 miki_netbook kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Feb 23 17:33:34 miki_netbook kernel: smpboot: CPU0: Intel(R) Atom(TM) CPU N270 @ 1.60GHz (fam: 06, model: 1c, stepping: 02)
    Feb 23 17:33:34 miki_netbook kernel: Performance Events: PEBS fmt0+, LBR disabled due to erratumAtom events, Intel PMU driver.
    Feb 23 17:33:34 miki_netbook kernel: ... version: 3
    Feb 23 17:33:34 miki_netbook kernel: ... bit width: 40
    Feb 23 17:33:34 miki_netbook kernel: ... generic registers: 2
    Feb 23 17:33:34 miki_netbook kernel: ... value mask: 000000ffffffffff
    Feb 23 17:33:34 miki_netbook kernel: ... max period: 000000007fffffff
    Feb 23 17:33:34 miki_netbook kernel: ... fixed-purpose events: 3
    Feb 23 17:33:34 miki_netbook kernel: ... event mask: 0000000700000003
    Feb 23 17:33:34 miki_netbook kernel: CPU 1 irqstacks, hard=f5cc0000 soft=f5cc2000
    Feb 23 17:33:34 miki_netbook kernel: smpboot: Booting Node 0, Processors #1 OK
    Feb 23 17:33:34 miki_netbook kernel: Initializing CPU#1
    Feb 23 17:33:34 miki_netbook kernel: Atom PSE erratum detected, BIOS microcode update recommended
    Feb 23 17:33:34 miki_netbook kernel: Disabled fast string operations
    Feb 23 17:33:34 miki_netbook kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Feb 23 17:33:34 miki_netbook kernel: Brought up 2 CPUs
    Feb 23 17:33:34 miki_netbook kernel: smpboot: Total of 2 processors activated (6386.95 BogoMIPS)
    Feb 23 17:33:34 miki_netbook kernel: devtmpfs: initialized
    Feb 23 17:33:34 miki_netbook kernel: PM: Registering ACPI NVS region [mem 0x7f46d000-0x7f4befff] (335872 bytes)
    Feb 23 17:33:34 miki_netbook kernel: RTC time: 15:33:30, date: 02/23/13
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 16
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type pci registered
    Feb 23 17:33:34 miki_netbook kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 23 17:33:34 miki_netbook kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using MMCONFIG for extended config space
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using configuration type 1 for base access
    Feb 23 17:33:34 miki_netbook kernel: bio: create slab <bio-0> at 0
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(Module Device)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(Processor Device)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: EC: Look up EC in DSDT
    Feb 23 17:33:34 miki_netbook kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f380c90 00239 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 00239 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f37fe10 001C7 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 001C7 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f380f10 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f37ef10 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Interpreter enabled
    Feb 23 17:33:34 miki_netbook kernel: ACPI: (supports S0 S3 S4 S5)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Using IOAPIC for interrupt routing
    Feb 23 17:33:34 miki_netbook kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Feb 23 17:33:34 miki_netbook kernel: ACPI: No dock devices found.
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20120913/dsfield-211)
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f5c26dc8), AE_ALREADY_EXISTS (20120913/psparse-536)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Feb 23 17:33:34 miki_netbook kernel: PCI host bridge to bus 0000:00
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:00.0: [8086:27ac] type 00 class 0x060000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: [8086:27ae] type 00 class 0x030000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 10: [mem 0x94280000-0x942fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 14: [io 0x40c0-0x40c7]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 1c: [mem 0x94300000-0x9433ffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.1: [8086:27a6] type 00 class 0x038000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.1: reg 10: [mem 0x94200000-0x9427ffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1b.0: reg 10: [mem 0x94340000-0x94343fff 64bit]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.0: reg 20: [io 0x4080-0x409f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.1: reg 20: [io 0x4060-0x407f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.2: reg 20: [io 0x4040-0x405f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.3: reg 20: [io 0x4020-0x403f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.7: reg 10: [mem 0x94344400-0x943447ff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0068 (mask 0007)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: [8086:27c4] type 00 class 0x010180
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 10: [io 0x0000-0x0007]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 14: [io 0x0000-0x0003]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 18: [io 0x0000-0x0007]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 1c: [io 0x0000-0x0003]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 20: [io 0x40a0-0x40af]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.3: reg 20: [io 0x4000-0x401f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x93100000-0x941fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: [10ec:8136] type 00 class 0x020000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 10: [io 0x1000-0x10ff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 18: [mem 0x91010000-0x91010fff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 20: [mem 0x91000000-0x9100ffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 30: [mem 0xffff0000-0xffffffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: supports D1 D2
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [io 0x1000-0x2fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x92100000-0x930fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x91000000-0x920fffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: on NUMA node 0
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20120913/dsfield-211)
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f5c26dc8), AE_ALREADY_EXISTS (20120913/psparse-536)
    Feb 23 17:33:34 miki_netbook kernel: pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Feb 23 17:33:34 miki_netbook kernel: pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Feb 23 17:33:34 miki_netbook kernel: vgaarb: loaded
    Feb 23 17:33:34 miki_netbook kernel: vgaarb: bridge control possible 0000:00:02.0
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using ACPI for IRQ routing
    Feb 23 17:33:34 miki_netbook kernel: PCI: pci_cache_line_size set to 64 bytes
    Feb 23 17:33:34 miki_netbook kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Feb 23 17:33:34 miki_netbook kernel: e820: reserve RAM buffer [mem 0x7f376000-0x7fffffff]
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: Initializing
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: domain hash size = 128
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: unlabeled traffic allowed by default
    Feb 23 17:33:34 miki_netbook kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Feb 23 17:33:34 miki_netbook kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Feb 23 17:33:34 miki_netbook kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Feb 23 17:33:34 miki_netbook kernel: Switching to clocksource hpet
    Feb 23 17:33:34 miki_netbook kernel: pnp: PnP ACPI init
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type pnp registered
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [bus 00-ff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [io 0x0000-0x0cf7 window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [io 0x0d00-0xffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000cc000-0x000cffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000dc000-0x000dffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000ec000-0x000effff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000f0000-0x000fffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x80000000-0xfebfffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x002e-0x002f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0068-0x006f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0200-0x020f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0061]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0070]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0080]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0092]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x00b2-0x00b3]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0063]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0065]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0067]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0600-0x060f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0610]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0800-0x080f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0400-0x047f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0500-0x053f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xe0000000-0xefffffff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed14000-0xfed17fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed18000-0xfed18fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed19000-0xfed19fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfec00000-0xfec00fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfee00000-0xfee00fff]
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0200-0x020f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0600-0x060f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0610] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0800-0x080f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0400-0x047f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0500-0x053f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x0000-0x001f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x0081-0x0091]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x0093-0x009f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x00c0-0x00df]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [dma 4]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:03: [io 0x0070-0x0077]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: [irq 0 disabled]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: [irq 8]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: [mem 0xfed00000-0xfed003ff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:05: [io 0x00f0]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:05: [irq 13]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:06: [mem 0xff800000-0xffffffff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:06: Plug and Play ACPI device, IDs INT0800 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: [io 0x0060]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: [io 0x0064]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: [irq 1]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:08: [irq 12]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:08: Plug and Play ACPI device, IDs SYN102c SYN1000 SYN0002 PNP0f13 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp: PnP ACPI: found 9 devices
    Feb 23 17:33:34 miki_netbook kernel: ACPI: ACPI bus type pnp unregistered
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x93100000-0x941fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: BAR 6: assigned [mem 0x91020000-0x9102ffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [io 0x1000-0x2fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x92100000-0x930fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x91000000-0x920fffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: PCI bridge to [bus 03]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:01: resource 1 [mem 0x93100000-0x941fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:01: resource 2 [mem 0x90000000-0x90ffffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:02: resource 0 [io 0x1000-0x2fff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:02: resource 1 [mem 0x92100000-0x930fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:02: resource 2 [mem 0x91000000-0x920fffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 7 [mem 0x80000000-0xfebfffff]
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 2
    Feb 23 17:33:34 miki_netbook kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Feb 23 17:33:34 miki_netbook kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Feb 23 17:33:34 miki_netbook kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Feb 23 17:33:34 miki_netbook kernel: TCP: reno registered
    Feb 23 17:33:34 miki_netbook kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Feb 23 17:33:34 miki_netbook kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 1
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: Boot video device
    Feb 23 17:33:34 miki_netbook kernel: PCI: CLS 0 bytes, default 64
    Feb 23 17:33:34 miki_netbook kernel: Unpacking initramfs...
    Feb 23 17:33:34 miki_netbook kernel: Freeing initrd memory: 2812k freed
    Feb 23 17:33:34 miki_netbook kernel: Simple Boot Flag value 0x5 read from CMOS RAM was invalid
    Feb 23 17:33:34 miki_netbook kernel: Simple Boot Flag at 0x44 set to 0x1
    Feb 23 17:33:34 miki_netbook kernel: apm: BIOS not found.
    Feb 23 17:33:34 miki_netbook kernel: audit: initializing netlink socket (disabled)
    Feb 23 17:33:34 miki_netbook kernel: type=2000 audit(1361633610.386:1): initialized
    Feb 23 17:33:34 miki_netbook kernel: bounce pool size: 64 pages
    Feb 23 17:33:34 miki_netbook kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Feb 23 17:33:34 miki_netbook kernel: VFS: Disk quotas dquot_6.5.2
    Feb 23 17:33:34 miki_netbook kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Feb 23 17:33:34 miki_netbook kernel: msgmni has been set to 1717
    Feb 23 17:33:34 miki_netbook kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Feb 23 17:33:34 miki_netbook kernel: io scheduler noop registered
    Feb 23 17:33:34 miki_netbook kernel: io scheduler deadline registered
    Feb 23 17:33:34 miki_netbook kernel: io scheduler cfq registered (default)
    Feb 23 17:33:34 miki_netbook kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    Feb 23 17:33:34 miki_netbook kernel: pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    Feb 23 17:33:34 miki_netbook kernel: vesafb: mode is 640x480x32, linelength=2560, pages=0
    Feb 23 17:33:34 miki_netbook kernel: vesafb: scrolling: redraw
    Feb 23 17:33:34 miki_netbook kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Feb 23 17:33:34 miki_netbook kernel: vesafb: framebuffer at 0x80000000, mapped to 0xf8080000, using 1216k, total 1216k
    Feb 23 17:33:34 miki_netbook kernel: Console: switching to colour frame buffer device 80x30
    Feb 23 17:33:34 miki_netbook kernel: fb0: VESA VGA frame buffer device
    Feb 23 17:33:34 miki_netbook kernel: intel_idle: MWAIT substates: 0x20220
    Feb 23 17:33:34 miki_netbook kernel: intel_idle: v0.4 model 0x1C
    Feb 23 17:33:34 miki_netbook kernel: intel_idle: lapic_timer_reliable_states 0x2
    Feb 23 17:33:34 miki_netbook kernel: tsc: Marking TSC unstable due to TSC halts in idle states deeper than C2
    Feb 23 17:33:34 miki_netbook kernel: GHES: HEST is not enabled!
    Feb 23 17:33:34 miki_netbook kernel: isapnp: Scanning for PnP cards...
    Feb 23 17:33:34 miki_netbook kernel: isapnp: No Plug & Play device found
    Feb 23 17:33:34 miki_netbook kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Feb 23 17:33:34 miki_netbook kernel: i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
    Feb 23 17:33:34 miki_netbook kernel: i8042: Warning: Keylock active
    Feb 23 17:33:34 miki_netbook kernel: i8042: Detected active multiplexing controller, rev 1.1
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: mousedev: PS/2 mouse device common for all mice
    Feb 23 17:33:34 miki_netbook kernel: rtc_cmos 00:03: RTC can wake from S4
    Feb 23 17:33:34 miki_netbook kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Feb 23 17:33:34 miki_netbook kernel: rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    Feb 23 17:33:34 miki_netbook kernel: cpuidle: using governor ladder
    Feb 23 17:33:34 miki_netbook kernel: cpuidle: using governor menu
    Feb 23 17:33:34 miki_netbook kernel: EFI Variables Facility v0.08 2004-May-17
    Feb 23 17:33:34 miki_netbook kernel: drop_monitor: Initializing network drop monitor service
    Feb 23 17:33:34 miki_netbook kernel: TCP: cubic registered
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 10
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 17
    Feb 23 17:33:34 miki_netbook kernel: Key type dns_resolver registered
    Feb 23 17:33:34 miki_netbook kernel: Using IPI No-Shortcut mode
    Feb 23 17:33:34 miki_netbook kernel: PM: Hibernation image not present or could not be loaded.
    Feb 23 17:33:34 miki_netbook kernel: registered taskstats version 1
    Feb 23 17:33:34 miki_netbook kernel: Magic number: 1:324:589
    Feb 23 17:33:34 miki_netbook kernel: rtc_cmos 00:03: setting system clock to 2013-02-23 15:33:31 UTC (1361633611)
    Feb 23 17:33:34 miki_netbook kernel: Freeing unused kernel memory: 556k freed
    Feb 23 17:33:34 miki_netbook kernel: Write protecting the kernel text: 4100k
    Feb 23 17:33:34 miki_netbook kernel: Write protecting the kernel read-only data: 1256k
    Feb 23 17:33:34 miki_netbook kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Feb 23 17:33:34 miki_netbook systemd-udevd[44]: starting version 197
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type usb registered
    Feb 23 17:33:34 miki_netbook kernel: usbcore: registered new interface driver usbfs
    Feb 23 17:33:34 miki_netbook kernel: usbcore: registered new interface driver hub
    Feb 23 17:33:34 miki_netbook kernel: usbcore: registered new device driver usb
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Feb 23 17:33:34 miki_netbook kernel: SCSI subsystem initialized
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: irq 16, io mem 0x94344400
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type scsi registered
    Feb 23 17:33:34 miki_netbook kernel: libata version 3.00 loaded.
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Feb 23 17:33:34 miki_netbook kernel: hub 1-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 1-0:1.0: 8 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Feb 23 17:33:34 miki_netbook kernel: ata_piix 0000:00:1f.2: version 2.13
    Feb 23 17:33:34 miki_netbook kernel: ata_piix 0000:00:1f.2: MAP [
    Feb 23 17:33:34 miki_netbook kernel: P0 P2 IDE IDE ]
    Feb 23 17:33:34 miki_netbook kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: scsi0 : ata_piix
    Feb 23 17:33:34 miki_netbook kernel: scsi1 : ata_piix
    Feb 23 17:33:34 miki_netbook kernel: ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x40a0 irq 14
    Feb 23 17:33:34 miki_netbook kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x40a8 irq 15
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: irq 16, io base 0x00004080
    Feb 23 17:33:34 miki_netbook kernel: hub 2-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 2-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: irq 17, io base 0x00004060
    Feb 23 17:33:34 miki_netbook kernel: hub 3-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 3-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x00004040
    Feb 23 17:33:34 miki_netbook kernel: hub 4-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 4-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: irq 19, io base 0x00004020
    Feb 23 17:33:34 miki_netbook kernel: hub 5-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 5-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: ata1.00: ATA-8: SAMSUNG HM251JI, 2SS00_01, max UDMA7
    Feb 23 17:33:34 miki_netbook kernel: ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    Feb 23 17:33:34 miki_netbook kernel: ata1.00: configured for UDMA/133
    Feb 23 17:33:34 miki_netbook kernel: scsi 0:0:0:0: Direct-Access ATA SAMSUNG HM251JI 2SS0 PQ: 0 ANSI: 5
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Write Protect is off
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 23 17:33:34 miki_netbook kernel: sda: sda1 sda2 sda3 sda4
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Feb 23 17:33:34 miki_netbook kernel: usb 1-5: new high-speed USB device number 3 using ehci_hcd
    Feb 23 17:33:34 miki_netbook kernel: usb 1-7: new high-speed USB device number 4 using ehci_hcd
    Feb 23 17:33:34 miki_netbook kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    Feb 23 17:33:34 miki_netbook kernel: usb 2-1: new low-speed USB device number 2 using uhci_hcd
    Feb 23 17:33:34 miki_netbook systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Feb 23 17:33:34 miki_netbook systemd[1]: Set hostname to <miki_netbook>.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Remote File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Reached target Remote File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Delayed Shutdown Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on Delayed Shutdown Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Device-mapper event daemon FIFOs.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting LVM2 metadata daemon socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on LVM2 metadata daemon socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Encrypted Volumes.
    Feb 23 17:33:34 miki_netbook systemd[1]: Reached target Encrypted Volumes.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Feb 23 17:33:34 miki_netbook systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Kernel Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on udev Kernel Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Control Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on udev Control Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Expecting device dev-disk-by\x2duuid-9501e2aa\x2d4efe\x2d4497\x2d9b55\x2ddb7ebc7afe5d.device...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Journal Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on Journal Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started File System Check on Root Device.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Remount Root and Kernel File Systems...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Debug File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting POSIX Message Queue File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Load Kernel Modules.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted FUSE Control File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Setup Virtual Console...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Kernel Device Manager...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Apply Kernel Variables...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Coldplug all Devices...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Configuration File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Huge Pages File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Set Up Additional Binary Formats.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Journal Service...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Journal Service.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Temporary Directory...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting home.automount.
    Feb 23 17:33:34 miki_netbook systemd[1]: Set up automount home.automount.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Setup Virtual Console.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Apply Kernel Variables.
    Feb 23 17:33:34 miki_netbook systemd-udevd[111]: starting version 197
    Feb 23 17:33:34 miki_netbook kernel: EXT4-fs (sda2): re-mounted. Opts: (null)
    Feb 23 17:33:34 miki_netbook systemd-journal[119]: Journal started
    Feb 23 17:33:34 miki_netbook systemd[1]: Started udev Kernel Device Manager.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Remount Root and Kernel File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Debug File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted POSIX Message Queue File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Configuration File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Huge Pages File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Temporary Directory.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Local File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Reached target Local File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Recreate Volatile Files and Directories...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started udev Coldplug all Devices.
    Feb 23 17:33:34 miki_netbook systemd-journal[119]: Allowing system journal files to grow to 1.4G.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Load Random Seed.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Recreate Volatile Files and Directories.
    Feb 23 17:33:37 miki_netbook systemd[1]: Starting Sound Card.
    Feb 23 17:33:37 miki_netbook systemd[1]: Reached target Sound Card.
    Feb 23 17:33:39 miki_netbook systemd[1]: Found device SAMSUNG_HM251JI.
    Feb 23 17:33:39 miki_netbook systemd[1]: Activating swap /dev/disk/by-uuid/9501e2aa-4efe-4497-9b55-db7ebc7afe5d...
    Feb 23 17:33:39 miki_netbook systemd[1]: Activated swap /dev/disk/by-uuid/9501e2aa-4efe-4497-9b55-db7ebc7afe5d.
    Feb 23 17:33:39 miki_netbook systemd[1]: Starting Swap.
    Feb 23 17:33:39 miki_netbook systemd[1]: Reached target Swap.
    Feb 23 17:33:39 miki_netbook systemd[1]: Starting System Initialization.
    Feb 23 17:33:41 miki_netbook NetworkManager[229]: <info> NetworkManager (version 0.9.6.4) is starting...
    Feb 23 17:33:41 miki_netbook NetworkManager[229]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
    Feb 23 17:33:41 miki_netbook NetworkManager[229]: <info> WEXT support is enabled
    Feb 23 17:33:41 miki_netbook dbus[231]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
    Feb 23 17:33:41 miki_netbook polkitd[241]: Started polkitd version 0.109
    Feb 23 17:33:42 miki_netbook polkitd[241]: Loading rules from directory /etc/polkit-1/rules.d
    Feb 23 17:33:42 miki_netbook polkitd[241]: Loading rules from directory /usr/share/polkit-1/rules.d
    Feb 23 17:33:42 miki_netbook polkitd[241]: Finished loading, compiling and executing 1 rules
    Feb 23 17:33:42 miki_netbook dbus[231]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Feb 23 17:33:42 miki_netbook polkitd[241]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
    Feb 23 17:33:42 miki_netbook NetworkManager[229]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
    Feb 23 17:33:45 miki_netbook NetworkManager[229]: keyfile: parsing default ...
    Feb 23 17:33:45 miki_netbook NetworkManager[229]: keyfile: read connection 'default'
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: keyfile: parsing Badt ...
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: keyfile: read connection 'Badt'
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <info> trying to start the modem manager...
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <info> monitoring kernel firmware directory '/lib/firmware'.
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <warn> Failed to open plugin directory /usr/lib/NetworkManager: Error opening directory '/usr/lib/NetworkManager': No such file or directory
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <info> rfkill0: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7:1.0/ieee80211/phy0/rfkill0) (driver rtl8187)
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> WiFi enabled by radio killswitch; enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> WWAN enabled by radio killswitch; enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> WiMAX enabled by radio killswitch; enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> Networking is enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <warn> failed to allocate link cache: (-10) Operation not supported
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): carrier is OFF
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): new Ethernet device (driver: 'r8169' ifindex: 2)
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): exported as /org/freedesktop/NetworkManager/Devices/0
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): now managed
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): bringing up device.
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): preparing device.
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): deactivating device (reason 'managed') [2]
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> Added default wired connection 'Wired connection 1' for /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/enp2s0
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): using nl80211 for WiFi device control
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): new 802.11 WiFi device (driver: 'rtl8187' ifindex: 3)
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): exported as /org/freedesktop/NetworkManager/Devices/1
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): now managed
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): bringing up device.
    Feb 23 17:33:47 miki_netbook kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    Feb 23 17:33:47 miki_netbook systemd[1]: Started Network Manager.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Network.
    Feb 23 17:33:47 miki_netbook systemd[1]: Reached target Network.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Network Time Service...
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Power Button [PWRB]
    Feb 23 17:33:47 miki_netbook kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Lid Switch [LID0]
    Feb 23 17:33:47 miki_netbook kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    Feb 23 17:33:47 miki_netbook dbus-daemon[231]: dbus[231]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
    Feb 23 17:33:47 miki_netbook dbus-daemon[231]: dbus[231]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Sleep Button [SLPB]
    Feb 23 17:33:47 miki_netbook kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Power Button [PWRF]
    Feb 23 17:33:47 miki_netbook kernel: intel_rng: FWH not detected
    Feb 23 17:33:47 miki_netbook kernel: ACPI: AC Adapter [ACAD] (on-line)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Requesting acpi_cpufreq
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Video Device [OVGA] (multi-head: yes rom: yes post: no)
    Feb 23 17:33:47 miki_netbook kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
    Feb 23 17:33:47 miki_netbook kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Thermal Zone [THRM] (56 C)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Battery Slot [BAT1] (battery present)
    Feb 23 17:33:47 miki_netbook kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Invalid Power Resource to register!
    Feb 23 17:33:47 miki_netbook kernel: ACPI Warning:
    Feb 23 17:33:47 miki_netbook kernel: 0x00000428-0x0000042f SystemIO conflicts with Region \PMBA 1 (20120913/utaddress-251)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 23 17:33:47 miki_netbook kernel: ACPI Warning: 0x00000530-0x0000053f SystemIO conflicts with Region \GPIO 1 (20120913/utaddress-251)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 23 17:33:47 miki_netbook kernel: ACPI Warning: 0x00000500-0x0000052f SystemIO conflicts with Region \GPIO 1 (20120913/utaddress-251)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 23 17:33:47 miki_netbook kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Feb 23 17:33:47 miki_netbook kernel: leds_ss4200: no LED devices found
    Feb 23 17:33:47 miki_netbook kernel: iTCO_vendor_support: vendor-support=0
    Feb 23 17:33:47 miki_netbook kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    Feb 23 17:33:47 miki_netbook kernel: iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x0460)
    Feb 23 17:33:47 miki_netbook kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Feb 23 17:33:47 miki_netbook kernel: microcode: CPU0 sig=0x106c2, pf=0x4, revision=0x208
    Feb 23 17:33:47 miki_netbook kernel: microcode: CPU1 sig=0x106c2, pf=0x4, revision=0x208
    Feb 23 17:33:47 miki_netbook kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Feb 23 17:33:47 miki_netbook kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Feb 23 17:33:47 miki_netbook kernel: r8169 0000:02:00.0: irq 42 for MSI/MSI-X
    Feb 23 17:33:47 miki_netbook kernel: r8169 0000:02:00.0 eth0: RTL8102e at 0xf8814000, 00:23:8b:85:d8:aa, XID 04a00000 IRQ 42
    Feb 23 17:33:47 miki_netbook kernel: Linux agpgart interface v0.103
    Feb 23 17:33:47 miki_netbook kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 23 17:33:47 miki_netbook kernel: [drm] Initialized drm 1.1.0 20060810
    Feb 23 17:33:47 miki_netbook kernel: usbcore: registered new interface driver usbhid
    Feb 23 17:33:47 miki_netbook kernel: usbhid: USB HID core driver
    Feb 23 17:33:47 miki_netbook kernel: media: Linux media interface: v0.10
    Feb 23 17:33:47 miki_netbook systemd-udevd[137]: renamed network interface eth0 to enp2s0
    Feb 23 17:33:47 miki_netbook kernel: Linux video capture interface: v2.00
    Feb 23 17:33:47 miki_netbook kernel: i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    Feb 23 17:33:47 miki_netbook kernel: uvcvideo: Found UVC 1.00 device USB 2.0 Camera (064e:a127)
    Feb 23 17:33:47 miki_netbook kernel: agpgart-intel 0000:00:00.0: Intel 945GME Chipset
    Feb 23 17:33:47 miki_netbook kernel: agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
    Feb 23 17:33:47 miki_netbook ntpd[253]: ntpd [email protected] Tue Dec 18 22:49:50 UTC 2012 (1)
    Feb 23 17:33:47 miki_netbook ntpd[254]: proto: precision = 1.955 usec
    Feb 23 17:33:47 miki_netbook ntpd[254]: ntp_io: estimated max descriptors: 1024, initial socket boundary: 16
    Feb 23 17:33:47 miki_netbook ntpd[254]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123
    Feb 23 17:33:47 miki_netbook ntpd[254]: Listen and drop on 1 v6wildcard :: UDP 123
    Feb 23 17:33:47 miki_netbook kernel: agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    Feb 23 17:33:47 miki_netbook systemd[1]: Started Network Time Service.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Multi-User.
    Feb 23 17:33:47 miki_netbook systemd[1]: Reached target Multi-User.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Graphical Interface.
    Feb 23 17:33:47 miki_netbook systemd[1]: Reached target Graphical Interface.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Update UTMP about System Runlevel Changes...
    Feb 23 17:33:47 miki_netbook systemd[1]: Started Update UTMP about System Runlevel Changes.
    Feb 23 17:33:47 miki_netbook systemd[1]: Startup finished in 2s 641ms 739us (kernel) + 14s 238ms 5

    I had the exact same problem. For me the problem was the user groups. Apparently usergroups is not necessary for most use cases with systemd. And my user was in a lot of groups :-) . So I backed up my /etc/group and removed my username from almost every group.
    Hope it solves your problem!

  • Lenovo W530 - Stuck at "Loading initial ramdisk" GRUB Discrete graphic

    As in the thread https://bbs.archlinux.org/viewtopic.php?id=146006 (only that I do not have any encryption on my drive) I cannot get my ThinkPad W530 booting (I have installed via EFI) with Discrete graphics mode (set in BIOS). NVIDIA Optimus works with optirun and Integrated graphics works fine but I cannot start with Discrete graphics.
    I want to do this since I cannot connect an external monitor to my computer at all right now (the Mini DisplayPort and VGA adapter are only physically connected to the NVIDIA card). I have tried following several more or less incomplete guides on how to start a second X server with bumblebee but I cannot get those working and do not see two X servers a a good solution. I want a virtual display that spans over two monitors. I tried booting the computer with an Ubuntu Live USB stick and it automatically connected and used both monitors (when I set Discrete graphics in the BIOS) even in the installation process, and I can run games like StarCraft II just fine on my Arch install with optirun (when I set NVIDIA Optimus in the BIOS) so the hardware seems to work just fine.
    When I boot the regular Arch linux kernel (3.17.1-1-ARCH) with Discrete graphics I get to the message "Loading initial ramdisk...", then the screen turns black. My system is using GDM for login and Gnome as window manager.
    I managed to login blindly (not sure if it was through GDM or Ctrl + Alt + F2 since I tried both) during the black screen and execute a command that I later found in my .zsh_history file and I also can see that the drive access led is blinking a while after the black screen so it seems that the system has not hanged entirely. If I disable GDM the screen does not turn black but freezes at the "Loading initial ramdisk..." output.
    My /boot/grub/grub.cfg file is (I am not trying to boot with the linux-ck or linux-rt kernel that I also have installed):
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="4"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 25086a9b-a542-4018-9f71-4f492f09be91
    else
    search --no-floppy --fs-uuid --set=root 25086a9b-a542-4018-9f71-4f492f09be91
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=sv_SE
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-rt ...'
    linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-rt.img
    submenu 'Avancerade flaggor för Arch Linux' $menuentry_id_option 'gnulinux-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    menuentry 'Arch Linux, med Linux linux-rt' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-rt-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-rt ...'
    linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-rt.img
    menuentry 'Arch Linux, with Linux linux-rt (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-rt-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-rt ...'
    linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-rt-fallback.img
    menuentry 'Arch Linux, med Linux linux-ck' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-ck-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-ck ...'
    linux /vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-ck.img
    menuentry 'Arch Linux, with Linux linux-ck (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-ck-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-ck ...'
    linux /vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-ck-fallback.img
    menuentry 'Arch Linux, med Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux ...'
    linux /vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux.img
    menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux ...'
    linux /vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    Is the error with GRUB, with the kernel, with the NVIDIA drivers or with Xorg? How can I debug and fix this once and for all?
    UPDATE:
    I have managed to login to the computer when it has reached the black screen via SSH with my phone and got the dmesg output:
    [ 0.000000] CPU0 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.17.1-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 15 15:04:35 CEST 2014
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cbc6ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cbc70000-0x00000000cbe71fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cbe72000-0x00000000db14efff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000db14f000-0x00000000db34efff] type 20
    [ 0.000000] BIOS-e820: [mem 0x00000000db34f000-0x00000000df69efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000df69f000-0x00000000df79efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000df79f000-0x00000000df7fefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000df7ff000-0x00000000df7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000df800000-0x00000000dfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021dffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by Lenovo
    [ 0.000000] efi: ACPI 2.0=0xdf7fe014 ACPI=0xdf7fe000 SMBIOS=0xdf69e000
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000087000) (0MB)
    [ 0.000000] efi: mem01: type=4, attr=0xf, range=[0x0000000000087000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000088000-0x000000000009d000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x000000000009d000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem04: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001053000) (15MB)
    [ 0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000001053000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f53000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000002f53000-0x0000000037834000) (840MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000037834000-0x0000000037c12000) (3MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000037c12000-0x0000000093e96000) (1474MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x0000000093e96000-0x00000000c9841000) (857MB)
    [ 0.000000] efi: mem11: type=4, attr=0xf, range=[0x00000000c9841000-0x00000000c9861000) (0MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x00000000c9861000-0x00000000cbc5a000) (35MB)
    [ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x00000000cbc5a000-0x00000000cbc70000) (0MB)
    [ 0.000000] efi: mem14: type=0, attr=0xf, range=[0x00000000cbc70000-0x00000000cbe72000) (2MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x00000000cbe72000-0x00000000cc831000) (9MB)
    [ 0.000000] efi: mem16: type=7, attr=0xf, range=[0x00000000cc831000-0x00000000ccce0000) (4MB)
    [ 0.000000] efi: mem17: type=1, attr=0xf, range=[0x00000000ccce0000-0x00000000cccfd000) (0MB)
    [ 0.000000] efi: mem18: type=7, attr=0xf, range=[0x00000000cccfd000-0x00000000cec6f000) (31MB)
    [ 0.000000] efi: mem19: type=4, attr=0xf, range=[0x00000000cec6f000-0x00000000cec70000) (0MB)
    [ 0.000000] efi: mem20: type=7, attr=0xf, range=[0x00000000cec70000-0x00000000cec81000) (0MB)
    [ 0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000cec81000-0x00000000d0974000) (28MB)
    [ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000d0974000-0x00000000d0986000) (0MB)
    [ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x00000000d0986000-0x00000000d254f000) (27MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000d254f000-0x00000000dac78000) (135MB)
    [ 0.000000] efi: mem25: type=2, attr=0xf, range=[0x00000000dac78000-0x00000000dac82000) (0MB)
    [ 0.000000] efi: mem26: type=3, attr=0xf, range=[0x00000000dac82000-0x00000000db14f000) (4MB)
    [ 0.000000] efi: mem27: type=5, attr=0x800000000000000f, range=[0x00000000db14f000-0x00000000db228000) (0MB)
    [ 0.000000] efi: mem28: type=5, attr=0x800000000000000f, range=[0x00000000db228000-0x00000000db34f000) (1MB)
    [ 0.000000] efi: mem29: type=6, attr=0x800000000000000f, range=[0x00000000db34f000-0x00000000dbef8000) (11MB)
    [ 0.000000] efi: mem30: type=6, attr=0x800000000000000f, range=[0x00000000dbef8000-0x00000000ded9f000) (46MB)
    [ 0.000000] efi: mem31: type=0, attr=0xf, range=[0x00000000ded9f000-0x00000000df3f0000) (6MB)
    [ 0.000000] efi: mem32: type=0, attr=0xf, range=[0x00000000df3f0000-0x00000000df69b000) (2MB)
    [ 0.000000] efi: mem33: type=0, attr=0xf, range=[0x00000000df69b000-0x00000000df69d000) (0MB)
    [ 0.000000] efi: mem34: type=0, attr=0xf, range=[0x00000000df69d000-0x00000000df69f000) (0MB)
    [ 0.000000] efi: mem35: type=10, attr=0xf, range=[0x00000000df69f000-0x00000000df6f0000) (0MB)
    [ 0.000000] efi: mem36: type=10, attr=0xf, range=[0x00000000df6f0000-0x00000000df79f000) (0MB)
    [ 0.000000] efi: mem37: type=9, attr=0xf, range=[0x00000000df79f000-0x00000000df7d7000) (0MB)
    [ 0.000000] efi: mem38: type=9, attr=0xf, range=[0x00000000df7d7000-0x00000000df7ff000) (0MB)
    [ 0.000000] efi: mem39: type=4, attr=0xf, range=[0x00000000df7ff000-0x00000000df800000) (0MB)
    [ 0.000000] efi: mem40: type=7, attr=0xf, range=[0x0000000100000000-0x000000021e000000) (4576MB)
    [ 0.000000] efi: mem41: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem42: type=0, attr=0x0, range=[0x00000000df800000-0x00000000e0000000) (8MB)
    [ 0.000000] efi: mem43: type=11, attr=0x8000000000000001, range=[0x00000000f80f8000-0x00000000f80f9000) (0MB)
    [ 0.000000] efi: mem44: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: LENOVO 244759G/244759G, BIOS G5ET92WW (2.52 ) 02/27/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x21e000 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-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0C0000000 mask FE0000000 write-back
    [ 0.000000] 4 base 0DF800000 mask FFF800000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask FE0000000 write-back
    [ 0.000000] 7 base 21E000000 mask FFE000000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xdf800 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 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 0x21de00000-0x21dffffff]
    [ 0.000000] [mem 0x21de00000-0x21dffffff] page 2M
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x21c000000-0x21ddfffff]
    [ 0.000000] [mem 0x21c000000-0x21ddfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x21bffffff]
    [ 0.000000] [mem 0x200000000-0x21bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xcbc6ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0xcbbfffff] page 2M
    [ 0.000000] [mem 0xcbc00000-0xcbc6ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xcbe72000-0xdb14efff]
    [ 0.000000] [mem 0xcbe72000-0xcbffffff] page 4k
    [ 0.000000] [mem 0xcc000000-0xdaffffff] page 2M
    [ 0.000000] [mem 0xdb000000-0xdb14efff] page 4k
    [ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
    [ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xdf7ff000-0xdf7fffff]
    [ 0.000000] [mem 0xdf7ff000-0xdf7fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x37834000-0x37c11fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000DF7FE014 000024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 0x00000000DF7FE170 0000CC (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: FACP 0x00000000DF7E6000 00010C (v05 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: DSDT 0x00000000DF7E8000 010A68 (v01 LENOVO TP-G5 00002520 INTL 20061109)
    [ 0.000000] ACPI: FACS 0x00000000DF754000 000040
    [ 0.000000] ACPI: SLIC 0x00000000DF7FD000 000176 (v01 LENOVO TP-G5 00002520 PTL 00000001)
    [ 0.000000] ACPI: TCPA 0x00000000DF7FC000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001)
    [ 0.000000] ACPI: SSDT 0x00000000DF7FB000 000408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
    [ 0.000000] ACPI: SSDT 0x00000000DF7FA000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
    [ 0.000000] ACPI: SSDT 0x00000000DF7F9000 000797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
    [ 0.000000] ACPI: HPET 0x00000000DF7E4000 000038 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: APIC 0x00000000DF7E3000 000098 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: MCFG 0x00000000DF7E2000 00003C (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: ECDT 0x00000000DF7E1000 000052 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: FPDT 0x00000000DF7E0000 000064 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: ASF! 0x00000000DF7E7000 0000A5 (v32 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: UEFI 0x00000000DF7DF000 00003E (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: UEFI 0x00000000DF7DE000 000042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: MSDM 0x00000000DF7DD000 000055 (v03 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: SSDT 0x00000000DF7DC000 000D23 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 0x00000000DF7DB000 000A83 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: DMAR 0x00000000DF7DA000 000080 (v01 INTEL SNB 00000001 INTL 00000001)
    [ 0.000000] ACPI: UEFI 0x00000000DF7D9000 0002A6 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: DBG2 0x00000000DF7D8000 0000E9 (v00 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: BGRT 0x00000000DF7D7000 000038 (v00 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021dffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x21dffffff]
    [ 0.000000] NODE_DATA [mem 0x21dff3000-0x21dff6fff]
    [ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880215600000-ffff88021d5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x21dffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0xcbc6ffff]
    [ 0.000000] node 0: [mem 0xcbe72000-0xdb14efff]
    [ 0.000000] node 0: [mem 0xdf7ff000-0xdf7fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x21dffffff]
    [ 0.000000] On node 0 totalpages: 2068202
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 23 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13950 pages used for memmap
    [ 0.000000] DMA32 zone: 892750 pages, LIFO batch:31
    [ 0.000000] Normal zone: 18304 pages used for memmap
    [ 0.000000] Normal zone: 1171456 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[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[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] 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 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: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcbc70000-0xcbe71fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdb14f000-0xdb34efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdb34f000-0xdf69efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf69f000-0xdf79efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf79f000-0xdf7fefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf800000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf80f7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
    [ 0.000000] e820: [mem 0xe0000000-0xf80f7fff] 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 @ffff88021dc00000 s86848 r8192 d23744 u262144
    [ 0.000000] pcpu-alloc: s86848 r8192 d23744 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2035861
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: 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: 7985704K/8272808K available (5381K kernel code, 909K rwdata, 1712K rodata, 1140K init, 1176K bss, 287104K 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] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [ 0.000000] NR_IRQS:8448 nr_irqs:488 0
    [ 0.000000] Console: colour dummy device 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] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2793.799 MHz processor
    [ 0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5589.41 BogoMIPS (lpj=9312663)
    [ 0.000033] pid_max: default: 32768 minimum: 301
    [ 0.000039] ACPI: Core revision 20140724
    [ 0.009889] ACPI: All ACPI Tables successfully acquired
    [ 0.041073] Security Framework initialized
    [ 0.041080] Yama: becoming mindful.
    [ 0.041501] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.043224] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.044022] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.044030] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.044222] Initializing cgroup subsys memory
    [ 0.044227] Initializing cgroup subsys devices
    [ 0.044229] Initializing cgroup subsys freezer
    [ 0.044231] Initializing cgroup subsys net_cls
    [ 0.044232] Initializing cgroup subsys blkio
    [ 0.044251] CPU: Physical Processor ID: 0
    [ 0.044251] CPU: Processor Core ID: 0
    [ 0.044256] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.044576] mce: CPU supports 9 MCE banks
    [ 0.044587] CPU0: Thermal monitoring enabled (TM1)
    [ 0.044597] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    [ 0.044696] Freeing SMP alternatives memory: 20K (ffffffff81a02000 - ffffffff81a07000)
    [ 0.047190] ftrace: allocating 20674 entries in 81 pages
    [ 0.055722] dmar: Host address width 36
    [ 0.055724] dmar: DRHD base: 0x000000fed90000 flags: 0x1
    [ 0.055728] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c9008020660262 ecap f0105a
    [ 0.055729] dmar: RMRR base: 0x000000debba000 end: 0x000000debd0fff
    [ 0.055802] IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0
    [ 0.055803] HPET id 0 under DRHD base 0xfed90000
    [ 0.055804] Queued invalidation will be enabled to support x2apic and Intr-remapping.
    [ 0.055890] Enabled IRQ remapping in x2apic mode
    [ 0.055891] Enabling x2apic
    [ 0.055892] Enabled x2apic
    [ 0.055900] Switched APIC routing to cluster x2apic.
    [ 0.056343] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.089389] smpboot: CPU0: Intel(R) Core(TM) i7-3840QM CPU @ 2.80GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.089397] TSC deadline timer enabled
    [ 0.089416] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.089433] ... version: 3
    [ 0.089434] ... bit width: 48
    [ 0.089435] ... generic registers: 4
    [ 0.089436] ... value mask: 0000ffffffffffff
    [ 0.089436] ... max period: 0000ffffffffffff
    [ 0.089437] ... fixed-purpose events: 3
    [ 0.089438] ... event mask: 000000070000000f
    [ 0.109521] x86: Booting SMP configuration:
    [ 0.109522] .... node #0, CPUs: #1
    [ 0.123229] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.129911] #2
    [ 0.140575] CPU2 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.150115] #3
    [ 0.166977] #4
    [ 0.177626] CPU4 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.187180] #5
    [ 0.207384] #6
    [ 0.218032] CPU6 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.227588] #7
    [ 0.241051] x86: Booted up 1 node, 8 CPUs
    [ 0.241055] smpboot: Total of 8 processors activated (44718.31 BogoMIPS)
    [ 0.248684] devtmpfs: initialized
    [ 0.250902] PM: Registering ACPI NVS region [mem 0xdf69f000-0xdf79efff] (1048576 bytes)
    [ 0.251609] pinctrl core: initialized pinctrl subsystem
    [ 0.251647] RTC time: 16:26:11, date: 10/27/14
    [ 0.251717] NET: Registered protocol family 16
    [ 0.251810] cpuidle: using governor ladder
    [ 0.251813] cpuidle: using governor menu
    [ 0.251841] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.251843] ACPI: bus type PCI registered
    [ 0.251844] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.252033] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.252035] PCI: not using MMCONFIG
    [ 0.252036] PCI: Using configuration type 1 for base access
    [ 0.265514] ACPI: Added _OSI(Module Device)
    [ 0.265515] ACPI: Added _OSI(Processor Device)
    [ 0.265516] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.265517] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.266718] ACPI : EC: EC description table is found, configuring boot EC
    [ 0.270105] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.309157] ACPI: Dynamic OEM Table Load:
    [ 0.309168] ACPI: SSDT 0xFFFF880211C58000 000A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.325525] ACPI: Dynamic OEM Table Load:
    [ 0.325534] ACPI: SSDT 0xFFFF880211D29000 000303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.338781] ACPI: Dynamic OEM Table Load:
    [ 0.338789] ACPI: SSDT 0xFFFF880211FBC000 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.352988] ACPI: Interpreter enabled
    [ 0.352993] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    [ 0.352997] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    [ 0.353007] ACPI: (supports S0 S3 S4 S5)
    [ 0.353008] ACPI: Using IOAPIC for interrupt routing
    [ 0.353019] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.362314] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
    [ 0.362393] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.364496] ACPI: Power Resource [PUBS] (on)
    [ 0.365000] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
    [ 0.365725] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
    [ 0.367751] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367859] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367910] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367961] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368011] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368064] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368114] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368182] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.368186] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.368265] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
    [ 0.368301] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
    [ 0.368303] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
    [ 0.368305] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
    [ 0.368306] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
    [ 0.368436] PCI host bridge to bus 0000:00
    [ 0.368438] pci_bus 0000:00: root bus resource [bus 00-3f]
    [ 0.368440] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.368441] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.368443] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.368444] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.368445] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.368446] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.368448] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.368449] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.368450] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.368451] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.368452] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.368454] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.368455] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.368456] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.368457] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.368459] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfebfffff]
    [ 0.368460] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
    [ 0.368466] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.368530] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.368561] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.368637] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.368661] pci 0000:00:14.0: reg 0x10: [mem 0xf4220000-0xf422ffff 64bit]
    [ 0.368730] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.368759] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.368797] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.368821] pci 0000:00:16.0: reg 0x10: [mem 0xf4235000-0xf423500f 64bit]
    [ 0.368896] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.368954] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
    [ 0.368972] pci 0000:00:16.3: reg 0x10: [io 0x5070-0x5077]
    [ 0.368981] pci 0000:00:16.3: reg 0x14: [mem 0xf423c000-0xf423cfff]
    [ 0.369103] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
    [ 0.369120] pci 0000:00:19.0: reg 0x10: [mem 0xf4200000-0xf421ffff]
    [ 0.369127] pci 0000:00:19.0: reg 0x14: [mem 0xf423b000-0xf423bfff]
    [ 0.369135] pci 0000:00:19.0: reg 0x18: [io 0x5040-0x505f]
    [ 0.369194] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.369219] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.369256] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.369276] pci 0000:00:1a.0: reg 0x10: [mem 0xf423a000-0xf423a3ff]
    [ 0.369363] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.369389] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.369426] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.369442] pci 0000:00:1b.0: reg 0x10: [mem 0xf4230000-0xf4233fff 64bit]
    [ 0.369514] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.369544] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.369581] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.369718] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.369792] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.369927] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.370005] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.370025] pci 0000:00:1d.0: reg 0x10: [mem 0xf4239000-0xf42393ff]
    [ 0.370111] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.370137] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.370171] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
    [ 0.370322] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.370339] pci 0000:00:1f.2: reg 0x10: [io 0x5068-0x506f]
    [ 0.370346] pci 0000:00:1f.2: reg 0x14: [io 0x507c-0x507f]
    [ 0.370354] pci 0000:00:1f.2: reg 0x18: [io 0x5060-0x5067]
    [ 0.370361] pci 0000:00:1f.2: reg 0x1c: [io 0x5078-0x507b]
    [ 0.370368] pci 0000:00:1f.2: reg 0x20: [io 0x5020-0x503f]
    [ 0.370376] pci 0000:00:1f.2: reg 0x24: [mem 0xf4238000-0xf42387ff]
    [ 0.370419] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.370472] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.370487] pci 0000:00:1f.3: reg 0x10: [mem 0xf4234000-0xf42340ff 64bit]
    [ 0.370507] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    [ 0.370616] pci 0000:01:00.0: [10de:0ffb] type 00 class 0x030000
    [ 0.370627] pci 0000:01:00.0: reg 0x10: [mem 0xf2000000-0xf2ffffff]
    [ 0.370637] pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.370646] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.370653] pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
    [ 0.370660] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 0.370746] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
    [ 0.370756] pci 0000:01:00.1: reg 0x10: [mem 0xf3000000-0xf3003fff]
    [ 1.377401] pci 0000:00:01.0: ASPM: Could not configure common clock
    [ 1.377430] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.377435] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.377440] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf30fffff]
    [ 1.377454] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 1.377615] pci 0000:02:00.0: [1180:e823] type 00 class 0x088001
    [ 1.377638] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
    [ 1.377665] pci 0000:02:00.0: reg 0x10: [mem 0xf3a00000-0xf3a000ff]
    [ 1.377889] pci 0000:02:00.0: supports D1 D2
    [ 1.377890] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.384191] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.384195] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.384198] pci 0000:00:1c.0: bridge window [mem 0xf3a00000-0xf41fffff]
    [ 1.384207] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf38fffff 64bit pref]
    [ 1.384435] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
    [ 1.384618] pci 0000:03:00.0: reg 0x10: [mem 0xf3900000-0xf3901fff 64bit]
    [ 1.385377] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 1.390878] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.390887] pci 0000:00:1c.1: bridge window [mem 0xf3900000-0xf39fffff]
    [ 1.391702] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 1.391749] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 1.391838] vgaarb: setting as boot device: PCI:0000:01:00.0
    [ 1.391840] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.391841] vgaarb: loaded
    [ 1.391842] vgaarb: bridge control possible 0000:01:00.0
    [ 1.391888] PCI: Using ACPI for IRQ routing
    [ 1.393360] PCI: pci_cache_line_size set to 64 bytes
    [ 1.393563] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
    [ 1.393565] e820: reserve RAM buffer [mem 0xcbc70000-0xcbffffff]
    [ 1.393566] e820: reserve RAM buffer [mem 0xdb14f000-0xdbffffff]
    [ 1.393567] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff]
    [ 1.393568] e820: reserve RAM buffer [mem 0x21e000000-0x21fffffff]
    [ 1.393651] NetLabel: Initializing
    [ 1.393652] NetLabel: domain hash size = 128
    [ 1.393653] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.393662] NetLabel: unlabeled traffic allowed by default
    [ 1.393685] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.393689] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.396725] Switched to clocksource hpet
    [ 1.400615] pnp: PnP ACPI init
    [ 1.400875] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 1.400878] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 1.400879] system 00:00: [mem 0x00100000-0xdfffffff] could not be reserved
    [ 1.400881] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 1.400883] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [ 1.400885] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 1.400948] pnp 00:01: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
    [ 1.400954] pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff]
    [ 1.400969] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 1.400971] system 00:01: [io 0x0500-0x057f] has been reserved
    [ 1.400972] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 1.400974] system 00:01: [io 0x15e0-0x15ef] has been reserved
    [ 1.400975] system 00:01: [io 0x1600-0x167f] has been reserved
    [ 1.400977] system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
    [ 1.400979] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.400980] system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 1.400982] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.400983] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.400985] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 1.400987] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.401030] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.401057] pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
    [ 1.401080] pnp 00:04: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
    [ 1.401117] pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [ 1.401508] pnp: PnP ACPI: found 6 devices
    [ 1.408246] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
    [ 1.408283] pci 0000:01:00.0: BAR 6: assigned [mem 0xf3080000-0xf30fffff pref]
    [ 1.408285] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.408288] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.408290] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf30fffff]
    [ 1.408292] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 1.408295] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.408301] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.408308] pci 0000:00:1c.0: bridge window [mem 0xf3a00000-0xf41fffff]
    [ 1.408313] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf38fffff 64bit pref]
    [ 1.408320] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.408327] pci 0000:00:1c.1: bridge window [mem 0xf3900000-0xf39fffff]
    [ 1.408339] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.408340] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.408342] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.408343] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 1.408344] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 1.408346] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 1.408347] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 1.408348] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 1.408349] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 1.408351] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 1.408352] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 1.408353] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 1.408355] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 1.408356] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 1.408357] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 1.408358] pci_bus 0000:00: resource 19 [mem 0xe0000000-0xfebfffff]
    [ 1.408360] pci_bus 0000:00: resource 20 [mem 0xfed40000-0xfed4bfff]
    [ 1.408361] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 1.408362] pci_bus 0000:01: resource 1 [mem 0xf2000000-0xf30fffff]
    [ 1.408364] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 1.408365] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 1.408366] pci_bus 0000:02: resource 1 [mem 0xf3a00000-0xf41fffff]
    [ 1.408368] pci_bus 0000:02: resource 2 [mem 0xf3100000-0xf38fffff 64bit pref]
    [ 1.408369] pci_bus 0000:03: resource 1 [mem 0xf3900000-0xf39fffff]
    [ 1.408391] NET: Registered protocol family 2
    [ 1.408550] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 1.408683] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.408851] TCP: Hash tables configured (established 65536 bind 65536)
    [ 1.408867] TCP: reno registered
    [ 1.408875] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.408903] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.408956] NET: Registered protocol family 1
    [ 1.409307] pci 0000:01:00.0: Video device with shadowed ROM
    [ 1.409390] PCI: CLS 64 bytes, default 64
    [ 1.409431] Unpacking initramfs...
    [ 1.456654] Freeing initrd memory: 3960K (ffff880037834000 - ffff880037c12000)
    [ 1.456675] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.456678] software IO TLB [mem 0xd6c82000-0xdac82000] (64MB) mapped at [ffff8800d6c82000-ffff8800dac81fff]
    [ 1.457012] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
    [ 1.457059] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457066] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457072] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457077] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457085] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457092] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457098] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457105] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457147] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 1.457167] Scanning for low memory corruption every 60 seconds
    [ 1.457402] futex hash table entries: 2048 (order: 5, 131072 bytes)
    [ 1.457428] Initialise system trusted keyring
    [ 1.457761] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.458800] zpool: loaded
    [ 1.458802] zbud: loaded
    [ 1.458947] VFS: Disk quotas dquot_6.5.2
    [ 1.458972] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.459072] msgmni has been set to 15747
    [ 1.459118] Key type big_key registered
    [ 1.459270] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.459324] io scheduler noop registered
    [ 1.459326] io scheduler deadline registered
    [ 1.459347] io scheduler cfq registered (default)
    [ 1.459465] pcieport 0000:00:01.0: irq 25 for MSI/MSI-X
    [ 1.459740] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.459753] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.459780] efifb: invalid framebuffer address
    [ 1.459787] intel_idle: MWAIT substates: 0x21120
    [ 1.459788] intel_idle: v0.4 model 0x3A
    [ 1.459789] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.460069] GHES: HEST is not enabled!
    [ 1.460132] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.480906] 0000:00:16.3: ttyS0 at I/O 0x5070 (irq = 19, base_baud = 115200) is a 16550A
    [ 1.481036] Linux agpgart interface v0.103
    [ 1.481100] rtc_cmos 00:02: RTC can wake from S4
    [ 1.481222] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.481253] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.481261] Intel P-state driver initializing.
    [ 1.481419] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.481599] TCP: cubic registered
    [ 1.481764] NET: Registered protocol family 10
    [ 1.482132] NET: Registered protocol family 17
    [ 1.482732] Loading compiled-in X.509 certificates
    [ 1.482753] registered taskstats version 1
    [ 1.483687] Magic number: 2:127:440
    [ 1.483695] clockevents broadcast: hash matches
    [ 1.483710] pcieport 0000:00:1c.1: hash matches
    [ 1.483810] rtc_cmos 00:02: setting system clock to 2014-10-27 16:26:12 UTC (1414427172)
    [ 1.483917] PM: Hibernation image not present or could not be loaded.
    [ 1.485343] Freeing unused kernel memory: 1140K (ffffffff818e5000 - ffffffff81a02000)
    [ 1.485346] Write protecting the kernel read-only data: 8192k
    [ 1.488857] Freeing unused kernel memory: 752K (ffff880002544000 - ffff880002600000)
    [ 1.490323] Freeing unused kernel memory: 336K (ffff8800027ac000 - ffff880002800000)
    [ 1.500877] random: systemd-tmpfile urandom read with 7 bits of entropy available
    [ 1.502894] systemd-udevd[79]: starting version 216
    [ 1.511492] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 1.513508] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.513799] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.516752] ACPI: bus type USB registered
    [ 1.516776] usbcore: registered new interface driver usbfs
    [ 1.516791] usbcore: registered new interface driver hub
    [ 1.516980] usbcore: registered new device driver usb
    [ 1.517579] sdhci: Secure Digital Host Controller Interface driver
    [ 1.517580] sdhci: Copyright(c) Pierre Ossman
    [ 1.517794] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.517896] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.517906] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 1.518010] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e823] (rev 5)
    [ 1.518069] SCSI subsystem initialized
    [ 1.518079] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 1.518158] xhci_hcd 0000:00:14.0: irq 26 for MSI/MSI-X
    [ 1.518215] sdhci-pci 0000:02:00.0: No vmmc regulator found
    [ 1.518217] sdhci-pci 0000:02:00.0: No vqmmc regulator found
    [ 1.518225] ehci-pci: EHCI PCI platform driver
    [ 1.518342] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
    [ 1.518499] hub 1-0:1.0: USB hub found
    [ 1.518510] hub 1-0:1.0: 4 ports detected
    [ 1.518776] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.518778] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 1.518958] hub 2-0:1.0: USB hub found
    [ 1.518969] hub 2-0:1.0: 4 ports detected
    [ 1.519036] libata version 3.00 loaded.
    [ 1.519376] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 1.519383] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.519397] ehci-pci 0000:00:1a.0: debug port 2
    [ 1.523293] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.523300] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf423a000
    [ 1.528153] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.530239] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.530357] hub 3-0:1.0: USB hub found
    [ 1.530361] hub 3-0:1.0: 3 ports detected
    [ 1.530512] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 1.530515] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.530528] ehci-pci 0000:00:1d.0: debug port 2
    [ 1.534415] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.534428] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf4239000
    [ 1.543624] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.543867] hub 4-0:1.0: USB hub found
    [ 1.543871] hub 4-0:1.0: 3 ports detected
    [ 1.544002] ahci 0000:00:1f.2: version 3.0
    [ 1.544111] ahci 0000:00:1f.2: irq 27 for MSI/MSI-X
    [ 1.544153] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
    [ 1.544155] ahci 0000:00:1f.2: flags: 64bit ncq ilck pm led clo pio slum part ems apst
    [ 1.550818] scsi host0: ahci
    [ 1.551275] scsi host1: ahci
    [ 1.551751] scsi host2: ahci
    [ 1.552085] scsi host3: ahci
    [ 1.552361] scsi host4: ahci
    [ 1.552561] scsi host5: ahci
    [ 1.552602] ata1: SATA max UDMA/133 abar m2048@0xf4238000 port 0xf4238100 irq 27
    [ 1.552605] ata2: SATA max UDMA/133 abar m2048@0xf4238000 port 0xf4238180 irq 27
    [ 1.552606] ata3: DUMMY
    [ 1.552606] ata4: DUMMY
    [ 1.552607] ata5: DUMMY
    [ 1.552608] ata6: DUMMY
    [ 1.837361] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.870771] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.882191] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.882199] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.892187] ata1.00: ATA-9: INTEL SSDSC2BW240A3L, LF1i, max UDMA/133
    [ 1.892194] ata1.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.902211] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.902220] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.912240] ata1.00: configured for UDMA/133
    [ 1.912585] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSC2BW24 LF1i PQ: 0 ANSI: 5
    [ 1.924185] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.926015] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.926024] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.927460] ata2.00: ATA-8: WDC WD10JPVT-08A1YT2, 01.01A01, max UDMA/133
    [ 1.927467] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.929353] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.929362] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.930787] ata2.00: configured for UDMA/133
    [ 1.931112] scsi 1:0:0:0: Direct-Access ATA WDC WD10JPVT-08A 1A01 PQ: 0 ANSI: 5
    [ 1.936614] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/223 GiB)
    [ 1.936637] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.936640] sd 1:0:0:0: [sdb] 4096-byte physical blocks
    [ 1.936653] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.936655] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.936664] sd 1:0:0:0: [sdb] Write Protect is off
    [ 1.936666] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.936667] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.936684] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.937479] sda: sda1 sda2 sda3 sda4
    [ 1.937778] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.962137] hub 3-1:1.0: USB hub found
    [ 1.962324] hub 3-1:1.0: 6 ports detected
    [ 2.065022] sdb: sdb1 sdb2
    [ 2.065588] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 2.067665] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 2.192302] hub 4-1:1.0: USB hub found
    [ 2.192454] hub 4-1:1.0: 8 ports detected
    [ 2.261319] usb 3-1.6: new high-speed USB device number 3 using ehci-pci
    [ 2.344660] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.458157] tsc: Refined TSC clocksource calibration: 2793.661 MHz
    [ 2.461737] usb 4-1.7: new low-speed USB device number 3 using ehci-pci
    [ 2.741966] systemd[1]: Cannot add dependency job for unit httpd.service, ignoring: Unit httpd.service failed to load: No such file or directory.
    [ 2.741977] systemd[1]: Cannot add dependency job for unit [email protected], ignoring: Unit [email protected] failed to load: No such file or directory.
    [ 2.766662] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [ 2.797195] systemd-udevd[209]: starting version 216
    [ 2.994729] pps_core: LinuxPPS API ver. 1 registered
    [ 2.994732] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 2.994980] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\_SB_.PCI0.LPC_.PMIO) (20140724/utaddress-258)
    [ 2.994985] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.994991] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
    [ 2.994994] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.994995] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
    [ 2.994997] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.994998] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
    [ 2.995000] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.995001] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 2.995905] PTP clock support registered
    [ 2.996690] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 2.997968] mei_me 0000:00:16.0: irq 28 for MSI/MSI-X
    [ 3.000008] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 3.000009] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
    [ 3.004652] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 3.004707] e1000e 0000:00:19.0: irq 29 for MSI/MSI-X
    [ 3.011387] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    [ 3.011549] ACPI: Lid Switch [LID]
    [ 3.011606] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    [ 3.011610] ACPI: Sleep Button [SLPB]
    [ 3.011685] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 3.011688] ACPI: Power Button [PWRF]
    [ 3.011823] ACPI: Video Device [VID1] (multi-head: yes rom: yes post: no)
    [ 3.033484] acpi device:0a: registered as cooling_device8
    [ 3.033554] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input5
    [ 3.037383] Non-volatile memory driver v1.3
    [ 3.042174] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
    [ 3.042375] wmi: Mapper loaded
    [ 3.042586] thinkpad_acpi: ThinkPad ACPI Extras v0.25
    [ 3.042588] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 3.042590] thinkpad_acpi: ThinkPad BIOS G5ET92WW (2.52 ), EC unknown
    [ 3.042591] thinkpad_acpi: Lenovo ThinkPad W530, model 244759G
    [ 3.043058] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.043279] thinkpad_acpi: Unsupported brightness interface, please contact [email protected]
    [ 3.044385] thinkpad_acpi: radio switch found; radios are enabled
    [ 3.044398] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 3.044399] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 3.045054] ACPI: Battery Slot [BAT0] (battery present)
    [ 3.046083] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.046085] ACPI: Thermal Zone [THM0] (48 C)
    [ 3.046124] ACPI: AC Adapter [AC] (on-line)
    [ 3.046223] random: nonblocking pool is initialized
    [ 3.047273] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 3.050109] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
    [ 3.056235] rtc-efi rtc-efi: rtc core: registered rtc-efi as rtc1
    [ 3.056771] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.056772] Copyright(c) 2003- 2014 Intel Corporation
    [ 3.056924] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.057166] iwlwifi 0000:03:00.0: irq 30 for MSI/MSI-X
    [ 3.058976] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000-6.ucode failed with error -2
    [ 3.058992] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000-5.ucode failed with error -2
    [ 3.059556] input: PC Speaker as /devices/platform/pcspkr/input/input7
    [ 3.062216] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm
    [ 3.065041] AVX version of gcm_enc/dec engaged.
    [ 3.073560] Adding 8388604k swap on /dev/sda2. Priority:-1 extents:1 across:8388604k SSFS
    [ 3.102267] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
    [ 3.105383] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.105387] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.105388] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.105390] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
    [ 3.105491] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 3.116970] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 3.119500] media: Linux media interface: v0.10
    [ 3.123002] Linux video capture interface: v2.00
    [ 3.126296] iTCO_vendor_support: vendor-support=0
    [ 3.127001] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 3.127038] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 3.127120] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 3.152895] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.157388] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b2eb)
    [ 3.161446] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input9
    [ 3.161525] usbcore: registered new interface driver uvcvideo
    [ 3.161527] USB Video Class driver (1.1.1)
    [ 3.163015] intel_rapl: Found RAPL domain package
    [ 3.163018] intel_rapl: Found RAPL domain core
    [ 3.174342] iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
    [ 3.180951] systemd-journald[183]: Received request to flush runtime journal from PID 1
    [ 3.195849] systemd-udevd[212]: renamed network interface wlan0 to wlp3s0
    [ 3.196309] hidraw: raw HID events driver (C) Jiri Kosina
    [ 3.207108] usbcore: registered new interface driver usbhid
    [ 3.207115] usbhid: USB HID core driver
    [ 3.234434] hid-generic 0003:0765:5010.0001: hiddev0,hidraw0: USB HID v1.11 Device [HID 0765:5010] on usb-0000:00:1d.0-1.7/input0
    [ 3.279807] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 3.279810] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:96:b3:ae
    [ 3.279811

    According to the wiki adding rcutree.rcu_idle_gp_delay=1 as a kernel parameter should mitigate this:  "NVRM: GPU at 0000:01:00.0 has fallen off the bus."
    https://wiki.archlinux.org/index.php/NV … iled.21.29
    Adding nolapic stops my monitors from going black, but then I only have one cpu core, and probably other problems...

  • Too many bugs to isolate a bug when swithching from Alt-F1 to Alt-F7

    First, I consider Linux to be the less buggy OS out there.
    Well, Windows would be less buggy, but it does not really exist, since you have to pay to use it.
    Still, I use to consider Linux very buggy. This opinion I hold true more than ever.
    Here is my box:
    A P5GZ-MX motherboard (intel 945GZ), with 1 GB Memory, and an Celeron D @ 2.66 GHz.
    Now, the integrated VGA connector is badly soldered, so that I used to put something to hold the cable up to have an image.
    This is not the monitor Cable that is broken (I tried an other one and had the same problem).
    When this was not enough anymore, I put my box upside-down (reversing side of  DVD and HD too), that way gravity would hold the cable up (eh... down).
    When this was not enough anymore, I put an old Radeon 7200 (an R100 generation ATI PCI card).
    Then, my problems began (eh... I means continue as usual).
    Let's begin the story with when I installed Arch Linux (again, well the first time with the Radeon 7200 card), about three weeks ago.
    Well, I set the BIOS to prefer the PCI card, to internal one, for what should be now obvious reason.
    I installed Xorg... and things were not so bad. Except, one in about 3 times, when switching back from (Ctrl-Alt-F1 console) to (Alt-F7 Xorg).
    I would have THE bug. Well, basically, one or many window would be empty. Mouse would move, but not interact with anything on screen. Sometimes mouse is jailed inside a window (cannot move out of a window). Recently (maybe just because Firefox not occupying full screen), I would see that some of the text from (Ctrl-Alt-F1 text console) would appears (very brokenly) under the windows (about 4 times on the screen, in green on black).
    I still can swith to text mode with Ctrl-Alt-F1 after bug, and then can use the console.
    Nothing interesting would show in Xorg.0.log after the bug happened.
    I thought maybe I should try a different window manager. I tried icewm rather than OpenBox (or twm).
    At first, I thought OpenBox was the bug, because icewn seems not exhibit THE bug.
    But then, I came to the conclusion, that icewm just had made the bug happen one in about twenty (rathen than in three).
    So I thought that I should install fbcon and vesa driver too (there were some warning they were not installed).
    No change.
    Then I thought, maybe I should try with the vesa driver rather than the radeon one.
    Surprise:
    (EE) VESA(0): V_BIOS address 0x3d810 out of range
    (EE) screen found, but none have a usable configuration
    Then I thought, I should try with latest kernel. Downloaded it.
    Still the bug... with 3.1.1-1-Arch (32 bits BTW).
    Ok, so let's stick with radeon. Reading on possible Kernel Mode Setting with Radeon, I created /etc/modprobe.d/radeon.conf with:
    options radeon modeset=1
    Well, just restarting with startx, show in Xorg.0.log, that KMS was still active.
    So, I thought, let's reboot and see.
    But I did not see.
    Well, my GRUB menu, have NO vga= on the kernel line. So that I boot in plain text (as far as I know).
    At first, Linux seems to boot fine, but then not much before when login prompt would appears... screen became totally black.
    I realized I was still able to log in without seeing what I do, and 'reboot'.
    Ok, try the fallback... not working either.
    So basically, my computer still was working, except I would not see anything.
    Then I began to think... well, maybe I could try to connect the monitor in the 'badly soldered' internal VGA connector.
    Surprise, surprise: the login prompt! Ouf!
    Well, strangely I now need to hold the cable up, so that I thought: maybe this is time to put my box down side up (remember, it is already up side down). But, was too lazy for it. I just edited back /etc/modprobe.d/radeon.conf with modese=0, put back the monitor in the Radeon 7200 card, and rebooted.
    Things were 'fine' again.
    That's when, I thought I should write a message for maybe asking help, but frankly more to publicly complain.

    Revised hypothesis:
    I now believe that the bug while switching from console back to Xorg is not hardware related, and should probably happens to anyone. Also I have a new procedure that seems to always trigger it:
    1) on console (Ctrl-Alt-F1) run startx    (without ending & )
    2) You should be in Xorg, go back to console with Ctrl-Alt-F1
    3) type Enter
    4) Type Alt-F7 to go back in Xorg... hopefully for me in bogus state
    Now, the message that seems to be written in some titlebars are the same, I think, that I would get when I go back to console and do: Ctrl-C (2 or three times)... then after the bug I would see some:
    xterm: Ressource temporarily not available  (or something very similar)
    About V_BIOS address 0x3d810 out of range I am now convinced it is while loading (initializing) int10 module,
    The sad part is that if I add Option "NoInt10" "True" to vesa driver section (doc seems to wrongly suggest to put it in Server section)... then yes, the out of range does not appears, but vesa will continue to unload itself... and finally no usable screen found message would continue to appears. So I suppose Int10 module have become mandatory to vesa rather than optional.

  • Grub cannot detect Windows 8 partition (Yields error)

    Hi! I have installed Archlinux in my Samsung ATIV Book 4.
    sudo blkid
    yields,
    /dev/sda2: LABEL="Recovery" UUID="648265F58265CBDC" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="594f6bb6-b7f3-4663-8f77-f9473da45702"
    /dev/sda5: UUID="30D66A21D669E814" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="df174719-57b3-4d9b-982c-536f33faac55"
    /dev/sda8: LABEL="Metanoia" UUID="1c886c4c-d6f4-4a9f-8f42-082abb95dccd" TYPE="xfs" PARTUUID="8b16bd95-1858-4395-a92a-69817e318469"
    /dev/sda1: PARTLABEL="Basic data partition" PARTUUID="067cfb82-ff81-4398-9b66-09821a442c0f"
    /dev/sda3: UUID="7467-9968" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="ba5109ac-f01c-4838-9334-0ef9c667cb2f"
    /dev/sda4: PARTLABEL="Microsoft reserved partition" PARTUUID="1de2e683-b553-4bba-99b9-b67350177d3d"
    /dev/sda6: UUID="b1554842-1ae8-40bc-8422-abe9a412ce95" TYPE="ext4" PARTLABEL="Anoia" PARTUUID="19a1c96d-f1ed-4d43-ba39-b7227503d3cf"
    /dev/sda7: UUID="2d51872f-57af-4523-bd9a-c42b2f25eeec" TYPE="jfs" PARTLABEL="Pronoia" PARTUUID="704783d2-0630-4297-83fa-da9daef22dfc"
    I have disabled secure/fast boot. Have installed dosfstools, mtools, and ntfs-3g.
    My fstab is
    UUID=b1554842-1ae8-40bc-8422-abe9a412ce95 / ext4 rw,relatime,data=ordered 0 1
    # /dev/sda7
    UUID=2d51872f-57af-4523-bd9a-c42b2f25eeec /home jfs rw,relatime 0 2
    # /dev/sda3
    UUID=7467-9968 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
    bootmgfw.efi is at /boot/EFI/Microsoft/Boot/bootmgfw.efi
    I have installed both archlinux and Windows in UEFI-GPT mode.
    When I followed Wiki instructions, and tried to regenerate grub, I receive
    Generating grub configuration file ...
    Found linux image: /boot/vmlinuz-linux
    Found initramfs image: /boot/initramfs-linux.img
    Found fallback initramfs image: /boot/initramfs-linux-fallback.img
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    No volume groups found
    Found Windows Boot Manager on /dev/sda3@/EFI/Microsoft/Boot/bootmgfw.efi
    error: out of memory.
    error: syntax error.
    error: Incorrect command.
    error: syntax error.
    Syntax error at line 216
    Syntax errors are detected in generated GRUB config file.
    Ensure that there are no errors in /etc/default/grub
    and /etc/grub.d/* files or please file a bug report with
    /boot/grub/grub.cfg.new file attached.
    done
    What should I do to dual boot with Windows?
    My /etc/grub.d/40-custom file is
    #!/bin/sh
    exec tail -n +3 $0
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    if [ "${grub_platform}" == "efi" ]; then
    menuentry "Microsoft Windows Vista/7/8/8.1 UEFI-GPT" {
    insmod part_gpt
    insmod fat
    insmod search_fs_uuid
    insmod chain
    search --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 7467-9968
    chainloader /EFI/Microsoft/Boot/bootmgfw.efi
    fi
    /boot/grub/grub.cfg is this
    When I select give Windows the highest priority, I receive a grub error. (When I manually try to load Windows from UEFI shell using fs0:\EFI\Microsoft\Boot\bootmgfw.efi or bootx64.efi, I receive "error: file '/boot/grub/x86_64-efi/normal.mod' not found. Entering rescue mode...
    grub rescue >")
    I know I the Windows 8 bootloader is there because I can boot into Windows from Grub if I install Ubuntu and run boot-repair.
    Tried this as well but nothing changes.
    Here is my /etc/default/grub
    Last edited by celebrimbor (2014-04-17 12:10:27)

    Thanks Visruth. I managed to get the Windows 8.1 up and running without the the recovery partition.
    On another topic, on the previous Windows 8.1 system. (before I deleted and reinstalled it, I downloaded recovery to a usb flash drive. THe RECOVERYflash drive contains 3 foldes named boot, efi and sources and also two files in the root diectory of the RECOVERYusb flash drive named bootmgr and bootmgr.efi. How would I use these files and folders, (for future reference)?

  • How to setup GRUB for dual booting OS X and arch?

    So I am reading the wiki, and there is a command I need to run, but for whatever reason I'm getting an error.  The command is,
    grub-mkstandalone -o bootx64.efi -d usr/lib/grub/x86_64-efi -O x86_64-efi -C xz boot/grub/grub.cfg
    and error I'm getting is,
    grub-mkstandalone: -C: (PROGRAM ERROR) Option should have been recognized!?
    Google searching the error yielded 2 results
    Last edited by ipatch (2014-05-22 18:35:32)

    Looks like the -C flag has been deprecated:
    claire ~ % grub-mkstandalone --help
    Usage: grub-mkstandalone [OPTION...] [OPTION] SOURCE...
    Generate a standalone image (containing all modules) in the selected format
    --compress[=no,xz,gz,lzo] compress GRUB files [optional]
    -d, --directory=DIR use images and modules under DIR
    [default=/usr/lib/grub/<platform>]
    --fonts=FONTS install FONTS [default=unicode]
    --install-modules=MODULES install only MODULES and their dependencies
    [default=all]
    -k, --pubkey=FILE embed FILE as public key for signature checking
    --locale-directory=DIR use translations under DIR
    [default=/usr/share/locale]
    --locales=LOCALES install only LOCALES [default=all]
    --modules=MODULES pre-load specified modules MODULES
    --themes=THEMES install THEMES [default=starfield]
    -v, --verbose print verbose messages.
    --core-compress=xz|none|auto
    choose the compression to use for core image
    -o, --output=FILE save output in FILE [required]
    -O, --format=FILE generate an image in FORMAT
    available formats: i386-coreboot, i386-multiboot,
    i386-pc, i386-pc-pxe, i386-pc-eltorito, i386-efi,
    i386-ieee1275, i386-qemu, x86_64-efi, i386-xen,
    x86_64-xen, mipsel-yeeloong-flash,
    mipsel-fuloong2f-flash, mipsel-loongson-elf,
    powerpc-ieee1275, sparc64-ieee1275-raw,
    sparc64-ieee1275-cdcore, sparc64-ieee1275-aout,
    ia64-efi, mips-arc, mipsel-arc,
    mipsel-qemu_mips-elf, mips-qemu_mips-flash,
    mipsel-qemu_mips-flash, mips-qemu_mips-elf,
    arm-uboot, arm-efi, arm64-efi
    -?, --help give this help list
    --usage give a short usage message
    -V, --version print program version
    Mandatory or optional arguments to long options are also mandatory or optional
    for any corresponding short options.
    Graft point syntax (E.g. /boot/grub/grub.cfg=./grub.cfg) is accepted
    Report bugs to <[email protected]>.
    I couldn't find -C in the man-page either.

  • Firmware bug w/Intel Mini

    Greetings to all.
    There is currently a bug in the Mini's firmware that poses as a slight problem for me. I'm sure some people are aware of this, but Apple has yet to present a solution.
    Problem:
    While booting a Legacy OS, such as Linux (Grub/LILO), or Windows, the EFI firmware's Legacy BIOS (CSM) hangs when a monitor is NOT connected.
    This appears to be a glitch in the VGA Rom BIOS that the CSM uses to allow legacy OS's to initialize and use the i950 Graphics Chipset.
    This does not appear to be DDC related, as a KVM allows the system to boot a Legacy OS, even though a KVM provides no such signals.
    It also isn't OS related. We are talking about EFI/CSM here, not Mac OS X or Linux. It's strictly a firmware issue with the Legacy OS code sitting inside EFI.
    Why hasn't Apple fixed this? I'm sure it's a trivial problem- just about every other computer out there (regardless of using EFI or not) can and will boot if no monitor is attached.
    There are some of us who would like to run Mini's in server configurations as they are excellent machines that borderline on uber-powerful embedded platforms. I don't think it's out of line to ask that the firmware correctly handle a situation where one might be booting Linux or Windows without a monitor attached.
    It is possible to resolve this issue via using a monitor "terminator" to provide a dummy signal that a monitor is attached, but I'm sure the solution is equally as simple on Apple's part (if a monitor isn't detected, continue to boot anyways!).
    -SC

    If you join the Apple Developer Connection (there is a free option), you can submit bugs directly to Apple. That might be a better way to handle this issue.
    http://developer.apple.com/bugreporter/
    -Doug

  • Monitor freezes after grub starts

    Hi,
    I'm with the following problem: when I start my computer, in a few seconds after I choose Arch Linux at the grub menu my monitor shows a lot of garbage that does not allow me to see what is going on with my computer.  So I don't even get the command line after I start my computer
    It's not a problem with my monitor because I can use the arch installation CD to get to the command line.
    I tried to use the second option from the grub menu, arch linux fallback, but I had the exactly same problem.
    I have no clue of how I can even start trying to solve this problem. The only thing that I could think of was to use the installation CD, mount /var/ and get the messages.log file. The file can be downloaded from:
    http://www.megaupload.com/?d=90BUSPQP
    Do you have any idea of how I can solve this problem?
    Thanks!

    Sorry... it didn't come to me that downloading from megaupload would be such a hassle. Thanks George.Harmony for letting me know.
    But the good thing is that the messages from my last boot does not go over the sending limits of this forum:
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys cpuset
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys cpu
    Jun 24 13:35:25 myhost kernel: Linux version 2.6.34-ARCH (thomas@evey) (gcc version 4.5.0 20100610 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Jun 19 00:07:49 CEST 2010
    Jun 24 13:35:25 myhost kernel: Command line: root=/dev/disk/by-uuid/85509a7d-94c3-49fe-a970-84ba9230c35e ro vga=773
    Jun 24 13:35:25 myhost kernel: BIOS-provided physical RAM map:
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 0000000000000000 - 000000000009c400 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 000000000009c400 - 00000000000a0000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 0000000000100000 - 00000000bf8a1000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bf8a1000 - 00000000bf8a7000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bf8a7000 - 00000000bf9bb000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bf9bb000 - 00000000bfa0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfa0f000 - 00000000bfb08000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfb08000 - 00000000bfd0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd0f000 - 00000000bfd18000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd18000 - 00000000bfd1f000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd1f000 - 00000000bfd63000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd63000 - 00000000bfd9f000 (ACPI NVS)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd9f000 - 00000000bfde4000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfde4000 - 00000000bfdff000 (ACPI data)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfdff000 - 00000000bfe00000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    Jun 24 13:35:25 myhost kernel: NX (Execute Disable) protection: active
    Jun 24 13:35:25 myhost kernel: DMI present.
    Jun 24 13:35:25 myhost kernel: No AGP bridge found
    Jun 24 13:35:25 myhost kernel: last_pfn = 0x140000 max_arch_pfn = 0x400000000
    Jun 24 13:35:25 myhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jun 24 13:35:25 myhost kernel: last_pfn = 0xbfe00 max_arch_pfn = 0x400000000
    Jun 24 13:35:25 myhost kernel: Scanning 1 areas for low memory corruption
    Jun 24 13:35:25 myhost kernel: modified physical RAM map:
    Jun 24 13:35:25 myhost kernel: modified: 0000000000000000 - 0000000000010000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 0000000000010000 - 000000000009c400 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 000000000009c400 - 00000000000a0000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000000d2000 - 00000000000d4000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000000e0000 - 0000000000100000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 0000000000100000 - 00000000bf8a1000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bf8a1000 - 00000000bf8a7000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bf8a7000 - 00000000bf9bb000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bf9bb000 - 00000000bfa0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfa0f000 - 00000000bfb08000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfb08000 - 00000000bfd0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd0f000 - 00000000bfd18000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd18000 - 00000000bfd1f000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd1f000 - 00000000bfd63000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd63000 - 00000000bfd9f000 (ACPI NVS)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd9f000 - 00000000bfde4000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfde4000 - 00000000bfdff000 (ACPI data)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfdff000 - 00000000bfe00000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 0000000100000000 - 0000000140000000 (usable)
    Jun 24 13:35:25 myhost kernel: found SMP MP-table at [ffff8800000f79c0] f79c0
    Jun 24 13:35:25 myhost kernel: init_memory_mapping: 0000000000000000-00000000bfe00000
    Jun 24 13:35:25 myhost kernel: init_memory_mapping: 0000000100000000-0000000140000000
    Jun 24 13:35:25 myhost kernel: RAMDISK: 37e59000 - 37ff0000
    Jun 24 13:35:25 myhost kernel: ACPI: RSDP 00000000000f7910 00024 (v02 PTLTD )
    Jun 24 13:35:25 myhost kernel: ACPI: XSDT 00000000bfdf7cd6 00074 (v01 DELL QA09 06040000 LTP 00000000)
    Jun 24 13:35:25 myhost kernel: ACPI: FACP 00000000bfde8000 000F4 (v03 INTEL CRESTLNE 06040000 ALAN 00000001)
    Jun 24 13:35:25 myhost kernel: ACPI: DSDT 00000000bfde9000 06E3C (v02 Intel CANTIGA 06040000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: FACS 00000000bfd9efc0 00040
    Jun 24 13:35:25 myhost kernel: ACPI: HPET 00000000bfdfed16 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Jun 24 13:35:25 myhost kernel: ACPI: MCFG 00000000bfdfed4e 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Jun 24 13:35:25 myhost kernel: ACPI: APIC 00000000bfdfed8a 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    Jun 24 13:35:25 myhost kernel: ACPI: BOOT 00000000bfdfedf2 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    Jun 24 13:35:25 myhost kernel: ACPI: SLIC 00000000bfdfee1a 00176 (v01 DELL QA09 06040000 LTP 00000000)
    Jun 24 13:35:25 myhost kernel: ACPI: OSFR 00000000bfdfef90 00070 (v01 DELL DELL 06040000 ASL 00000061)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfde7000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfde6000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfde5000 0020F (v01 PmRef ApTst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: Zone PFN ranges:
    Jun 24 13:35:25 myhost kernel: DMA 0x00000010 -> 0x00001000
    Jun 24 13:35:25 myhost kernel: DMA32 0x00001000 -> 0x00100000
    Jun 24 13:35:25 myhost kernel: Normal 0x00100000 -> 0x00140000
    Jun 24 13:35:25 myhost kernel: Movable zone start PFN for each node
    Jun 24 13:35:25 myhost kernel: early_node_map[9] active PFN ranges
    Jun 24 13:35:25 myhost kernel: 0: 0x00000010 -> 0x0000009c
    Jun 24 13:35:25 myhost kernel: 0: 0x00000100 -> 0x000bf8a1
    Jun 24 13:35:25 myhost kernel: 0: 0x000bf8a7 -> 0x000bf9bb
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfa0f -> 0x000bfb08
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfd0f -> 0x000bfd18
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfd1f -> 0x000bfd63
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfd9f -> 0x000bfde4
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfdff -> 0x000bfe00
    Jun 24 13:35:25 myhost kernel: 0: 0x00100000 -> 0x00140000
    Jun 24 13:35:25 myhost kernel: ACPI: PM-Timer IO Port: 0x408
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jun 24 13:35:25 myhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jun 24 13:35:25 myhost kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Jun 24 13:35:25 myhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    Jun 24 13:35:25 myhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jun 24 13:35:25 myhost kernel: Using ACPI (MADT) for SMP configuration information
    Jun 24 13:35:25 myhost kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Jun 24 13:35:25 myhost kernel: SMP: Allowing 2 CPUs, 0 hotplug CPUs
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 000000000009c000 - 000000000009d000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000d4000 - 00000000000e0000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bf8a1000 - 00000000bf8a7000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bf9bb000 - 00000000bfa0f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfb08000 - 00000000bfd0f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfd18000 - 00000000bfd1f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfd63000 - 00000000bfd9f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfde4000 - 00000000bfdff000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfe00000 - 0000000100000000
    Jun 24 13:35:25 myhost kernel: Allocating PCI resources starting at bfe00000 (gap: bfe00000:40200000)
    Jun 24 13:35:25 myhost kernel: Booting paravirtualized kernel on bare hardware
    Jun 24 13:35:25 myhost kernel: setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:2 nr_node_ids:1
    Jun 24 13:35:25 myhost kernel: PERCPU: Embedded 29 pages/cpu @ffff880001800000 s88104 r8192 d22488 u1048576
    Jun 24 13:35:25 myhost kernel: pcpu-alloc: s88104 r8192 d22488 u1048576 alloc=1*2097152
    Jun 24 13:35:25 myhost kernel: pcpu-alloc: [0] 0 1
    Jun 24 13:35:25 myhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1029325
    Jun 24 13:35:25 myhost kernel: Kernel command line: root=/dev/disk/by-uuid/85509a7d-94c3-49fe-a970-84ba9230c35e ro vga=773
    Jun 24 13:35:25 myhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jun 24 13:35:25 myhost kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jun 24 13:35:25 myhost kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jun 24 13:35:25 myhost kernel: xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    Jun 24 13:35:25 myhost kernel: Checking aperture...
    Jun 24 13:35:25 myhost kernel: No AGP bridge found
    Jun 24 13:35:25 myhost kernel: Subtract (70 early reservations)
    Jun 24 13:35:25 myhost kernel: #1 [0001000000 - 00016e1178] TEXT DATA BSS
    Jun 24 13:35:25 myhost kernel: #2 [0037e59000 - 0037ff0000] RAMDISK
    Jun 24 13:35:25 myhost kernel: #3 [00016e2000 - 00016e21d4] BRK
    Jun 24 13:35:25 myhost kernel: #4 [00000f79d0 - 0000100000] BIOS reserved
    Jun 24 13:35:25 myhost kernel: #5 [00000f79c0 - 00000f79d0] MP-table mpf
    Jun 24 13:35:25 myhost kernel: #6 [000009c400 - 000009c971] BIOS reserved
    Jun 24 13:35:25 myhost kernel: #7 [000009cb2d - 00000f79c0] BIOS reserved
    Jun 24 13:35:25 myhost kernel: #8 [000009c971 - 000009cb2d] MP-table mpc
    Jun 24 13:35:25 myhost kernel: #9 [0000010000 - 0000012000] TRAMPOLINE
    Jun 24 13:35:25 myhost kernel: #10 [0000012000 - 0000016000] ACPI WAKEUP
    Jun 24 13:35:25 myhost kernel: #11 [0000016000 - 0000018000] PGTABLE
    Jun 24 13:35:25 myhost kernel: #12 [0000018000 - 0000019000] PGTABLE
    Jun 24 13:35:25 myhost kernel: #13 [00016e2200 - 00016e3200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #14 [0000019000 - 0000019200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #15 [0001ee4000 - 0001ee5000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #16 [0001ee5000 - 0001ee6000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #17 [0002000000 - 0005800000] MEMMAP 0
    Jun 24 13:35:25 myhost kernel: #18 [00016e3200 - 00016fb200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #19 [00016fb200 - 0001713200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #20 [0001713200 - 000172b200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #21 [000172c000 - 000172d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #22 [00016e1180 - 00016e11c1] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #23 [00016e1200 - 00016e1243] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #24 [00016e1280 - 00016e16a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #25 [00016e16c0 - 00016e1728] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #26 [00016e1740 - 00016e17a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #27 [00016e17c0 - 00016e1828] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #28 [00016e1840 - 00016e18a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #29 [00016e18c0 - 00016e1928] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #30 [00016e1940 - 00016e19a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #31 [00016e19c0 - 00016e1a28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #32 [00016e1a40 - 00016e1aa8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #33 [00016e1ac0 - 00016e1b28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #34 [00016e1b40 - 00016e1ba8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #35 [00016e1bc0 - 00016e1c28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #36 [00016e1c40 - 00016e1ca8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #37 [00016e1cc0 - 00016e1d28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #38 [00016e1d40 - 00016e1da8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #39 [00016e1dc0 - 00016e1e28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #40 [00016e1e40 - 00016e1ea8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #41 [00016e1ec0 - 00016e1f28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #42 [00016e1f40 - 00016e1fa8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #43 [00016e1fc0 - 00016e1fe0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #44 [000172b200 - 000172b220] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #45 [000172b240 - 000172b260] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #46 [000172b280 - 000172b2a0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #47 [000172b2c0 - 000172b2e0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #48 [000172b300 - 000172b320] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #49 [000172b340 - 000172b360] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #50 [000172b380 - 000172b3a0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #51 [000172b3c0 - 000172b407] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #52 [000172b440 - 000172b487] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #53 [0001800000 - 000181d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #54 [0001900000 - 000191d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #55 [000172b4c0 - 000172b4c8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #56 [000172b500 - 000172b508] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #57 [000172b540 - 000172b548] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #58 [000172b580 - 000172b590] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #59 [000172b5c0 - 000172b700] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #60 [000172b700 - 000172b760] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #61 [000172b780 - 000172b7e0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #62 [000172d000 - 0001735000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #63 [000191d000 - 0001d1d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #64 [0005800000 - 0005a00000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #65 [000172b800 - 000172ba40] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #66 [0005a00000 - 0009a00000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #67 [0001735000 - 0001755000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #68 [0001755000 - 0001795000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #69 [000001aa00 - 0000022a00] BOOTMEM
    Jun 24 13:35:25 myhost kernel: Memory: 4050248k/5242880k available (3483k kernel code, 1053900k absent, 138732k reserved, 1796k data, 480k init)
    Jun 24 13:35:25 myhost kernel: SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Jun 24 13:35:25 myhost kernel: Hierarchical RCU implementation.
    Jun 24 13:35:25 myhost kernel: NR_IRQS:768
    Jun 24 13:35:25 myhost kernel: Extended CMOS year: 2000
    Jun 24 13:35:25 myhost kernel: Console: colour dummy device 80x25
    Jun 24 13:35:25 myhost kernel: console [tty0] enabled
    Jun 24 13:35:25 myhost kernel: allocated 41943040 bytes of page_cgroup
    Jun 24 13:35:25 myhost kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jun 24 13:35:25 myhost kernel: Fast TSC calibration using PIT
    Jun 24 13:35:25 myhost kernel: Detected 2526.938 MHz processor.
    Jun 24 13:35:25 myhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5055.45 BogoMIPS (lpj=8423126)
    Jun 24 13:35:25 myhost kernel: Security Framework initialized
    Jun 24 13:35:25 myhost kernel: Mount-cache hash table entries: 256
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys ns
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys cpuacct
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys memory
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys devices
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys freezer
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys net_cls
    Jun 24 13:35:25 myhost kernel: CPU: Physical Processor ID: 0
    Jun 24 13:35:25 myhost kernel: CPU: Processor Core ID: 0
    Jun 24 13:35:25 myhost kernel: mce: CPU supports 6 MCE banks
    Jun 24 13:35:25 myhost kernel: CPU0: Thermal monitoring enabled (TM2)
    Jun 24 13:35:25 myhost kernel: using mwait in idle threads.
    Jun 24 13:35:25 myhost kernel: Performance Events: Core2 events, Intel PMU driver.
    Jun 24 13:35:25 myhost kernel: ... version: 2
    Jun 24 13:35:25 myhost kernel: ... bit width: 40
    Jun 24 13:35:25 myhost kernel: ... generic registers: 2
    Jun 24 13:35:25 myhost kernel: ... value mask: 000000ffffffffff
    Jun 24 13:35:25 myhost kernel: ... max period: 000000007fffffff
    Jun 24 13:35:25 myhost kernel: ... fixed-purpose events: 3
    Jun 24 13:35:25 myhost kernel: ... event mask: 0000000700000003
    Jun 24 13:35:25 myhost kernel: ACPI: Core revision 20100121
    Jun 24 13:35:25 myhost kernel: Setting APIC routing to flat
    Jun 24 13:35:25 myhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jun 24 13:35:25 myhost kernel: CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
    Jun 24 13:35:25 myhost kernel: Booting Node 0, Processors #1 Ok.
    Jun 24 13:35:25 myhost kernel: Brought up 2 CPUs
    Jun 24 13:35:25 myhost kernel: Total of 2 processors activated (10111.01 BogoMIPS).
    Jun 24 13:35:25 myhost kernel: devtmpfs: initialized
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 16
    Jun 24 13:35:25 myhost kernel: ACPI: bus type pci registered
    Jun 24 13:35:25 myhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jun 24 13:35:25 myhost kernel: PCI: not using MMCONFIG
    Jun 24 13:35:25 myhost kernel: PCI: Using configuration type 1 for base access
    Jun 24 13:35:25 myhost kernel: bio: create slab <bio-0> at 0
    Jun 24 13:35:25 myhost kernel: ACPI: BIOS _OSI(Linux) query ignored
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd1ac20 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd18620 00575 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd19ca0 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd19f20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: Interpreter enabled
    Jun 24 13:35:25 myhost kernel: ACPI: (supports S0 S3 S4 S5)
    Jun 24 13:35:25 myhost kernel: ACPI: Using IOAPIC for interrupt routing
    Jun 24 13:35:25 myhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jun 24 13:35:25 myhost kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Jun 24 13:35:25 myhost kernel: ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    Jun 24 13:35:25 myhost kernel: ACPI: No dock devices found.
    Jun 24 13:35:25 myhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    Jun 24 13:35:25 myhost kernel: DMAR: Forcing write-buffer flush capability
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 04-05]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: PCI bridge to [bus 06-07]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 08-08]
    Jun 24 13:35:25 myhost kernel: pci 0000:09:01.0: proprietary Ricoh MMC controller disabled (via firewire function)
    Jun 24 13:35:25 myhost kernel: pci 0000:09:01.0: MMC cards are now supported by standard SDHCI controller
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: PCI bridge to [bus 09-09] (subtractive decode)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *7 11 12 14 15)
    Jun 24 13:35:25 myhost kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jun 24 13:35:25 myhost kernel: vgaarb: loaded
    Jun 24 13:35:25 myhost kernel: PCI: Using ACPI for IRQ routing
    Jun 24 13:35:25 myhost kernel: NetLabel: Initializing
    Jun 24 13:35:25 myhost kernel: NetLabel: domain hash size = 128
    Jun 24 13:35:25 myhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jun 24 13:35:25 myhost kernel: NetLabel: unlabeled traffic allowed by default
    Jun 24 13:35:25 myhost kernel: HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    Jun 24 13:35:25 myhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Jun 24 13:35:25 myhost kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    Jun 24 13:35:25 myhost kernel: Switching to clocksource tsc
    Jun 24 13:35:25 myhost kernel: pnp: PnP ACPI init
    Jun 24 13:35:25 myhost kernel: ACPI: bus type pnp registered
    Jun 24 13:35:25 myhost kernel: pnp: PnP ACPI: found 10 devices
    Jun 24 13:35:25 myhost kernel: ACPI: ACPI bus type pnp unregistered
    Jun 24 13:35:25 myhost kernel: system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0400-0x047f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0680-0x069f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0480-0x048f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0xffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0xffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x1000-0x107f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x1180-0x11ff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x164e-0x164f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0xfe00] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0900-0x097f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfeb00000-0xfeb03fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: BAR 15: assigned [mem 0xc0000000-0xc01fffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: BAR 13: assigned [io 0x6000-0x6fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0200000-0xc02000ff 64bit]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1f.3: BAR 0: set to [mem 0xc0200000-0xc02000ff 64bit] (PCI address [0xc0200000-0xc02000ff]
    Jun 24 13:35:25 myhost kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xcfe00000-0xcfe1ffff pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: bridge window [mem 0xcfe00000-0xcfefffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 04-05]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: PCI bridge to [bus 06-07]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: bridge window [mem 0xfa000000-0xfbffffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 08-08]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: bridge window [io 0x6000-0x6fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: bridge window [mem 0xfc000000-0xfc0fffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: bridge window [mem 0xc0000000-0xc01fffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: PCI bridge to [bus 09-09]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: bridge window [io disabled]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: bridge window [mem 0xfc100000-0xfc1fffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: bridge window [mem pref disabled]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 2
    Jun 24 13:35:25 myhost kernel: IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Jun 24 13:35:25 myhost kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    Jun 24 13:35:25 myhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jun 24 13:35:25 myhost kernel: TCP: Hash tables configured (established 262144 bind 65536)
    Jun 24 13:35:25 myhost kernel: TCP reno registered
    Jun 24 13:35:25 myhost kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jun 24 13:35:25 myhost kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 1
    Jun 24 13:35:25 myhost kernel: Unpacking initramfs...
    Jun 24 13:35:25 myhost kernel: Freeing initrd memory: 1628k freed
    Jun 24 13:35:25 myhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jun 24 13:35:25 myhost kernel: Placing 64MB software IO TLB between ffff880005a00000 - ffff880009a00000
    Jun 24 13:35:25 myhost kernel: software IO TLB at phys 0x5a00000 - 0x9a00000
    Jun 24 13:35:25 myhost kernel: Simple Boot Flag at 0x36 set to 0x1
    Jun 24 13:35:25 myhost kernel: Scanning for low memory corruption every 60 seconds
    Jun 24 13:35:25 myhost kernel: audit: initializing netlink socket (disabled)
    Jun 24 13:35:25 myhost kernel: type=2000 audit(1277408113.306:1): initialized
    Jun 24 13:35:25 myhost kernel: VFS: Disk quotas dquot_6.5.2
    Jun 24 13:35:25 myhost kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jun 24 13:35:25 myhost kernel: msgmni has been set to 7913
    Jun 24 13:35:25 myhost kernel: alg: No test for stdrng (krng)
    Jun 24 13:35:25 myhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Jun 24 13:35:25 myhost kernel: io scheduler noop registered
    Jun 24 13:35:25 myhost kernel: io scheduler deadline registered
    Jun 24 13:35:25 myhost kernel: io scheduler cfq registered (default)
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:01.0: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:01.0: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:01.0:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.0: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.0: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.0:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.1: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.1: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.1:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.3: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.3: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.3:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.5: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.5: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.5:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90010100000, using 1536k, total 16384k
    Jun 24 13:35:25 myhost kernel: vesafb: mode is 1024x768x8, linelength=1024, pages=18
    Jun 24 13:35:25 myhost kernel: vesafb: scrolling: redraw
    Jun 24 13:35:25 myhost kernel: vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    Jun 24 13:35:25 myhost kernel: Console: switching to colour frame buffer device 128x48
    Jun 24 13:35:25 myhost kernel: fb0: VESA VGA frame buffer device
    Jun 24 13:35:25 myhost kernel: Linux agpgart interface v0.103
    Jun 24 13:35:25 myhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jun 24 13:35:25 myhost kernel: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jun 24 13:35:25 myhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jun 24 13:35:25 myhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jun 24 13:35:25 myhost kernel: mice: PS/2 mouse device common for all mice
    Jun 24 13:35:25 myhost kernel: cpuidle: using governor ladder
    Jun 24 13:35:25 myhost kernel: cpuidle: using governor menu
    Jun 24 13:35:25 myhost kernel: TCP cubic registered
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 17
    Jun 24 13:35:25 myhost kernel: registered taskstats version 1
    Jun 24 13:35:25 myhost kernel: Initalizing network drop monitor service
    Jun 24 13:35:25 myhost kernel: Freeing unused kernel memory: 480k freed
    Jun 24 13:35:25 myhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jun 24 13:35:25 myhost kernel: udev: starting version 157
    Jun 24 13:35:25 myhost kernel: SCSI subsystem initialized
    Jun 24 13:35:25 myhost kernel: ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
    Jun 24 13:35:25 myhost kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pmp pio slum part ccc sxs
    Jun 24 13:35:25 myhost kernel: scsi0 : ahci
    Jun 24 13:35:25 myhost kernel: scsi1 : ahci
    Jun 24 13:35:25 myhost kernel: scsi2 : ahci
    Jun 24 13:35:25 myhost kernel: scsi3 : ahci
    Jun 24 13:35:25 myhost kernel: scsi4 : ahci
    Jun 24 13:35:25 myhost kernel: scsi5 : ahci
    Jun 24 13:35:25 myhost kernel: ata1: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404100 irq 29
    Jun 24 13:35:25 myhost kernel: ata2: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404180 irq 29
    Jun 24 13:35:25 myhost kernel: ata3: DUMMY
    Jun 24 13:35:25 myhost kernel: ata4: DUMMY
    Jun 24 13:35:25 myhost kernel: ata5: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404300 irq 29
    Jun 24 13:35:25 myhost kernel: ata6: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404380 irq 29
    Jun 24 13:35:25 myhost kernel: ata6: SATA link down (SStatus 0 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata2.00: ATAPI: HL-DT-ST DVDRW/BDROM CA10N, A107, max UDMA/133
    Jun 24 13:35:25 myhost kernel: ata2.00: configured for UDMA/133
    Jun 24 13:35:25 myhost kernel: ata1.00: ATA-8: ST9320421ASG, DE17, max UDMA/133
    Jun 24 13:35:25 myhost kernel: ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Jun 24 13:35:25 myhost kernel: ata1.00: configured for UDMA/133
    Jun 24 13:35:25 myhost kernel: scsi 0:0:0:0: Direct-Access ATA ST9320421ASG DE17 PQ: 0 ANSI: 5
    Jun 24 13:35:25 myhost kernel: scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRWBD CA10N A107 PQ: 0 ANSI: 5
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jun 24 13:35:25 myhost kernel: sda: sda1 sda2 sda3 <sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
    Jun 24 13:35:25 myhost kernel: Uniform CD-ROM driver Revision: 3.20
    Jun 24 13:35:25 myhost kernel: sda5 sda6 sda7 sda8 > sda4
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda8): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: rtc_cmos 00:06: RTC can wake from S4
    Jun 24 13:35:25 myhost kernel: rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    Jun 24 13:35:25 myhost kernel: rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Jun 24 13:35:25 myhost kernel: udev: starting version 157
    Jun 24 13:35:25 myhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    Jun 24 13:35:25 myhost kernel: ACPI: Power Button [PWRB]
    Jun 24 13:35:25 myhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
    Jun 24 13:35:25 myhost kernel: ACPI: Sleep Button [SLPB]
    Jun 24 13:35:25 myhost kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    Jun 24 13:35:25 myhost kernel: ACPI: Lid Switch [LID0]
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
    Jun 24 13:35:25 myhost kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
    Jun 24 13:35:25 myhost kernel: Marking TSC unstable due to TSC halts in idle
    Jun 24 13:35:25 myhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jun 24 13:35:25 myhost kernel: ACPI: Power Button [PWRF]
    Jun 24 13:35:25 myhost kernel: thermal LNXTHERM:01: registered as thermal_zone0
    Jun 24 13:35:25 myhost kernel: ACPI: Thermal Zone [TZ00] (63 C)
    Jun 24 13:35:25 myhost kernel: thermal LNXTHERM:02: registered as thermal_zone1
    Jun 24 13:35:25 myhost kernel: ACPI: Thermal Zone [TZ01] (52 C)
    Jun 24 13:35:25 myhost kernel: thermal LNXTHERM:03: registered as thermal_zone2
    Jun 24 13:35:25 myhost kernel: ACPI: Thermal Zone [TZ02] (62 C)
    Jun 24 13:35:25 myhost kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    Jun 24 13:35:25 myhost kernel: Switching to clocksource hpet
    Jun 24 13:35:25 myhost kernel: ACPI: AC Adapter [ADP1] (on-line)
    Jun 24 13:35:25 myhost kernel: ACPI: WMI: Mapper loaded
    Jun 24 13:35:25 myhost kernel: ACPI: Battery Slot [BAT0] (battery present)
    Jun 24 13:35:25 myhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
    Jun 24 13:35:25 myhost kernel: iTCO_vendor_support: vendor-support=0
    Jun 24 13:35:25 myhost kernel: usbcore: registered new interface driver usbfs
    Jun 24 13:35:25 myhost kernel: usbcore: registered new interface driver hub
    Jun 24 13:35:25 myhost kernel: usbcore: registered new device driver usb
    Jun 24 13:35:25 myhost kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input6
    Jun 24 13:35:25 myhost kernel: ACPI: Video Device [M86] (multi-head: yes rom: no post: no)
    Jun 24 13:35:25 myhost kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
    Jun 24 13:35:25 myhost kernel: iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    Jun 24 13:35:25 myhost kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Jun 24 13:35:25 myhost kernel: input: Dell WMI hotkeys as /devices/virtual/input/input7
    Jun 24 13:35:25 myhost kernel: i801_smbus 0000:00:1f.3: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: ACPI: resource 0000:00:1f.3 [io 0x1c00-0x1c1f] conflicts with ACPI region SMBI [mem 0x00001c00-0x00001c0f pref disabled]
    Jun 24 13:35:25 myhost kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jun 24 13:35:25 myhost kernel: tg3.c:v3.108 (February 17, 2010)
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: EHCI Host Controller
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: debug port 1
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: irq 19, io mem 0xfc404800
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Jun 24 13:35:25 myhost kernel: hub 1-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 1-0:1.0: 6 ports detected
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc404c00
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Jun 24 13:35:25 myhost kernel: hub 2-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 2-0:1.0: 6 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001800
    Jun 24 13:35:25 myhost kernel: hub 3-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 3-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001820
    Jun 24 13:35:25 myhost kernel: hub 4-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 4-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001840
    Jun 24 13:35:25 myhost kernel: hub 5-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 5-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
    Jun 24 13:35:25 myhost kernel: hub 6-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 6-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
    Jun 24 13:35:25 myhost kernel: hub 7-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 7-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
    Jun 24 13:35:25 myhost kernel: hub 8-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 8-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: [drm] Initialized drm 1.1.0 20060810
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: Tigon3 [partno(none) rev 5784100] (PCI Express) MAC address 00:22:19:f6:92:73
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1])
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    Jun 24 13:35:25 myhost kernel: firewire_ohci 0000:09:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: firewire_ohci: Added fw-ohci device 0000:09:01.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x0
    Jun 24 13:35:25 myhost kernel: sdhci: Secure Digital Host Controller Interface driver
    Jun 24 13:35:25 myhost kernel: sdhci: Copyright(c) Pierre Ossman
    Jun 24 13:35:25 myhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Jun 24 13:35:25 myhost kernel: usb 1-6: new high speed USB device using ehci_hcd and address 2
    Jun 24 13:35:25 myhost kernel: sdhci-pci 0000:09:01.1: SDHCI controller found [1180:0822] (rev 22)
    Jun 24 13:35:25 myhost kernel: sdhci-pci 0000:09:01.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
    Jun 24 13:35:25 myhost kernel: mmc0: SDHCI controller on PCI [0000:09:01.1] using DMA
    Jun 24 13:35:25 myhost kernel: Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000
    Jun 24 13:35:25 myhost kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
    Jun 24 13:35:25 myhost kernel: [drm] radeon defaulting to kernel modesetting.
    Jun 24 13:35:25 myhost kernel: [drm] radeon kernel modesetting enabled.
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: [drm] initializing kernel modesetting (RV635 0x1002:0x9593).
    Jun 24 13:35:25 myhost kernel: HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Jun 24 13:35:25 myhost kernel: [drm] register mmio base: 0xCFEF0000
    Jun 24 13:35:25 myhost kernel: [drm] register mmio size: 65536
    Jun 24 13:35:25 myhost kernel: ATOM BIOS: BR32049
    Jun 24 13:35:25 myhost kernel: [drm] Clocks initialized !
    Jun 24 13:35:25 myhost kernel: [drm] 6 Power State(s)
    Jun 24 13:35:25 myhost kernel: [drm] State 0 Default (default)
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 3 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 400000/800000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 400000/800000
    Jun 24 13:35:25 myhost kernel: [drm] 2 engine/memory: 400000/800000
    Jun 24 13:35:25 myhost kernel: [drm] State 1 Performance
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 2 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 110000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 300000/405000
    Jun 24 13:35:25 myhost kernel: [drm] State 2 Battery
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 3 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 110000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 300000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 2 engine/memory: 300000/405000
    Jun 24 13:35:25 myhost kernel: [drm] State 3 Default
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 2 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] State 4 Performance
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 2 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 340000/800000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 340000/800000
    Jun 24 13:35:25 myhost kernel: [drm] State 5 Battery
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 3 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 2 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] radeon: power management initialized
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: VRAM: 256M 0x00000000 - 0x0FFFFFFF (256M used)
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: GTT: 512M 0x10000000 - 0x2FFFFFFF
    Jun 24 13:35:25 myhost kernel: [drm] Detected VRAM RAM=256M, BAR=256M
    Jun 24 13:35:25 myhost kernel: [drm] RAM width 128bits DDR
    Jun 24 13:35:25 myhost kernel: [TTM] Zone kernel: Available graphics memory: 2026178 kiB.
    Jun 24 13:35:25 myhost kernel: [drm] radeon: 256M of VRAM memory ready
    Jun 24 13:35:25 myhost kernel: [drm] radeon: 512M of GTT memory ready.
    Jun 24 13:35:25 myhost kernel: [drm] radeon: using MSI.
    Jun 24 13:35:25 myhost kernel: [drm] radeon: irq initialized.
    Jun 24 13:35:25 myhost kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
    Jun 24 13:35:25 myhost kernel: [drm] Loading RV635 Microcode
    Jun 24 13:35:25 myhost kernel: platform radeon_cp.0: firmware: requesting radeon/RV635_pfp.bin
    Jun 24 13:35:25 myhost kernel: firewire_core: created device fw0: GUID 0000000000000000, S400
    Jun 24 13:35:25 myhost kernel: platform radeon_cp.0: firmware: requesting radeon/RV635_me.bin
    Jun 24 13:35:25 myhost kernel: platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: ffff880139550800 unpin not necessary
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: ffff880139550800 unpin not necessary
    Jun 24 13:35:25 myhost kernel: [drm] Enabling audio support
    Jun 24 13:35:25 myhost kernel: [drm] Default TV standard: NTSC
    Jun 24 13:35:25 myhost kernel: [drm] Radeon Display Connectors
    Jun 24 13:35:25 myhost kernel: [drm] Connector 0:
    Jun 24 13:35:25 myhost kernel: [drm] VGA
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] CRT1: INTERNAL_KLDSCP_DAC1
    Jun 24 13:35:25 myhost kernel: [drm] Connector 1:
    Jun 24 13:35:25 myhost kernel: [drm] HDMI-A
    Jun 24 13:35:25 myhost kernel: [drm] HPD1
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] DFP1: INTERNAL_UNIPHY
    Jun 24 13:35:25 myhost kernel: [drm] Connector 2:
    Jun 24 13:35:25 myhost kernel: [drm] LVDS
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] LCD1: INTERNAL_KLDSCP_LVTMA
    Jun 24 13:35:25 myhost kernel: [drm] Connector 3:
    Jun 24 13:35:25 myhost kernel: [drm] DisplayPort
    Jun 24 13:35:25 myhost kernel: [drm] HPD2
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] DFP2: INTERNAL_UNIPHY
    Jun 24 13:35:25 myhost kernel: iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    Jun 24 13:35:25 myhost kernel: iwlagn: Copyright(c) 2003-2010 Intel Corporation
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: Detected Intel Wireless WiFi Link 5100AGN REV=0x54
    Jun 24 13:35:25 myhost kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
    Jun 24 13:35:25 myhost kernel: input: HDA Intel Mic at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    Jun 24 13:35:25 myhost kernel: input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    Jun 24 13:35:25 myhost kernel: input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: firmware: requesting iwlwifi-5000-2.ucode
    Jun 24 13:35:25 myhost kernel: [drm] fb mappable at 0xD0040000
    Jun 24 13:35:25 myhost kernel: [drm] vram apper at 0xD0000000
    Jun 24 13:35:25 myhost kernel: [drm] size 8294400
    Jun 24 13:35:25 myhost kernel: [drm] fb depth is 24
    Jun 24 13:35:25 myhost kernel: [drm] pitch is 7680
    Jun 24 13:35:25 myhost kernel: Console: switching to colour dummy device 80x25
    Jun 24 13:35:25 myhost kernel: Console: switching to colour frame buffer device 240x67
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: loaded firmware version 8.24.2.12
    Jun 24 13:35:25 myhost kernel: Linux video capture interface: v2.00
    Jun 24 13:35:25 myhost kernel: uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_2M (0c45:63fa)
    Jun 24 13:35:25 myhost kernel: fb0: radeondrmfb frame buffer device
    Jun 24 13:35:25 myhost kernel: registered panic notifier
    Jun 24 13:35:25 myhost kernel: [drm] Initialized radeon 2.3.0 20080528 for 0000:01:00.0 on minor 0
    Jun 24 13:35:25 myhost kernel: HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: input: Laptop_Integrated_Webcam_2M as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input13
    Jun 24 13:35:25 myhost kernel: usbcore: registered new interface driver uvcvideo
    Jun 24 13:35:25 myhost kernel: USB Video Class driver (v0.1.0)
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda4): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: Adding 8000332k swap on /dev/sda7. Priority:-1 extents:1 across:8000332k
    Jun 24 13:35:24 myhost init: Entering runlevel: 3
    Jun 24 13:35:44 myhost kernel: Intel AES-NI instructions are not detected.
    Jun 24 13:35:44 myhost kernel: padlock: VIA PadLock not detected.
    Jun 24 13:35:47 myhost dhcpcd[1825]: version 5.2.5 starting
    Jun 24 13:35:47 myhost dhcpcd[1825]: wlan0: rebinding lease of 192.168.1.70
    Jun 24 13:35:47 myhost dhcpcd[1825]: wlan0: acknowledged 192.168.1.70 from 192.168.1.254
    Jun 24 13:35:47 myhost dhcpcd[1825]: wlan0: checking for 192.168.1.70
    Jun 24 13:35:52 myhost dhcpcd[1825]: wlan0: leased 192.168.1.70 for 86400 seconds
    Jun 24 13:35:52 myhost dhcpcd[1825]: forked to background, child pid 1847

Maybe you are looking for

  • Wildcard in flat file

    Hi All, I need to load a group of flat files into BW and am hoping I can use one infopackage to do it.  I want to use the Routine functionality on the "External Data" tab in the infopackage. I want all files that begin with the word 'pricebook'.  The

  • Can I use permissions to do this?

    Is it possible to set permissions in such a was so as to tell an XML playlist file to be read only by the flash player it's intended for? I'm currently using a flash mp3 player that uses an XML-based playlist, and I'd like to protect said list (and t

  • Music App:  Tilting Device Turns Screen into Black Tiles

    Hello, I have a 5th generation iPod Touch, and I updated it to iOS 7.  I am having a minor but annoying problem with the music app. The display for the music app looks like this: Once in a while, when the device tilts, the screen turns into a series

  • ADS LogonWithAlias - cannot logon with alias user id

    Hi, We have Erec and use ADS.  Now when the candidate enters their detials - such as logon id - into EREC, the SAP ERP backend generates a random user id and their logon id in put into the alias field in the SAP record (SU01) btw we use ABAP for the

  • Issue moving from lightroom to edit in PSE 9

    Hi I am getting use to using lightroom 5 and have been using PSE 9.  i have tried to using the" edit in" option move my photo to PSE from light room only to find i can't edit the photo at all in PSE 9 I have a circle with a line through it for my poi