[SOLVED] GPU RC6 states.

What is the difference between RC6, RC6p and RC6pp?
On my laptop they all appear to be the same, I mean there is no noticeable difference between them in power consumed by video in idle state on my system.
Last edited by eruditorum (2013-02-16 16:39:40)

I don't know much about RC6 but, from what I have read, a lot of distros have RC6 enabled but RC6p and RC6pp disabled due to instability issues. Seems a likely explanation as to why you don't notice a difference. Also, I found out this information in 30 seconds on google. Google is your friend
Greets!

Similar Messages

  • [SOLVED] Error : sys\stat.h: No such file or directory

    I get "...sys\stat.h: No such file or directory" error when compiling a simple C program. i have been searching for a while on web and see people writing "# pacman -S base-devel" i have that already and some more packages like glib ...
    These are the includes i am using :
    #include <stdio.h>
    #include <stdlib.h>
    #include <io.h>
    #include <fcntl.h>
    #include <sys\stat.h>
    // here is when i use the libraries sys/stats.h
    struct stat stbuf;
    stat(argv[2], &stbuf);
    int infSize = stbuf.size;
    This is the output of the command "gcc -o copy copy.c" :
    copy.c:3:16: error: io.h: No such file or directory
    copy.c:5:22: error: sys\stat.h: No such file or directory
    copy.c: In function 'main':
    copy.c:35: error: storage size of 'stbuf' isn't known
    Either i am missing any package needed or the gcc compiler is missing any lib directory. But i dont know which one is it.
    Any ideas are apreciated. Thanks you
    EDIT : The error was actually on #Include <io.h> , but i dunno why it conflicted with #include <sys\stat.h>.
    Anyway Problem Solved.
    Last edited by puzzled (2008-10-05 17:07:03)

    If you're not sure if you have the SDKs, can you confirm you have the files under /Developer? Check for /Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include/X11
    I don't remember having to do anything special to get gcc to find these files.
    From what I've noted, the usual trigger seems to be that the X11SDK.pkg package wasn't installed.
    Typical PATH export is:
    export PATH="/bin:/sbin:/usr/bin:/usr/sbin"
    If you're working with Fink, there's a call to the following needed:
    . /sw/bin/init.sh
    See http://finkproject.org/doc/users-guide/install.php
    But I'd first make sure the X11 SDK was installed. I'd guess that is missing.

  • Help me to solve this. select statement!

    hello alll
    is there any functional module which gives me the BELNR(of bseg) by passing the vbeln.
    yeah ...we can do tht by passing bseg table ,,,,but its taking loads of time to give me the output as its not a primary key or secondary key.....
    when i m using this condition in the prog i cannot use inner join as its a cluster table . if i m writing a condition it is effecting my prog performance
    this statement is really taking long time to process.
    in bseg table as vbeln is not primary key or seconday key, i guess thz the reason it is taking so much time ,,,
    can anyone help me to sort this out... ??
    any fun mod to get the data of bseg cluster table by giving vbeln?/
    or any other conditions to reduce the processing time?
    clear t_vbrkvbrp.
    sort t_vbrkvbrp by vbeln.
    loop at t_vbrkvbrp.
    at new vbeln.
    select bukrs belnr vbeln
    from bseg
    into corresponding fields of table t_temp
    where bukrs = t_vbrkvbrp-bukrs
    and vbeln = t_vbrkvbrp-vbeln.
    endat.
    endloop.
    SELECT bukrs belnr buzid koart shkzg dmbtr vbeln hkont kunnr werks
    FROM bseg
    INTO TABLE t_bseg
    for all entries in t_temp
    WHERE hkont IN s_hkont
    AND bukrs = t_temp-bukrs
    AND belnr = t_temp-belnr
    AND buzid = ' '
    AND koart = 'S'
    AND shkzg = 'H'.
    i need to get the g/l account number and belnr from bseg for the above condition type so i have to use bseg table
    as there is no apporpriate index it is scanning the full table ,,,, so can anyone tell me how to create a index or like wise to get the data faster??

    Don't use BSEG, use BKPF and fields AWTYP, AWREF which link a financial document to the application and document that generated it. (The "original document" under transaction like FB03)
    <i>Example: "RMRP" + invoice number for purchase invoice</i>
    In  some case you need an intermediate table
    <i>Example: from EKPO, EKBE, you get the MKPF records and from them the BKPF/BSEG</i>
    For a list of "referenced procedures" Look at TTYP (text table is TTYPT), you will get the code, structure used to build the key (if more than one field) and a function module used to display the origin
    <i>Example :  MKPF "Material document" structure MKPF_AWKEY function module MB_DOCUMENT_SENDER_MKPF</i>
    You can also look at your accounting documents found with the "slow" BSEG version of your program and establish a list of AWTYP used in you company/customer.
    An other way, used in some companies, is to append a structure with EBELN field to BSIS and BSAS table, these table are filled via a MOVE-CORRESPONDING statement, so the nesw records will be filled (You may write a program to update past records) then create an index on EBELN on these fields.
    Regards
    PS: BSEG is a cluster table, so the only real criteria are the primary keys, if you select via EBELN, the program read the whole table, may be correct in Development, but not in Production and there it will be more and more resources consuming. So NEVER select from BSEG vithout the primary keys, use the secondary tables : BSIS/BSAS, BSIM, etc.

  • [Solved] JSON if statement

    So I'm trying to configure i3 with conky and want to know if my volume is on or not. The JSON I'm using is
    {"full_text": ${if_match ${exec amixer get Master | grep "%" | cut -d' ' -f8}=[off]}"OFF" ,"color":"\#dc322f"},
    {"full_text": "${else}"},
    {"full_text": ${if_match ${exec amixer get Master | grep "%" | cut -d' ' -f8}=[on]}"ON" ,"color":"\#dc322f"},
    {"full_text": "${endif}${endif}"},
    But no matter what the value is the first satement (OFF) is only showed. What am I doing wrong with the if satement?
    SOLUTION:
    saf1 wrote:
    from man conky:
    if_match expression
    stringArgument is enclosed in quotation marks (")
    Valid operands are: '>', '<', '>=', '<=', '==', '!='.
    so the ${if_match} statement in your code should look like this:
    ${if_match "${exec amixer get Master | sed -n '/%/s/^.*\[\(.*\)\]$/\1/gp'}" == "off"}
    ${else}
    ${if_match "${exec amixer get Master | sed -n '/%/s/^.*\[\(.*\)\]$/\1/gp'}" == "on"}
    ${endif}
    ${endif}
    HTH.
    Last edited by Mapl3 (2015-01-27 00:20:43)

    saf1 wrote:
    from man conky:
    if_match expression
    stringArgument is enclosed in quotation marks (")
    Valid operands are: '>', '<', '>=', '<=', '==', '!='.
    so the ${if_match} statement in your code should look like this:
    ${if_match "${exec amixer get Master | sed -n '/%/s/^.*\[\(.*\)\]$/\1/gp'}" == "off"}
    ${else}
    ${if_match "${exec amixer get Master | sed -n '/%/s/^.*\[\(.*\)\]$/\1/gp'}" == "on"}
    ${endif}
    ${endif}
    HTH.
    Worked like a charm. Though I did try with '=='.

  • [SOLVED] Load ALSA state on startup but do not save on shutdown

    I found that my options here are either to leave /etc/alsa with no state-daemon.conf to use alsa-store.service and alsa-restore.service or to touch that file to cause alsa-state.service to take over. What if I want to load the same volume state every time the computer starts (in my case, load in with the speakers muted)? Would it be safe to remove alsa-store.service from /usr/lib/systemd/system and keep it under my root's home directory, or should I just write a service to mute on boot, instead?
    Last edited by Thisguy_ (2014-09-04 17:50:17)

    I tried running alsactl store at boot, but alsa-store.service does that on shutdown as well - therein lies the problem. I suppose a better way to do this would be to switch to using alsa-state.service and then add alsactl restore to my .xinitrc. I'll give that a try now.
    EDIT: Didn't work. Running alsactl restore manually complains of a state lock on a file and does not mute the speakers.
    Let me be more specific about these services - they're statically loaded. They execute themselves as the result of a file exist test on /etc/alsa/state-daemon.conf, and either alsa-state or alsa-store and alsa-restore take over - alsa-state if it exists and alsa-(re)store if it doesn't.
    EDIT: That's what I get for not reading. Switched back to store and restore and changing alsactl restore to alsactl restore -f ~/.alsa.state after having generated that file. Here goes nothing.
    EDIT: Like a charm. Thanks!
    Last edited by Thisguy_ (2014-09-04 17:50:03)

  • [Not solved]systemd-tmpfiles stat(/run/user/myuser/gvfs) failed: Perm

    I get this error message since a couple of days and systemd-tmpfiles service is slow to start compared to before. I have no arch-units/initscripts anymore. I update everyday but I can see no updates that sticks out in pacman-log, on the day before this failure appeared. (systemd-tools was updated 3 days before this error)
    Permissions;
    /run/user
    drwxr-xr-x 3 root root 60 7 jun 10.51 .
    drwxr-xr-x 11 root root 340 7 jun 10.51 ..
    drwx------ 3 myuser myuser 80 7 jun 10.51 myuser
    /run/user/myuser
    drwx------ 3 myuser myuser 80 7 jun 10.51 .
    drwxr-xr-x 3 root root 60 7 jun 10.51 ..
    dr-x------ 2 myuser myuser 0 7 jun 10.51 gvfs
    lrwxrwxrwx 1 root root 17 7 jun 10.51 X11-display -> /tmp/.X11-unix/X0
    /run/user/myuser/gvfs
    dr-x------ 2 myuser myuser 0 7 jun 10.51 .
    drwx------ 3 myuser myuser 80 7 jun 10.51 ..
    EDIT: Now I've look at the files;
    /usr/lib/tmpfiles.d
    totalt 160K
    drwxr-xr-x 2 root root 4,0K 2 jun 15.54 .
    drwxr-xr-x 167 root root 128K 7 jun 07.34 ..
    -rw-r--r-- 1 root root 30 1 jun 02.28 console.conf
    -rw-r--r-- 1 root root 29 27 maj 06.29 consolekit.conf
    -rw-r--r-- 1 root root 719 1 jun 02.28 legacy.conf
    -rw-r--r-- 1 root root 729 1 jun 02.28 systemd.conf
    -rw-r--r-- 1 root root 449 1 jun 02.28 tmp.conf
    -rw-r--r-- 1 root root 622 1 jun 02.28 x11.conf
    And the only thing possibly close is; d /run/user 0755 root root 10d
    from systemd.conf.
    Last edited by swanson (2012-06-08 07:20:28)

    Nope, error still there and no clue what's happening. It occurs without me trying to mount anything, no usb's, no phones and no disks.

  • [Partly solved] Nouveau driver crashes, nvidia-libgl-beta problem etc.

    I had the same issue as in thread 1446984 but disabling USB 3.0 in BIOS did not solve the problem.
    I have a new install, and are getting complete freezes on shutdown, but also on switching to another tty than the graphical (freeze after 1-20 seconds after switching tty). This is reproducible 100% of the time.
    I were also getting errors about nouveau, and thought the tty switching freezes might be related to that.
    This was correct, since installing the nvidia-beta driver solved that problem (but not the shutdown issues).
    As a side note, I also had some minor problems installing nvidia-libgl-beta which is a dependency for nvidia-beta.
    Trying to install it with aura gave the following error:
    $ sudo aura -A nvidia-libgl-beta
    [sudo] password for rix:
    aura >>= The following are not AUR packages:
    nvidia-libgl-beta
    aura >>= No valid packages specified.
    Installing it manually from the tarball in AUR seemed to work, but when I tried to install nvidia-beta it complained about nvidia-libgl-beta missing, and it's not in the output of pacman -Q !
    Trying to reinstall it works as well, and pacman says it is reinstalling with net upgrade size 0.
    I removed nvidia-libgl-beta as a dependency from the nvidia-beta PKGBUILD and installed it, it seems to work at least, no more tty switch crashes.
    Also, after installing there is no nvidia*.pkg.tar.xz files in /var/cache/pacman/pkg/. Maybe these are put somewhere else?
    dmesg (includes nouveau errors but it's the "ACPI Warning: SystemIO range 0x000000000000f040-0x000000000000f05f conflicts with OpRegion ..." line I believe is the interesting one):
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.16.1-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 (GCC) ) #1 SMP PREEMPT Thu Aug 14 07:40:19 CEST 2014
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=1a4daa5b-c2e9-44c0-9155-95a9d2c25878 rw cryptdevice=UUID=67ed3f10-6bc9-4413-b567-f9f0111aecf0:cryptroot resume=/dev/mapper/lvm-swapvol quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ba004fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ba005000-0x00000000ba00bfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ba00c000-0x00000000ba7abfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ba7ac000-0x00000000baa1afff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000baa1b000-0x00000000cb3c9fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cb3ca000-0x00000000cb453fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cb454000-0x00000000cb46efff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000cb46f000-0x00000000cb9ddfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cb9de000-0x00000000cbffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cbfff000-0x00000000cbffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cd000000-0x00000000cf1fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.8 present.
    [ 0.000000] DMI: Micro-Star International Co., Ltd. GS60 2PE/MS-16H2, BIOS E16H2IMS.106 05/13/2014
    [ 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 = 0x42fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7C00000000 write-back
    [ 0.000000] 1 base 0400000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 0420000000 mask 7FF0000000 write-back
    [ 0.000000] 3 base 00E0000000 mask 7FE0000000 uncachable
    [ 0.000000] 4 base 00D0000000 mask 7FF0000000 uncachable
    [ 0.000000] 5 base 00CE000000 mask 7FFE000000 uncachable
    [ 0.000000] 6 base 00CD000000 mask 7FFF000000 uncachable
    [ 0.000000] 7 base 042FE00000 mask 7FFFE00000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xcd000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcc000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd770-0x000fd77f] mapped at [ffff8800000fd770]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b23000, 0x01b23fff] PGTABLE
    [ 0.000000] BRK [0x01b24000, 0x01b24fff] PGTABLE
    [ 0.000000] BRK [0x01b25000, 0x01b25fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x42fc00000-0x42fdfffff]
    [ 0.000000] [mem 0x42fc00000-0x42fdfffff] page 2M
    [ 0.000000] BRK [0x01b26000, 0x01b26fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x42c000000-0x42fbfffff]
    [ 0.000000] [mem 0x42c000000-0x42fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x400000000-0x42bffffff]
    [ 0.000000] [mem 0x400000000-0x42bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xba004fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0xb9ffffff] page 2M
    [ 0.000000] [mem 0xba000000-0xba004fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xba00c000-0xba7abfff]
    [ 0.000000] [mem 0xba00c000-0xba1fffff] page 4k
    [ 0.000000] [mem 0xba200000-0xba5fffff] page 2M
    [ 0.000000] [mem 0xba600000-0xba7abfff] page 4k
    [ 0.000000] BRK [0x01b27000, 0x01b27fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbaa1b000-0xcb3c9fff]
    [ 0.000000] [mem 0xbaa1b000-0xbabfffff] page 4k
    [ 0.000000] [mem 0xbac00000-0xcb1fffff] page 2M
    [ 0.000000] [mem 0xcb200000-0xcb3c9fff] page 4k
    [ 0.000000] BRK [0x01b28000, 0x01b28fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xcbfff000-0xcbffffff]
    [ 0.000000] [mem 0xcbfff000-0xcbffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    [ 0.000000] [mem 0x100000000-0x3ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x374fa000-0x37a74fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 MSI_NB)
    [ 0.000000] ACPI: XSDT 0x00000000CB459098 0000B4 (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000CB466618 00010C (v05 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000CB4591E0 00D433 (v02 MSI_NB MEGABOOK 00000030 INTL 20120711)
    [ 0.000000] ACPI: FACS 0x00000000CB9DC080 000040
    [ 0.000000] ACPI: APIC 0x00000000CB466728 000092 (v03 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000CB4667C0 000044 (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: ASF! 0x00000000CB466808 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240)
    [ 0.000000] ACPI: MSDM 0x00000000CB4668B0 000055 (v03 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: LPIT 0x00000000CB466908 00005C (v01 MSI_NB MEGABOOK 00000000 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000CB466968 000228 (v01 INTEL sensrhub 00000000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000CB466B90 00018F (v01 Intel zpodd 00001000 INTL 20120711)
    [ 0.000000] ACPI: SLIC 0x00000000CB466D20 000176 (v01 MSI_NB MEGABOOK 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 0x00000000CB466E98 000575 (v01 PmRef Cpu0Ist 00003000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000CB467410 000AD8 (v01 PmRef CpuPm 00003000 INTL 20120711)
    [ 0.000000] ACPI: MCFG 0x00000000CB467EE8 00003C (v01 MSI_NB MEGABOOK 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x00000000CB467F28 000038 (v01 MSI_NB MEGABOOK 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000CB467F60 000315 (v01 SataRe SataTabl 00001000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000CB468278 003550 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000CB46B7C8 00143A (v01 SgRef SgPeg 00001000 INTL 20120711)
    [ 0.000000] ACPI: DMAR 0x00000000CB46CC08 0000B8 (v01 INTEL HSW 00000001 INTL 00000001)
    [ 0.000000] ACPI: SSDT 0x00000000CB46CCC0 001472 (v01 OptRef OptTabl 00001000 INTL 20120711)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000042fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x42fdfffff]
    [ 0.000000] NODE_DATA [mem 0x42fdf6000-0x42fdfafff]
    [ 0.000000] [ffffea0000000000-ffffea0010bfffff] PMD -> [ffff88041f400000-ffff88042f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x42fdfffff]
    [ 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-0xba004fff]
    [ 0.000000] node 0: [mem 0xba00c000-0xba7abfff]
    [ 0.000000] node 0: [mem 0xbaa1b000-0xcb3c9fff]
    [ 0.000000] node 0: [mem 0xcbfff000-0xcbffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x42fdfffff]
    [ 0.000000] On node 0 totalpages: 4173553
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12934 pages used for memmap
    [ 0.000000] DMA32 zone: 827733 pages, LIFO batch:31
    [ 0.000000] Normal zone: 52216 pages used for memmap
    [ 0.000000] Normal zone: 3341824 pages, LIFO batch:31
    [ 0.000000] Reserving Intel graphics stolen memory at 0xcd200000-0xcf1fffff
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 8, 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: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xba005000-0xba00bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xba7ac000-0xbaa1afff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb3ca000-0xcb453fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb454000-0xcb46efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb46f000-0xcb9ddfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb9de000-0xcbffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcc000000-0xccffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcd000000-0xcf1fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcf200000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xcf200000-0xf7ffffff] 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 @ffff88042fa00000 s86784 r8192 d23808 u262144
    [ 0.000000] pcpu-alloc: s86784 r8192 d23808 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: 4108318
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=1a4daa5b-c2e9-44c0-9155-95a9d2c25878 rw cryptdevice=UUID=67ed3f10-6bc9-4413-b567-f9f0111aecf0:cryptroot resume=/dev/mapper/lvm-swapvol quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 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: 16347668K/16694212K available (5334K kernel code, 887K rwdata, 1688K rodata, 1128K init, 1164K bss, 346544K 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:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 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 2494.320 MHz processor
    [ 0.000022] Calibrating delay loop (skipped), value calculated using timer frequency.. 4990.50 BogoMIPS (lpj=8314400)
    [ 0.000024] pid_max: default: 32768 minimum: 301
    [ 0.000029] ACPI: Core revision 20140424
    [ 0.009832] ACPI: All ACPI Tables successfully acquired
    [ 0.010517] Security Framework initialized
    [ 0.010521] Yama: becoming mindful.
    [ 0.011207] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.013363] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.014280] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.014292] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.014481] Initializing cgroup subsys memory
    [ 0.014494] Initializing cgroup subsys devices
    [ 0.014498] Initializing cgroup subsys freezer
    [ 0.014500] Initializing cgroup subsys net_cls
    [ 0.014502] Initializing cgroup subsys blkio
    [ 0.014521] CPU: Physical Processor ID: 0
    [ 0.014521] CPU: Processor Core ID: 0
    [ 0.014525] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.015291] mce: CPU supports 9 MCE banks
    [ 0.015301] CPU0: Thermal monitoring enabled (TM1)
    [ 0.015311] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    tlb_flushall_shift: 6
    [ 0.015382] Freeing SMP alternatives memory: 20K (ffffffff819f9000 - ffffffff819fe000)
    [ 0.015942] ftrace: allocating 20434 entries in 80 pages
    [ 0.022339] dmar: Host address width 39
    [ 0.022341] dmar: DRHD base: 0x000000fed90000 flags: 0x0
    [ 0.022348] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
    [ 0.022349] dmar: DRHD base: 0x000000fed91000 flags: 0x1
    [ 0.022352] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
    [ 0.022353] dmar: RMRR base: 0x000000cbe94000 end: 0x000000cbea2fff
    [ 0.022354] dmar: RMRR base: 0x000000cd000000 end: 0x000000cf1fffff
    [ 0.022418] IOAPIC id 8 under DRHD base 0xfed91000 IOMMU 1
    [ 0.022419] HPET id 0 under DRHD base 0xfed91000
    [ 0.022420] Queued invalidation will be enabled to support x2apic and Intr-remapping.
    [ 0.022530] Enabled IRQ remapping in x2apic mode
    [ 0.022531] Enabling x2apic
    [ 0.022532] Enabled x2apic
    [ 0.022541] Switched APIC routing to cluster x2apic.
    [ 0.022958] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.056020] smpboot: CPU0: Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.056031] TSC deadline timer enabled
    [ 0.056047] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.056060] ... version: 3
    [ 0.056061] ... bit width: 48
    [ 0.056061] ... generic registers: 4
    [ 0.056062] ... value mask: 0000ffffffffffff
    [ 0.056063] ... max period: 0000ffffffffffff
    [ 0.056063] ... fixed-purpose events: 3
    [ 0.056064] ... event mask: 000000070000000f
    [ 0.079493] x86: Booting SMP configuration:
    [ 0.079494] .... node #0, CPUs: #1
    [ 0.093398] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.100083] #2 #3 #4 #5 #6 #7
    [ 0.220438] x86: Booted up 1 node, 8 CPUs
    [ 0.220442] smpboot: Total of 8 processors activated (39925.00 BogoMIPS)
    [ 0.226421] devtmpfs: initialized
    [ 0.228397] PM: Registering ACPI NVS region [mem 0xba005000-0xba00bfff] (28672 bytes)
    [ 0.228398] PM: Registering ACPI NVS region [mem 0xcb46f000-0xcb9ddfff] (5697536 bytes)
    [ 0.228983] pinctrl core: initialized pinctrl subsystem
    [ 0.229021] RTC time: 0:23:19, date: 08/15/14
    [ 0.229056] NET: Registered protocol family 16
    [ 0.229128] cpuidle: using governor ladder
    [ 0.229129] cpuidle: using governor menu
    [ 0.229147] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.229148] ACPI: bus type PCI registered
    [ 0.229150] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.229202] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.229203] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.229261] PCI: Using configuration type 1 for base access
    [ 0.243279] ACPI: Added _OSI(Module Device)
    [ 0.243281] ACPI: Added _OSI(Processor Device)
    [ 0.243282] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.243283] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.245353] ACPI Error: No handler for Region [EC__] (ffff88041f03bc18) [EmbeddedControl] (20140424/evregion-162)
    [ 0.245356] ACPI Error: Region EmbeddedControl (ID=3) has no handler (20140424/exfldio-299)
    [ 0.245358] ACPI Error: Method parse/execution failed [\_SB_.PCI0.LPCB.EC__._REG] (Node ffff88041f03ecf8), AE_NOT_EXIST (20140424/psparse-536)
    [ 0.246040] ACPI: Executed 2 blocks of module-level executable AML code
    [ 0.286406] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.299829] ACPI: Dynamic OEM Table Load:
    [ 0.299835] ACPI: SSDT 0xFFFF880418CB3000 0003EA (v01 PmRef Cpu0Cst 00003001 INTL 20120711)
    [ 0.313292] ACPI: Dynamic OEM Table Load:
    [ 0.313298] ACPI: SSDT 0xFFFF880418D31000 0005AA (v01 PmRef ApIst 00003000 INTL 20120711)
    [ 0.326537] ACPI: Dynamic OEM Table Load:
    [ 0.326541] ACPI: SSDT 0xFFFF880418D01A00 000119 (v01 PmRef ApCst 00003000 INTL 20120711)
    [ 0.354461] ACPI: Interpreter enabled
    [ 0.354467] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    [ 0.354471] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    [ 0.354482] ACPI: (supports S0 S3 S4 S5)
    [ 0.354483] ACPI: Using IOAPIC for interrupt routing
    [ 0.354500] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.371125] ACPI: Power Resource [PG00] (on)
    [ 0.385654] ACPI: Power Resource [FN00] (off)
    [ 0.385699] ACPI: Power Resource [FN01] (off)
    [ 0.385742] ACPI: Power Resource [FN02] (off)
    [ 0.385786] ACPI: Power Resource [FN03] (off)
    [ 0.385831] ACPI: Power Resource [FN04] (off)
    [ 0.386362] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.386366] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.386519] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 0.386601] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 0.386931] PCI host bridge to bus 0000:00
    [ 0.386933] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.386935] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.386936] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.386937] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.386938] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.386939] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.386940] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.386940] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.386941] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.386942] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.386943] pci_bus 0000:00: root bus resource [mem 0xcf200000-0xfeafffff]
    [ 0.386948] pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
    [ 0.387008] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 0.387033] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.387061] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.387093] pci 0000:00:02.0: [8086:0416] type 00 class 0x030000
    [ 0.387101] pci 0000:00:02.0: reg 0x10: [mem 0xf6400000-0xf67fffff 64bit]
    [ 0.387105] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.387108] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.387156] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
    [ 0.387162] pci 0000:00:03.0: reg 0x10: [mem 0xf7414000-0xf7417fff 64bit]
    [ 0.387235] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    [ 0.387251] pci 0000:00:14.0: reg 0x10: [mem 0xf7400000-0xf740ffff 64bit]
    [ 0.387303] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.387325] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.387356] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    [ 0.387373] pci 0000:00:16.0: reg 0x10: [mem 0xf741e000-0xf741e00f 64bit]
    [ 0.387429] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.387490] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    [ 0.387508] pci 0000:00:1a.0: reg 0x10: [mem 0xf741c000-0xf741c3ff]
    [ 0.387586] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.387623] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.387656] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    [ 0.387670] pci 0000:00:1b.0: reg 0x10: [mem 0xf7410000-0xf7413fff 64bit]
    [ 0.387730] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.387754] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.387784] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    [ 0.387850] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.387876] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.387902] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
    [ 0.387968] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.387994] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.388018] pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
    [ 0.388084] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.388110] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.388133] pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
    [ 0.388199] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.388225] pci 0000:00:1c.4: System wakeup disabled by ACPI
    [ 0.388261] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    [ 0.388279] pci 0000:00:1d.0: reg 0x10: [mem 0xf741b000-0xf741b3ff]
    [ 0.388358] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.388395] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.388428] pci 0000:00:1f.0: [8086:8c4b] type 00 class 0x060100
    [ 0.388564] pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
    [ 0.388578] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    [ 0.388584] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    [ 0.388591] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    [ 0.388597] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    [ 0.388618] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.388625] pci 0000:00:1f.2: reg 0x24: [mem 0xf741a000-0xf741a7ff]
    [ 0.388658] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.388708] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    [ 0.388721] pci 0000:00:1f.3: reg 0x10: [mem 0xf7419000-0xf74190ff 64bit]
    [ 0.388739] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.388833] pci 0000:01:00.0: [10de:1199] type 00 class 0x030200
    [ 0.388840] pci 0000:01:00.0: reg 0x10: [mem 0xf5000000-0xf5ffffff]
    [ 0.388847] pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.388854] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.388858] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.388863] pci 0000:01:00.0: reg 0x30: [mem 0xf6000000-0xf607ffff pref]
    [ 0.388900] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.393257] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.393259] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.393261] pci 0000:00:01.0: bridge window [mem 0xf5000000-0xf60fffff]
    [ 0.393264] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.393341] acpiphp: Slot [1] registered
    [ 0.393351] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.393425] acpiphp: Slot [1-1] registered
    [ 0.393435] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.393439] pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
    [ 0.393443] pci 0000:00:1c.2: bridge window [mem 0xf6800000-0xf71fffff]
    [ 0.393448] pci 0000:00:1c.2: bridge window [mem 0xf2100000-0xf2afffff 64bit pref]
    [ 0.393716] pci 0000:04:00.0: [1969:e091] type 00 class 0x020000
    [ 0.394035] pci 0000:04:00.0: reg 0x10: [mem 0xf7300000-0xf733ffff 64bit]
    [ 0.394138] pci 0000:04:00.0: reg 0x18: [io 0xc000-0xc07f]
    [ 0.395629] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.395860] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.400012] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.400015] pci 0000:00:1c.3: bridge window [io 0xc000-0xcfff]
    [ 0.400019] pci 0000:00:1c.3: bridge window [mem 0xf7300000-0xf73fffff]
    [ 0.400137] pci 0000:05:00.0: [8086:08b1] type 00 class 0x028000
    [ 0.400192] pci 0000:05:00.0: reg 0x10: [mem 0xf7200000-0xf7201fff 64bit]
    [ 0.400431] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
    [ 0.400485] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.406642] pci 0000:00:1c.4: PCI bridge to [bus 05]
    [ 0.406647] pci 0000:00:1c.4: bridge window [mem 0xf7200000-0xf72fffff]
    [ 0.406725] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.414012] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.414043] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.414073] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.414102] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.414131] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.414160] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.414189] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.414217] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
    [ 0.414398] ACPI: Enabled 6 GPEs in block 00 to 3F
    [ 0.414425] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.414488] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.414490] vgaarb: loaded
    [ 0.414491] vgaarb: bridge control possible 0000:00:02.0
    [ 0.414510] PCI: Using ACPI for IRQ routing
    [ 0.415717] PCI: pci_cache_line_size set to 64 bytes
    [ 0.415760] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.415762] e820: reserve RAM buffer [mem 0xba005000-0xbbffffff]
    [ 0.415763] e820: reserve RAM buffer [mem 0xba7ac000-0xbbffffff]
    [ 0.415764] e820: reserve RAM buffer [mem 0xcb3ca000-0xcbffffff]
    [ 0.415765] e820: reserve RAM buffer [mem 0x42fe00000-0x42fffffff]
    [ 0.415845] NetLabel: Initializing
    [ 0.415846] NetLabel: domain hash size = 128
    [ 0.415847] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.415856] NetLabel: unlabeled traffic allowed by default
    [ 0.415875] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.415879] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.417907] Switched to clocksource hpet
    [ 0.421100] pnp: PnP ACPI init
    [ 0.421109] ACPI: bus type PNP registered
    [ 0.421154] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.421156] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.421271] system 00:01: [io 0x0680-0x069f] has been reserved
    [ 0.421272] system 00:01: [io 0xffff] has been reserved
    [ 0.421274] system 00:01: [io 0xffff] has been reserved
    [ 0.421275] system 00:01: [io 0xffff] has been reserved
    [ 0.421276] system 00:01: [io 0x1c00-0x1cfe] has been reserved
    [ 0.421278] system 00:01: [io 0x1d00-0x1dfe] has been reserved
    [ 0.421279] system 00:01: [io 0x1e00-0x1efe] has been reserved
    [ 0.421280] system 00:01: [io 0x1f00-0x1ffe] has been reserved
    [ 0.421281] system 00:01: [io 0x1800-0x18fe] could not be reserved
    [ 0.421283] system 00:01: [io 0x164e-0x164f] has been reserved
    [ 0.421284] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.421306] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.421336] system 00:03: [io 0x1854-0x1857] has been reserved
    [ 0.421337] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.421368] system 00:04: [io 0x04d0-0x04d1] has been reserved
    [ 0.421370] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.421401] pnp 00:05: Plug and Play ACPI device, IDs ETD0301 PNP0f13 SYN1500 SYN0002 (active)
    [ 0.421425] pnp 00:06: Plug and Play ACPI device, IDs MSI0007 PNP030b (active)
    [ 0.428497] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.428499] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.428500] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.428501] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.428502] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.428503] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.428504] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
    [ 0.428505] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.428507] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.428508] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.428509] system 00:07: [mem 0xf7fdf000-0xf7fdffff] has been reserved
    [ 0.428510] system 00:07: [mem 0xf7fe0000-0xf7feffff] has been reserved
    [ 0.428512] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.428661] pnp: PnP ACPI: found 8 devices
    [ 0.428662] ACPI: bus type PNP unregistered
    [ 0.434525] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.434527] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.434529] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
    [ 0.434547] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.434548] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.434549] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.434553] pci 0000:00:1c.0: BAR 14: assigned [mem 0xcf200000-0xcf3fffff]
    [ 0.434557] pci 0000:00:1c.0: BAR 15: assigned [mem 0xcf400000-0xcf5fffff 64bit pref]
    [ 0.434559] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.434560] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.434562] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.434564] pci 0000:00:01.0: bridge window [mem 0xf5000000-0xf60fffff]
    [ 0.434566] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.434568] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.434571] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.434574] pci 0000:00:1c.0: bridge window [mem 0xcf200000-0xcf3fffff]
    [ 0.434578] pci 0000:00:1c.0: bridge window [mem 0xcf400000-0xcf5fffff 64bit pref]
    [ 0.434583] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.434585] pci 0000:00:1c.2: bridge window [io 0xd000-0xdfff]
    [ 0.434594] pci 0000:00:1c.2: bridge window [mem 0xf6800000-0xf71fffff]
    [ 0.434597] pci 0000:00:1c.2: bridge window [mem 0xf2100000-0xf2afffff 64bit pref]
    [ 0.434602] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.434604] pci 0000:00:1c.3: bridge window [io 0xc000-0xcfff]
    [ 0.434608] pci 0000:00:1c.3: bridge window [mem 0xf7300000-0xf73fffff]
    [ 0.434614] pci 0000:00:1c.4: PCI bridge to [bus 05]
    [ 0.434619] pci 0000:00:1c.4: bridge window [mem 0xf7200000-0xf72fffff]
    [ 0.434625] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.434627] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.434628] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.434628] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.434629] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.434630] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.434631] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.434632] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.434633] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.434634] pci_bus 0000:00: resource 13 [mem 0xcf200000-0xfeafffff]
    [ 0.434635] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.434636] pci_bus 0000:01: resource 1 [mem 0xf5000000-0xf60fffff]
    [ 0.434637] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.434638] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.434639] pci_bus 0000:02: resource 1 [mem 0xcf200000-0xcf3fffff]
    [ 0.434640] pci_bus 0000:02: resource 2 [mem 0xcf400000-0xcf5fffff 64bit pref]
    [ 0.434641] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    [ 0.434642] pci_bus 0000:03: resource 1 [mem 0xf6800000-0xf71fffff]
    [ 0.434643] pci_bus 0000:03: resource 2 [mem 0xf2100000-0xf2afffff 64bit pref]
    [ 0.434644] pci_bus 0000:04: resource 0 [io 0xc000-0xcfff]
    [ 0.434645] pci_bus 0000:04: resource 1 [mem 0xf7300000-0xf73fffff]
    [ 0.434646] pci_bus 0000:05: resource 1 [mem 0xf7200000-0xf72fffff]
    [ 0.434665] NET: Registered protocol family 2
    [ 0.434817] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.434957] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.435058] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.435070] TCP: reno registered
    [ 0.435083] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.435119] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.435175] NET: Registered protocol family 1
    [ 0.435185] pci 0000:00:02.0: Boot video device
    [ 0.468054] pci 0000:04:00.0: set MSI_INTX_DISABLE_BUG flag
    [ 0.468062] PCI: CLS 64 bytes, default 64
    [ 0.468102] Unpacking initramfs...
    [ 0.532072] Freeing initrd memory: 5612K (ffff8800374fa000 - ffff880037a75000)
    [ 0.532091] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.532093] software IO TLB [mem 0xc73ca000-0xcb3ca000] (64MB) mapped at [ffff8800c73ca000-ffff8800cb3c9fff]
    [ 0.532304] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [ 0.532341] Scanning for low memory corruption every 60 seconds
    [ 0.532551] futex hash table entries: 2048 (order: 5, 131072 bytes)
    [ 0.532785] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.533736] zbud: loaded
    [ 0.533873] VFS: Disk quotas dquot_6.5.2
    [ 0.533900] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.533989] msgmni has been set to 31940
    [ 0.534033] Key type big_key registered
    [ 0.534168] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.534218] io scheduler noop registered
    [ 0.534220] io scheduler deadline registered
    [ 0.534251] io scheduler cfq registered (default)
    [ 0.534366] pcieport 0000:00:01.0: irq 42 for MSI/MSI-X
    [ 0.534677] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.534686] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.534714] vesafb: mode is 2880x1620x32, linelength=11520, pages=0
    [ 0.534715] vesafb: scrolling: redraw
    [ 0.534716] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.534738] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90005c00000, using 18240k, total 18240k
    [ 0.822629] Console: switching to colour frame buffer device 360x101
    [ 1.110079] fb0: VESA VGA frame buffer device
    [ 1.110094] intel_idle: MWAIT substates: 0x42120
    [ 1.110095] intel_idle: v0.4 model 0x3C
    [ 1.110096] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.110313] GHES: HEST is not enabled!
    [ 1.110361] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.110652] Linux agpgart interface v0.103
    [ 1.110693] rtc_cmos 00:02: RTC can wake from S4
    [ 1.110794] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.110819] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 1.110828] Intel P-state driver initializing.
    [ 1.110838] Intel pstate controlling: cpu 0
    [ 1.110854] Intel pstate controlling: cpu 1
    [ 1.110867] Intel pstate controlling: cpu 2
    [ 1.110879] Intel pstate controlling: cpu 3
    [ 1.110891] Intel pstate controlling: cpu 4
    [ 1.110899] Intel pstate controlling: cpu 5
    [ 1.110911] Intel pstate controlling: cpu 6
    [ 1.110923] Intel pstate controlling: cpu 7
    [ 1.111000] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.111276] TCP: cubic registered
    [ 1.111504] NET: Registered protocol family 10
    [ 1.111971] NET: Registered protocol family 17
    [ 1.112783] registered taskstats version 1
    [ 1.114136] Magic number: 10:956:354
    [ 1.114303] rtc_cmos 00:02: setting system clock to 2014-08-15 00:23:19 UTC (1408062199)
    [ 1.114490] PM: Checking hibernation image partition /dev/mapper/lvm-swapvol
    [ 1.114497] PM: Hibernation image not present or could not be loaded.
    [ 1.116376] Freeing unused kernel memory: 1128K (ffffffff818df000 - ffffffff819f9000)
    [ 1.116380] Write protecting the kernel read-only data: 8192k
    [ 1.121213] Freeing unused kernel memory: 800K (ffff880001538000 - ffff880001600000)
    [ 1.123178] Freeing unused kernel memory: 360K (ffff8800017a6000 - ffff880001800000)
    [ 1.135874] random: systemd-tmpfile urandom read with 4 bits of entropy available
    [ 1.136933] systemd-udevd[80]: starting version 215
    [ 1.139538] device-mapper: uevent: version 1.0.3
    [ 1.139594] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: [email protected]
    [ 1.149753] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.156378] ACPI: bus type USB registered
    [ 1.156404] usbcore: registered new interface driver usbfs
    [ 1.156415] usbcore: registered new interface driver hub
    [ 1.156476] usbcore: registered new device driver usb
    [ 1.156933] SCSI subsystem initialized
    [ 1.162079] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.162996] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.163041] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.163214] ehci-pci: EHCI PCI platform driver
    [ 1.163316] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 1.163320] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.163332] ehci-pci 0000:00:1a.0: debug port 2
    [ 1.164275] libata version 3.00 loaded.
    [ 1.164967] AVX2 version of gcm_enc/dec engaged.
    [ 1.167248] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.167266] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf741c000
    [ 1.175425] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.175578] hub 1-0:1.0: USB hub found
    [ 1.175582] hub 1-0:1.0: 2 ports detected
    [ 1.175779] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 1.175783] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.175793] ehci-pci 0000:00:1d.0: debug port 2
    [ 1.179710] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.179723] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf741b000
    [ 1.179857] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.188804] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.188987] hub 2-0:1.0: USB hub found
    [ 1.188991] hub 2-0:1.0: 2 ports detected
    [ 1.189214] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.189222] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 1.189323] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 1.189343] xhci_hcd 0000:00:14.0: irq 43 for MSI/MSI-X
    [ 1.189561] hub 3-0:1.0: USB hub found
    [ 1.189580] hub 3-0:1.0: 14 ports detected
    [ 1.192223] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.192226] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 1.192336] hub 4-0:1.0: USB hub found
    [ 1.192347] hub 4-0:1.0: 6 ports detected
    [ 1.193001] usb: failed to peer usb4-port6 and usb3-port4 by location (usb4-port6:none) (usb3-port4:usb4-port4)
    [ 1.193002] usb usb4-port6: failed to peer to usb3-port4 (-16)
    [ 1.193002] usb: port power management may be unreliable
    [ 1.193071] ahci 0000:00:1f.2: version 3.0
    [ 1.193201] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    [ 1.193239] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x10 impl SATA mode
    [ 1.193241] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
    [ 1.193733] scsi0 : ahci
    [ 1.193850] scsi1 : ahci
    [ 1.193946] scsi2 : ahci
    [ 1.194041] scsi3 : ahci
    [ 1.194109] scsi4 : ahci
    [ 1.194177] scsi5 : ahci
    [ 1.194201] ata1: DUMMY
    [ 1.194201] ata2: DUMMY
    [ 1.194202] ata3: DUMMY
    [ 1.194203] ata4: DUMMY
    [ 1.194205] ata5: SATA max UDMA/133 abar m2048@0xf741a000 port 0xf741a300 irq 44
    [ 1.194206] ata6: DUMMY
    [ 1.482494] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 1.512521] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.513764] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.513768] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.513770] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 1.514950] ata5.00: ATA-8: HGST HTS721010A9E630, JB0OA3J0, max UDMA/133
    [ 1.514953] ata5.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.516323] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.516327] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.516329] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 1.517496] ata5.00: configured for UDMA/133
    [ 1.517668] scsi 4:0:0:0: Direct-Access ATA HGST HTS721010A9 A3J0 PQ: 0 ANSI: 5
    [ 1.520380] sd 4:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.520382] sd 4:0:0:0: [sda] 4096-byte physical blocks
    [ 1.520463] sd 4:0:0:0: [sda] Write Protect is off
    [ 1.520466] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.520499] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.535828] tsc: Refined TSC clocksource calibration: 2494.224 MHz
    [ 1.594508] sda: sda1 sda2 sda3 sda128
    [ 1.595313] sd 4:0:0:0: [sda] Attached SCSI disk
    [ 1.606608] hub 1-1:1.0: USB hub found
    [ 1.606671] hub 1-1:1.0: 6 ports detected
    [ 1.712720] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.836976] hub 2-1:1.0: USB hub found
    [ 1.837108] hub 2-1:1.0: 8 ports detected
    [ 1.996416] usb 3-5: new low-speed USB device number 2 using xhci_hcd
    [ 2.173583] usb 3-5: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 2.175034] hidraw: raw HID events driver (C) Jiri Kosina
    [ 2.176842] usbcore: registered new interface driver usbhid
    [ 2.176844] usbhid: USB HID core driver
    [ 2.177298] input: Mouse USB Laser Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:FFC0:0040.0001/input/input2
    [ 2.177340] hid-generic 0003:FFC0:0040.0001: input,hidraw0: USB HID v1.11 Mouse [Mouse USB Laser Mouse] on usb-0000:00:14.0-5/input0
    [ 2.239993] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
    [ 2.403591] usb 2-1.8: new full-speed USB device number 3 using ehci-pci
    [ 2.491845] hid-generic 0003:1770:FF00.0002: hiddev0,hidraw1: USB HID v1.10 Device [MSI EPF USB MSI EPF USB] on usb-0000:00:1d.0-1.8/input0
    [ 2.537099] Switched to clocksource tsc
    [ 9.125249] random: nonblocking pool is initialized
    [ 15.501907] NET: Registered protocol family 38
    [ 17.087530] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 18.229927] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
    [ 18.534354] systemd-udevd[279]: starting version 215
    [ 18.952256] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0D:00/input/input3
    [ 18.952469] ACPI: Fan [FAN0] (off)
    [ 18.952491] ACPI: Fan [FAN1] (off)
    [ 18.952509] ACPI: Fan [FAN2] (off)
    [ 18.952526] ACPI: Fan [FAN3] (off)
    [ 18.952543] ACPI: Fan [FAN4] (off)
    [ 18.955614] ACPI: Lid Switch [LID0]
    [ 18.955655] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    [ 18.955658] ACPI: Power Button [PWRB]
    [ 18.955686] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 18.955687] ACPI: Power Button [PWRF]
    [ 18.966606] wmi: Mapper loaded
    [ 19.047576] thermal LNXTHERM:00: registered as thermal_zone0
    [ 19.047578] ACPI: Thermal Zone [TZ00] (28 C)
    [ 19.047729] thermal LNXTHERM:01: registered as thermal_zone1
    [ 19.047730] ACPI: Thermal Zone [TZ01] (30 C)
    [ 19.050742] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 19.068816] thermal LNXTHERM:02: registered as thermal_zone2
    [ 19.068818] ACPI: Thermal Zone [THRM] (53 C)
    [ 19.071927] ACPI Warning: SystemIO range 0x000000000000f040-0x000000000000f05f conflicts with OpRegion 0x000000000000f040-0x000000000000f04f (\_SB_.PCI0.SBUS.SMBI) (20140424/utaddress-258)
    [ 19.071931] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 19.124018] [drm] Initialized drm 1.1.0 20060810
    [ 19.155967] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 19.191918] ACPI: Battery Slot [BAT1] (battery present)
    [ 19.198641] ACPI: AC Adapter [ADP1] (on-line)
    [ 19.201166] mei_me 0000:00:16.0: irq 45 for MSI/MSI-X
    [ 19.230883] microcode: CPU0 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.320790] mousedev: PS/2 mouse device common for all mice
    [ 19.340987] input: MSI WMI hotkeys as /devices/virtual/input/input8
    [ 19.350216] iTCO_vendor_support: vendor-support=0
    [ 19.357069] [drm] Memory usable by graphics device = 2048M
    [ 19.357071] [drm] Replacing VGA console driver
    [ 19.357073] checking generic (d0000000 11d0000) vs hw (d0000000 10000000)
    [ 19.357074] fb: switching to inteldrmfb from VESA VGA
    [ 19.357086] Console: switching to colour dummy device 80x25
    [ 19.360084] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 19.360106] iTCO_wdt: Found a Lynx Point TCO device (Version=2, TCOBASE=0x1860)
    [ 19.360171] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 19.375453] i915 0000:00:02.0: irq 46 for MSI/MSI-X
    [ 19.375461] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 19.375462] [drm] Driver supports precise vblank timestamp query.
    [ 19.375480] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 19.396788] [drm] VBT doesn't support DRRS
    [ 19.413293] alx 0000:04:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [44:8a:5b:6f:c3:57]
    [ 19.434956] cfg80211: Calling CRDA to update world regulatory domain
    [ 19.465506] microcode: CPU1 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.465534] microcode: CPU2 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.465555] microcode: CPU3 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.465575] microcode: CPU4 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.465588] microcode: CPU5 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.465603] microcode: CPU6 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.465625] microcode: CPU7 sig=0x306c3, pf=0x20, revision=0x17
    [ 19.465673] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 19.518669] Bluetooth: Core ver 2.19
    [ 19.518681] NET: Registered protocol family 31
    [ 19.518682] Bluetooth: HCI device and connection manager initialized
    [ 19.518688] Bluetooth: HCI socket layer initialized
    [ 19.518689] Bluetooth: L2CAP socket layer initialized
    [ 19.545919] Bluetooth: SCO socket layer initialized
    [ 19.545920] systemd-udevd[296]: renamed network interface eth0 to enp4s0
    [ 19.555627] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
    [ 19.579086] fbcon: inteldrmfb (fb0) is primary device
    [ 19.634446] usbcore: registered new interface driver btusb
    [ 19.647874] Bluetooth: hci0: read Intel version: 370710018002030d00
    [ 19.662947] MXM: GUID detected in BIOS
    [ 19.663037] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 19.663093] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 19.663229] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
    [ 19.663230] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle
    [ 19.672404] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 19.672404] Copyright(c) 2003- 2014 Intel Corporation
    [ 19.672511] iwlwifi 0000:05:00.0: irq 47 for MSI/MSI-X
    [ 19.774284] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
    [ 19.803544] psmouse serio1: elantech: assuming hardware version 4 (with firmware version 0x461f00)
    [ 19.804987] iwlwifi 0000:05:00.0: loaded firmware version 23.214.9.0 op_mode iwlmvm
    [ 19.820975] psmouse serio1: elantech: Synaptics capabilities query result 0x00, 0x15, 0x0e.
    [ 19.908919] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input7
    [ 19.956219] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
    [ 20.011971] iwlwifi 0000:05:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
    [ 20.012015] iwlwifi 0000:05:00.0: L1 Disabled; Enabling L0S
    [ 20.012231] iwlwifi 0000:05:00.0: L1 Disabled; Enabling L0S
    [ 20.155135] Adding 16777212k swap on /dev/mapper/lvm-swapvol. Priority:-1 extents:1 across:16777212k FS
    [ 20.301346] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
    [ 20.329844] systemd-udevd[285]: renamed network interface wlan0 to wlp5s0
    [ 20.646833] Console: switching to colour frame buffer device 360x101
    [ 20.661807] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 20.661808] i915 0000:00:02.0: registered panic notifier
    [ 20.684762] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 20.707714] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 20.707767] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:44/LNXVIDEO:00/input/input9
    [ 20.708831] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 20.708889] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input10
    [ 20.708952] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 20.709072] nouveau [ DEVICE][0000:01:00.0] BOOT0 : 0x0e4190a2
    [ 20.709074] nouveau [ DEVICE][0000:01:00.0] Chipset: GK104 (NVE4)
    [ 20.709075] nouveau [ DEVICE][0000:01:00.0] Family : NVE0
    [ 20.709094] nouveau [ VBIOS][0000:01:00.0] checking PRAMIN for image...
    [ 20.709100] nouveau [ VBIOS][0000:01:00.0] ... signature not found
    [ 20.709101] nouveau [ VBIOS][0000:01:00.0] checking PROM for image...
    [ 20.709410] snd_hda_intel 0000:00:03.0: irq 48 for MSI/MSI-X
    [ 20.709527] snd_hda_intel 0000:00:1b.0: irq 49 for MSI/MSI-X
    [ 20.778578] nouveau [ VBIOS][0000:01:00.0] ... appears to be valid
    [ 20.778580] nouveau [ VBIOS][0000:01:00.0] using image from PROM
    [ 20.778686] nouveau [ VBIOS][0000:01:00.0] BIT signature found
    [ 20.778688] nouveau [ VBIOS][0000:01:00.0] version 80.04.ef.00.21
    [ 20.778987] nouveau [ DEVINIT][0000:01:00.0] adaptor not initialised
    [ 20.778994] nouveau [ VBIOS][0000:01:00.0] running init tables
    [ 20.968712] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
    [ 20.968772] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
    [ 20.968830] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
    [ 21.009002] sound hdaudioC1D0: autoconfig: line_outs=2 (0x15/0x1b/0x0/0x0/0x0) type:speaker
    [ 21.009005] sound hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 21.009006] sound hdaudioC1D0: hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
    [ 21.009007] sound hdaudioC1D0: mono: mono_out=0x0
    [ 21.009008] sound hdaudioC1D0: dig-out=0x1e/0x0
    [ 21.009009] sound hdaudioC1D0: inputs:
    [ 21.009010] sound hdaudioC1D0: Mic=0x18
    [ 21.009011] sound hdaudioC1D0: Internal Mic=0x12
    [ 21.016614] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/hdaudioC1D0/input14
    [ 21.016783] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
    [ 21.016842] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input16
    [ 21.043492] nouveau 0000:01:00.0: irq 50 for MSI/MSI-X
    [ 21.043506] nouveau [ PMC][0000:01:00.0] MSI interrupts enabled
    [ 21.043546] nouveau [ PFB][0000:01:00.0] RAM type: GDDR5
    [ 21.043547] nouveau [ PFB][0000:01:00.0] RAM size: 3072 MiB
    [ 21.043548] nouveau [ PFB][0000:01:00.0] ZCOMP: 0 tags
    [ 21.045953] nouveau [ VOLT][0000:01:00.0] GPU voltage: 600000uv
    [ 21.074609] nouveau [ PTHERM][0000:01:00.0] FAN control: none / external
    [ 21.074615] nouveau [ PTHERM][0000:01:00.0] fan management: automatic
    [ 21.074622] nouveau [ PTHERM][0000:01:00.0] internal sensor: yes
    [ 21.074643] nouveau [ CLK][0000:01:00.0] 07: core 324-405 MHz memory 648 MHz
    [ 21.074686] nouveau [ CLK][0000:01:00.0] 0a: core 405-967 MHz memory 1620 MHz
    [ 21.074757] nouveau [ CLK][0000:01:00.0] 0e: core 405-967 MHz memory 4000 MHz
    [ 21.074843] nouveau [ CLK][0000:01:00.0] 0f: core 405-967 MHz memory 5000 MHz
    [ 21.074913] nouveau [ CLK][0000:01:00.0] --: core 324 MHz memory 648 MHz
    [ 21.113338] nouveau E[ PBUS][0000:01:00.0] MMIO read of 0x00000000 FAULT at 0x400700 [ IBUS ]
    [ 21.113368] vga_switcheroo: enabled
    [ 21.113471] [TTM] Zone kernel: Available graphics memory: 8177794 kiB
    [ 21.113473] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
    [ 21.113473] [TTM] Initializing pool allocator
    [ 21.113477] [TTM] Initializing DMA pool allocator
    [ 21.113484] nouveau [ DRM] VRAM: 3072 MiB
    [ 21.113485] nouveau [ DRM] GART: 1048576 MiB
    [ 21.113487] nouveau [ DRM] TMDS table version 2.0
    [ 21.113489] nouveau [ DRM] DCB version 4.0
    [ 21.119681] nouveau [ DRM] MM: using COPY for buffer copies
    [ 21.119686] [drm] Initialized nouveau 1.1.1 20120801 for 0000:01:00.0 on minor 1
    [ 21.347781] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 21.985072] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 21.993709] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 26.353187] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 26.353470] ACPI: \_SB_.PCI0.PEG0.PEGP: failed to evaluate _DSM
    [ 26.353475] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 28.489788] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 28.566055] systemd-journald[255]: Received request to flush runtime journal from PID 1
    [ 28.853911] systemd-journald[255]: File /var/log/journal/2083dda0e63b4e6cad96cc755ad72173/system.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 30.756848] alx 0000:04:00.0: irq 51 for MSI/MSI-X
    [ 30.757162] IPv6: ADDRCONF(NETDEV_UP): enp4s0: link is not ready
    [ 30.759420] iwlwifi 0000:05:00.0: L1 Disabled; Enabling L0S
    [ 30.759647] iwlwifi 0000:05:00.0: L1 Disabled; Enabling L0S
    [ 30.771168] IPv6: ADDRCONF(NETDEV_UP): wlp5s0: link is not ready
    [ 30.780781] nouveau E[ PBUS][0000:01:00.0] MMIO read of 0x00000000 FAULT at 0x400700 [ IBUS ]
    [ 33.277389] nouveau E[ PGRAPH][0000:01:00.0] HUB_INIT timed out
    [ 33.277393] nouveau E[ PGRAPH][0000:01:00.0] 409000 - done 0x00000220
    [ 33.277397] nouveau E[ PGRAPH][0000:01:00.0] 409000 - stat 0x00000000 0x00000000 0x00000000 0x00000000
    [ 33.277401] nouveau E[ PGRAPH][0000:01:00.0] 409000 - stat 0x00000000 0x00000000 0x00000006 0x00000001
    [ 33.277403] nouveau E[ PGRAPH][0000:01:00.0] 502000 - done 0x00000340
    [ 33.277408] nouveau E[ PGRAPH][0000:01:00.0] 502000 - stat 0x80000000 0x00006500 0x00000000 0x00000000
    [ 33.277414] nouveau E[ PGRAPH][0000:01:00.0] 502000 - stat 0x00000000 0x00000000 0x00000002 0x00000000
    [ 33.277415] nouveau E[ PGRAPH][0000:01:00.0] 50a000 - done 0x00000340
    [ 33.277421] nouveau E[ PGRAPH][0000:01:00.0] 50a000 - stat 0x80000000 0x00008e00 0x00000000 0x00000000
    [ 33.277426] nouveau E[ PGRAPH][0000:01:00.0] 50a000 - stat 0x00000000 0x00000000 0x00000002 0x00000000
    [ 33.277428] nouveau E[ PGRAPH][0000:01:00.0] 512000 - done 0x00000300
    [ 33.277433] nouveau E[ PGRAPH][0000:01:00.0] 512000 - stat 0x00000000 0x00017f00 0x00000000 0x00000000
    [ 33.277439] nouveau E[ PGRAPH][0000:01:00.0] 512000 - stat 0x00000000 0x00000000 0x00000000 0x00000000
    [ 33.277441] nouveau E[ PGRAPH][0000:01:00.0] 51a000 - done 0x00000300
    [ 33.277446] nouveau E[ PGRAPH][0000:01:00.0] 51a000 - stat 0x00000000 0x00000000 0x00000000 0x00000000
    [ 33.277451] nouveau E[ PGRAPH][0000:01:00.0] 51a000 - stat 0x00000000 0x00000000 0x00000000 0x00000000
    [ 33.277452] nouveau E[ PGRAPH][0000:01:00.0] init failed, -16
    [ 34.226370] cfg80211: Calling CRDA to update world regulatory domain
    [ 36.247358] fuse init (API version 7.23)
    [ 39.340754] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 39.341033] ACPI: \_SB_.PCI0.PEG0.PEGP: failed to evaluate _DSM
    [ 39.341037] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 53.952829] systemd-journald[255]: File /var/log/journal/2083dda0e63b4e6cad96cc755ad72173/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 54.363832] nouveau E[ DRM] failed to idle channel 0xcccc0000 [DRM]
    [ 54.477547] pci_pm_runtime_suspend(): nouveau_pmops_runtime_suspend+0x0/0xe0 [nouveau] returns -16
    [ 60.362546] wlp5s0: authenticate with 94:44:52:dc:db:bf
    [ 60.365767] wlp5s0: send auth to 94:44:52:dc:db:bf (try 1/3)
    [ 60.367581] wlp5s0: authenticated
    [ 60.370498] wlp5s0: associate with 94:44:52:dc:db:bf (try 1/3)
    [ 60.374426] wlp5s0: RX AssocResp from 94:44:52:dc:db:bf (capab=0x411 status=0 aid=3)
    [ 60.375328] wlp5s0: associated
    [ 60.375354] IPv6: ADDRCONF(NETDEV_CHANGE): wlp5s0: link becomes ready
    journalctl -x:
    -- Logs begin at Thu 2014-08-14 21:31:47 CEST, end at Fri 2014-08-15 02:25:40 CEST. --
    Aug 14 21:31:47 riXmsi systemd[579]: Starting Paths.
    -- Subject: Unit UNIT has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has begun starting up.
    Aug 14 21:31:47 riXmsi systemd[579]: Reached target Paths.
    -- Subject: Unit UNIT has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has finished starting up.
    -- The start-up result is done.
    Aug 14 21:31:47 riXmsi systemd[579]: Starting Timers.
    -- Subject: Unit UNIT has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has begun starting up.
    Aug 14 21:31:47 riXmsi systemd[579]: Reached target Timers.
    -- Subject: Unit UNIT has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has finished starting up.
    -- The start-up result is done.
    Aug 14 21:31:47 riXmsi systemd[579]: Starting Sockets.
    -- Subject: Unit UNIT has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has begun starting up.
    Aug 14 21:31:47 riXmsi systemd[579]: Reached target Sockets.
    -- Subject: Unit UNIT has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has finished starting up.
    -- The start-up result is done.
    Aug 14 21:31:47 riXmsi systemd[579]: Starting Basic System.
    -- Subject: Unit UNIT has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit UNIT has begun starting up.
    Aug 14 21:31:47 riXmsi systemd[579]: Reached target Basic System.
    -- Subject: Unit UNIT

    keyboard and mouse are now auto-detected. Do you have xf86-input-evdev installed? If so, you do not need to explicitly set the drivers for keyboard and mouse in xorg.conf. You can try it out if you like.

  • [Solved] Systemd broke KDE

    OK, well, looks like my problems weren't actually gone. So i recently upgraded and switched to systemd and all that. I did go through the wiki for systemd and KDE and run the commands to start kdm on boot, and after a few other minor issues I managed to get it to start up once last night, but now it won't. It's definitely attempting to launch kdm, but it immediately drops back to the command-line login. X does work -- I can run 'X -retro' just fine.
    I'll put some logs here, but I don't see anything obviously wrong in any of these. If you have any other thoughts on troubleshooting this let me know.
    Here's my kdm.log:
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.6.3-1-ARCH x86_64
    Current Operating System: Linux myhost 3.6.6-1-ARCH #1 SMP PREEMPT Mon Nov 5 11:57:22 CET 2012 x86_64
    Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda5:root ro acpi_backlight=vendor pcie_aspm=force ipv6.disable=1 ipv6.disable_ipv6=1 init=/usr/lib/systemd/systemd
    Build Date: 08 November 2012 07:09:29PM
    Current version of pixman: 0.28.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Nov 15 13:58:31 2012
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    (WW) module ABI major version (12) doesn't match the server's version (13)
    Server terminated successfully (0). Closing log file.
    And here's my X.org.0.log:
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    [ 155.933] X Protocol Version 11, Revision 0
    [ 155.934] Build Operating System: Linux 3.6.3-1-ARCH x86_64
    [ 155.935] Current Operating System: Linux myhost 3.6.6-1-ARCH #1 SMP PREEMPT Mon Nov 5 11:57:22 CET 2012 x86_64
    [ 155.935] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda5:root ro acpi_backlight=vendor pcie_aspm=force ipv6.disable=1 ipv6.disable_ipv6=1 init=/usr/lib/systemd/systemd
    [ 155.937] Build Date: 08 November 2012 07:09:29PM
    [ 155.938]
    [ 155.938] Current version of pixman: 0.28.0
    [ 155.939] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 155.939] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 155.942] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Nov 15 13:59:28 2012
    [ 155.943] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 155.943] (==) No Layout section. Using the first Screen section.
    [ 155.943] (==) No screen section available. Using defaults.
    [ 155.943] (**) |-->Screen "Default Screen Section" (0)
    [ 155.943] (**) | |-->Monitor "<default monitor>"
    [ 155.943] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 155.943] (**) Option "IgnoreABI" "True"
    [ 155.943] (**) Ignoring ABI Version
    [ 155.943] (==) Automatically adding devices
    [ 155.943] (==) Automatically enabling devices
    [ 155.943] (==) Automatically adding GPU devices
    [ 155.943] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 155.943] Entry deleted from font path.
    [ 155.943] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 155.943] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 155.943] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 155.943] (II) Loader magic: 0x7fcc40
    [ 155.943] (II) Module ABI versions:
    [ 155.943] X.Org ANSI C Emulation: 0.4
    [ 155.943] X.Org Video Driver: 13.1
    [ 155.943] X.Org XInput driver : 18.0
    [ 155.943] X.Org Server Extension : 7.0
    [ 155.943] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 155.943] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 155.945] (--) PCI:*(0:0:2:0) 8086:0116:103c:3388 rev 9, Mem @ 0xc0000000/4194304, 0xb0000000/268435456, I/O @ 0x00006000/64
    [ 155.945] (--) PCI: (0:1:0:0) 1002:6740:103c:3388 rev 0, Mem @ 0xa0000000/268435456, 0xc6500000/131072, I/O @ 0x00005000/256, BIOS @ 0x????????/131072
    [ 155.945] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 155.946] Initializing built-in extension Generic Event Extension
    [ 155.946] Initializing built-in extension SHAPE
    [ 155.947] Initializing built-in extension MIT-SHM
    [ 155.947] Initializing built-in extension XInputExtension
    [ 155.948] Initializing built-in extension XTEST
    [ 155.949] Initializing built-in extension BIG-REQUESTS
    [ 155.949] Initializing built-in extension SYNC
    [ 155.950] Initializing built-in extension XKEYBOARD
    [ 155.950] Initializing built-in extension XC-MISC
    [ 155.951] Initializing built-in extension SECURITY
    [ 155.951] Initializing built-in extension XINERAMA
    [ 155.952] Initializing built-in extension XFIXES
    [ 155.953] Initializing built-in extension RENDER
    [ 155.953] Initializing built-in extension RANDR
    [ 155.954] Initializing built-in extension COMPOSITE
    [ 155.954] Initializing built-in extension DAMAGE
    [ 155.955] Initializing built-in extension MIT-SCREEN-SAVER
    [ 155.955] Initializing built-in extension DOUBLE-BUFFER
    [ 155.956] Initializing built-in extension RECORD
    [ 155.956] Initializing built-in extension DPMS
    [ 155.957] Initializing built-in extension X-Resource
    [ 155.957] Initializing built-in extension XVideo
    [ 155.958] Initializing built-in extension XVideo-MotionCompensation
    [ 155.958] Initializing built-in extension XFree86-VidModeExtension
    [ 155.959] Initializing built-in extension XFree86-DGA
    [ 155.959] Initializing built-in extension XFree86-DRI
    [ 155.960] Initializing built-in extension DRI2
    [ 155.960] (II) LoadModule: "glx"
    [ 155.960] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 155.960] (II) Module glx: vendor="X.Org Foundation"
    [ 155.960] compiled for 1.13.0, module version = 1.0.0
    [ 155.960] ABI class: X.Org Server Extension, version 7.0
    [ 155.960] (==) AIGLX enabled
    [ 155.960] Loading extension GLX
    [ 155.960] (==) Matched intel as autoconfigured driver 0
    [ 155.960] (==) Matched ati as autoconfigured driver 1
    [ 155.960] (==) Matched intel as autoconfigured driver 2
    [ 155.960] (==) Matched vesa as autoconfigured driver 3
    [ 155.960] (==) Matched modesetting as autoconfigured driver 4
    [ 155.960] (==) Matched fbdev as autoconfigured driver 5
    [ 155.960] (==) Assigned the driver to the xf86ConfigLayout
    [ 155.960] (II) LoadModule: "intel"
    [ 155.960] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 155.960] (II) Module intel: vendor="X.Org Foundation"
    [ 155.960] compiled for 1.13.0, module version = 2.20.12
    [ 155.960] Module class: X.Org Video Driver
    [ 155.961] ABI class: X.Org Video Driver, version 13.0
    [ 155.961] (II) LoadModule: "ati"
    [ 155.961] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 155.961] (II) Module ati: vendor="X.Org Foundation"
    [ 155.961] compiled for 1.12.2, module version = 6.14.6
    [ 155.961] Module class: X.Org Video Driver
    [ 155.961] ABI class: X.Org Video Driver, version 12.0
    [ 155.961] (WW) module ABI major version (12) doesn't match the server's version (13)
    [ 155.961] (II) LoadModule: "vesa"
    [ 155.961] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 155.961] (II) Module vesa: vendor="X.Org Foundation"
    [ 155.961] compiled for 1.13.0, module version = 2.3.2
    [ 155.961] Module class: X.Org Video Driver
    [ 155.961] ABI class: X.Org Video Driver, version 13.0
    [ 155.961] (II) LoadModule: "modesetting"
    [ 155.962] (WW) Warning, couldn't open module modesetting
    [ 155.962] (II) UnloadModule: "modesetting"
    [ 155.962] (II) Unloading modesetting
    [ 155.962] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 155.962] (II) LoadModule: "fbdev"
    [ 155.962] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 155.962] (II) Module fbdev: vendor="X.Org Foundation"
    [ 155.962] compiled for 1.13.0, module version = 0.4.3
    [ 155.962] Module class: X.Org Video Driver
    [ 155.962] ABI class: X.Org Video Driver, version 13.0
    [ 155.962] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
    Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
    Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
    Haswell Server (GT2+), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
    Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
    Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
    Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
    Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
    Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
    Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
    ValleyView PO board
    [ 155.962] (II) VESA: driver for VESA chipsets: vesa
    [ 155.962] (II) FBDEV: driver for framebuffer: fbdev
    [ 155.962] (--) using VT number 2
    [ 155.964] (II) intel(0): using device path '/dev/dri/card1'
    [ 155.964] (WW) Falling back to old probe method for vesa
    [ 155.964] (WW) Falling back to old probe method for fbdev
    [ 155.964] (II) Loading sub module "fbdevhw"
    [ 155.964] (II) LoadModule: "fbdevhw"
    [ 155.965] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 155.965] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 155.965] compiled for 1.13.0, module version = 0.0.2
    [ 155.965] ABI class: X.Org Video Driver, version 13.1
    [ 155.965] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 155.965] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 155.965] (==) intel(0): RGB weight 888
    [ 155.965] (==) intel(0): Default visual is TrueColor
    [ 155.965] (--) intel(0): Integrated Graphics Chipset: Intel(R) Sandybridge Mobile (GT2)
    [ 155.965] (**) intel(0): Relaxed fencing enabled
    [ 155.965] (**) intel(0): Wait on SwapBuffers? enabled
    [ 155.965] (**) intel(0): Triple buffering? enabled
    [ 155.965] (**) intel(0): Framebuffer tiled
    [ 155.965] (**) intel(0): Pixmaps tiled
    [ 155.965] (**) intel(0): 3D buffers tiled
    [ 155.965] (**) intel(0): SwapBuffers wait enabled
    [ 155.965] (==) intel(0): video overlay key set to 0x101fe
    [ 155.965] (II) intel(0): Output LVDS1 has no monitor section
    [ 155.965] (--) intel(0): found backlight control interface /sys/class/backlight/intel_backlight
    [ 155.977] (II) intel(0): Output VGA1 has no monitor section
    [ 155.977] (II) intel(0): Output HDMI1 has no monitor section
    [ 156.020] (II) intel(0): Output DP1 has no monitor section
    [ 156.020] (II) intel(0): EDID for output LVDS1
    [ 156.020] (II) intel(0): Manufacturer: AUO Model: 22ec Serial#: 0
    [ 156.020] (II) intel(0): Year: 2009 Week: 1
    [ 156.020] (II) intel(0): EDID Version: 1.3
    [ 156.020] (II) intel(0): Digital Display Input
    [ 156.020] (II) intel(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 156.020] (II) intel(0): Gamma: 2.20
    [ 156.020] (II) intel(0): No DPMS capabilities specified
    [ 156.020] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 156.020] (II) intel(0): First detailed timing is preferred mode
    [ 156.020] (II) intel(0): redX: 0.620 redY: 0.340 greenX: 0.330 greenY: 0.570
    [ 156.020] (II) intel(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 156.020] (II) intel(0): Manufacturer's mask: 0
    [ 156.020] (II) intel(0): Supported detailed timing:
    [ 156.020] (II) intel(0): clock: 69.3 MHz Image Size: 344 x 193 mm
    [ 156.020] (II) intel(0): h_active: 1366 h_sync: 1398 h_sync_end 1422 h_blank_end 1432 h_border: 0
    [ 156.020] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 775 v_blanking: 806 v_border: 0
    [ 156.020] (II) intel(0): Unknown vendor-specific block f
    [ 156.020] (II) intel(0): AUO
    [ 156.020] (II) intel(0): B156XW02 V2
    [ 156.020] (II) intel(0): EDID (in hex):
    [ 156.020] (II) intel(0): 00ffffffffffff0006afec2200000000
    [ 156.020] (II) intel(0): 01130103802213780ac8959e57549226
    [ 156.020] (II) intel(0): 0f505400000001010101010101010101
    [ 156.020] (II) intel(0): 010101010101121b5642500026302018
    [ 156.020] (II) intel(0): 340058c1100000180000000f00000000
    [ 156.020] (II) intel(0): 00000000000000000020000000fe0041
    [ 156.020] (II) intel(0): 554f0a202020202020202020000000fe
    [ 156.020] (II) intel(0): 004231353658573032205632200a00c0
    [ 156.020] (II) intel(0): EDID vendor "AUO", prod id 8940
    [ 156.020] (II) intel(0): Printing DDC gathered Modelines:
    [ 156.020] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1398 1422 1432 768 771 775 806 -hsync -vsync (48.4 kHz eP)
    [ 156.020] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 156.020] (II) intel(0): Printing probed modes for output LVDS1
    [ 156.020] (II) intel(0): Modeline "1366x768"x60.0 69.30 1366 1398 1422 1432 768 771 775 806 -hsync -vsync (48.4 kHz eP)
    [ 156.020] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 156.020] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 156.020] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 156.020] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 156.033] (II) intel(0): EDID for output VGA1
    [ 156.034] (II) intel(0): EDID for output HDMI1
    [ 156.076] (II) intel(0): EDID for output DP1
    [ 156.076] (II) intel(0): Output LVDS1 connected
    [ 156.076] (II) intel(0): Output VGA1 disconnected
    [ 156.076] (II) intel(0): Output HDMI1 disconnected
    [ 156.076] (II) intel(0): Output DP1 disconnected
    [ 156.076] (II) intel(0): Using exact sizes for initial modes
    [ 156.076] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 156.076] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 156.076] (II) intel(0): Kernel page flipping support detected, enabling
    [ 156.076] (**) intel(0): Display dimensions: (340, 190) mm
    [ 156.076] (**) intel(0): DPI set to (102, 102)
    [ 156.076] (II) Loading sub module "fb"
    [ 156.076] (II) LoadModule: "fb"
    [ 156.076] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 156.077] (II) Module fb: vendor="X.Org Foundation"
    [ 156.077] compiled for 1.13.0, module version = 1.0.0
    [ 156.077] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 156.077] (II) Loading sub module "dri2"
    [ 156.077] (II) LoadModule: "dri2"
    [ 156.077] (II) Module "dri2" already built-in
    [ 156.077] (II) UnloadModule: "vesa"
    [ 156.077] (II) Unloading vesa
    [ 156.077] (II) UnloadModule: "fbdev"
    [ 156.077] (II) Unloading fbdev
    [ 156.077] (II) UnloadSubModule: "fbdevhw"
    [ 156.077] (II) Unloading fbdevhw
    [ 156.077] (==) Depth 24 pixmap format is 32 bpp
    [ 156.077] (II) intel(0): [DRI2] Setup complete
    [ 156.077] (II) intel(0): [DRI2] DRI driver: i965
    [ 156.077] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
    [ 156.078] (II) UXA(0): Driver registered support for the following operations:
    [ 156.078] (II) solid
    [ 156.078] (II) copy
    [ 156.078] (II) composite (RENDER acceleration)
    [ 156.078] (II) put_image
    [ 156.078] (II) get_image
    [ 156.078] (==) intel(0): Backing store disabled
    [ 156.078] (==) intel(0): Silken mouse enabled
    [ 156.078] (II) intel(0): Initializing HW Cursor
    [ 156.078] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 156.078] (==) intel(0): DPMS enabled
    [ 156.078] (==) intel(0): Intel XvMC decoder enabled
    [ 156.078] (II) intel(0): Set up textured video
    [ 156.078] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 156.078] (II) intel(0): direct rendering: DRI2 Enabled
    [ 156.078] (==) intel(0): hotplug detection: "enabled"
    [ 156.096] (--) RandR disabled
    [ 156.104] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 156.104] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 156.104] (II) AIGLX: enabled GLX_ARB_create_context
    [ 156.104] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 156.104] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 156.104] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 156.104] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 156.104] (II) AIGLX: Loaded and initialized i965
    [ 156.104] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 156.104] (II) intel(0): Setting screen physical size to 361 x 203
    [ 156.171] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 156.171] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 156.171] (II) LoadModule: "evdev"
    [ 156.172] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 156.172] (II) Module evdev: vendor="X.Org Foundation"
    [ 156.172] compiled for 1.13.0, module version = 2.7.3
    [ 156.172] Module class: X.Org XInput Driver
    [ 156.172] ABI class: X.Org XInput driver, version 18.0
    [ 156.172] (II) Using input driver 'evdev' for 'Power Button'
    [ 156.172] (**) Power Button: always reports core events
    [ 156.172] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 156.172] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 156.172] (--) evdev: Power Button: Found keys
    [ 156.172] (II) evdev: Power Button: Configuring as keyboard
    [ 156.172] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 156.172] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 156.172] (**) Option "xkb_rules" "evdev"
    [ 156.172] (**) Option "xkb_model" "evdev"
    [ 156.172] (**) Option "xkb_layout" "dvorak"
    [ 156.190] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 156.190] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 156.190] (II) Using input driver 'evdev' for 'Video Bus'
    [ 156.190] (**) Video Bus: always reports core events
    [ 156.190] (**) evdev: Video Bus: Device: "/dev/input/event14"
    [ 156.190] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 156.190] (--) evdev: Video Bus: Found keys
    [ 156.190] (II) evdev: Video Bus: Configuring as keyboard
    [ 156.190] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input14/event14"
    [ 156.190] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 156.190] (**) Option "xkb_rules" "evdev"
    [ 156.190] (**) Option "xkb_model" "evdev"
    [ 156.190] (**) Option "xkb_layout" "dvorak"
    [ 156.190] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 156.190] (II) No input driver specified, ignoring this device.
    [ 156.190] (II) This device may have been added with another device file.
    [ 156.191] (II) config/udev: Adding input device Video Bus (/dev/input/event13)
    [ 156.191] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 156.191] (II) Using input driver 'evdev' for 'Video Bus'
    [ 156.191] (**) Video Bus: always reports core events
    [ 156.191] (**) evdev: Video Bus: Device: "/dev/input/event13"
    [ 156.191] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 156.191] (--) evdev: Video Bus: Found keys
    [ 156.191] (II) evdev: Video Bus: Configuring as keyboard
    [ 156.191] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:2d/LNXVIDEO:00/input/input13/event13"
    [ 156.191] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 156.191] (**) Option "xkb_rules" "evdev"
    [ 156.191] (**) Option "xkb_model" "evdev"
    [ 156.191] (**) Option "xkb_layout" "dvorak"
    [ 156.191] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 156.191] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 156.191] (II) Using input driver 'evdev' for 'Power Button'
    [ 156.191] (**) Power Button: always reports core events
    [ 156.191] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 156.191] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 156.191] (--) evdev: Power Button: Found keys
    [ 156.191] (II) evdev: Power Button: Configuring as keyboard
    [ 156.191] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 156.191] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    [ 156.191] (**) Option "xkb_rules" "evdev"
    [ 156.191] (**) Option "xkb_model" "evdev"
    [ 156.191] (**) Option "xkb_layout" "dvorak"
    [ 156.191] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 156.192] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 156.192] (II) config/udev: Adding input device HP TrueVision HD (/dev/input/event8)
    [ 156.192] (**) HP TrueVision HD: Applying InputClass "evdev keyboard catchall"
    [ 156.192] (II) Using input driver 'evdev' for 'HP TrueVision HD'
    [ 156.192] (**) HP TrueVision HD: always reports core events
    [ 156.192] (**) evdev: HP TrueVision HD: Device: "/dev/input/event8"
    [ 156.192] (--) evdev: HP TrueVision HD: Vendor 0x64e Product 0xd281
    [ 156.192] (--) evdev: HP TrueVision HD: Found keys
    [ 156.192] (II) evdev: HP TrueVision HD: Configuring as keyboard
    [ 156.192] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input8/event8"
    [ 156.192] (II) XINPUT: Adding extended input device "HP TrueVision HD" (type: KEYBOARD, id 10)
    [ 156.192] (**) Option "xkb_rules" "evdev"
    [ 156.192] (**) Option "xkb_model" "evdev"
    [ 156.192] (**) Option "xkb_layout" "dvorak"
    [ 156.192] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event7)
    [ 156.192] (II) No input driver specified, ignoring this device.
    [ 156.192] (II) This device may have been added with another device file.
    [ 156.193] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event10)
    [ 156.193] (II) No input driver specified, ignoring this device.
    [ 156.193] (II) This device may have been added with another device file.
    [ 156.193] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
    [ 156.193] (II) No input driver specified, ignoring this device.
    [ 156.193] (II) This device may have been added with another device file.
    [ 156.193] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event12)
    [ 156.193] (II) No input driver specified, ignoring this device.
    [ 156.193] (II) This device may have been added with another device file.
    [ 156.193] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 156.193] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 156.193] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 156.193] (**) AT Translated Set 2 keyboard: always reports core events
    [ 156.193] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 156.193] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 156.193] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 156.193] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 156.193] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 156.193] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 156.193] (**) Option "xkb_rules" "evdev"
    [ 156.193] (**) Option "xkb_model" "evdev"
    [ 156.193] (**) Option "xkb_layout" "dvorak"
    [ 156.194] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 156.194] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 156.194] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 156.194] (II) LoadModule: "synaptics"
    [ 156.194] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 156.194] (II) Module synaptics: vendor="X.Org Foundation"
    [ 156.194] compiled for 1.13.0, module version = 1.6.2
    [ 156.194] Module class: X.Org XInput Driver
    [ 156.194] ABI class: X.Org XInput driver, version 18.0
    [ 156.194] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 156.194] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 156.194] (**) Option "Device" "/dev/input/event6"
    [ 156.194] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 156.194] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5756
    [ 156.194] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4868
    [ 156.194] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 156.194] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 156.194] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 156.194] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 156.194] (**) Option "TapButton1" "1"
    [ 156.194] (**) Option "TapButton2" "2"
    [ 156.194] (**) Option "TapButton3" "3"
    [ 156.194] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 156.195] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 156.196] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
    [ 156.196] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 156.196] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 156.196] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 156.196] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.036
    [ 156.197] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 156.197] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 156.197] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 156.197] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 156.197] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 156.197] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 156.197] (II) No input driver specified, ignoring this device.
    [ 156.197] (II) This device may have been added with another device file.
    [ 156.197] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event9)
    [ 156.197] (II) No input driver specified, ignoring this device.
    [ 156.197] (II) This device may have been added with another device file.
    [ 156.197] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
    [ 156.197] (II) No input driver specified, ignoring this device.
    [ 156.197] (II) This device may have been added with another device file.
    [ 156.197] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 156.197] (II) No input driver specified, ignoring this device.
    [ 156.197] (II) This device may have been added with another device file.
    [ 156.198] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event5)
    [ 156.198] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 156.198] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    [ 156.198] (**) HP WMI hotkeys: always reports core events
    [ 156.198] (**) evdev: HP WMI hotkeys: Device: "/dev/input/event5"
    [ 156.198] (--) evdev: HP WMI hotkeys: Vendor 0 Product 0
    [ 156.198] (--) evdev: HP WMI hotkeys: Found keys
    [ 156.198] (II) evdev: HP WMI hotkeys: Configuring as keyboard
    [ 156.198] (**) Option "config_info" "udev:/sys/devices/virtual/input/input5/event5"
    [ 156.198] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 13)
    [ 156.198] (**) Option "xkb_rules" "evdev"
    [ 156.198] (**) Option "xkb_model" "evdev"
    [ 156.198] (**) Option "xkb_layout" "dvorak"
    [ 162.491] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 163.800] (II) evdev: HP WMI hotkeys: Close
    [ 163.800] (II) UnloadModule: "evdev"
    [ 163.800] (II) UnloadModule: "synaptics"
    [ 163.800] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 163.800] (II) UnloadModule: "evdev"
    [ 163.800] (II) evdev: HP TrueVision HD: Close
    [ 163.800] (II) UnloadModule: "evdev"
    [ 163.800] (II) evdev: Power Button: Close
    [ 163.800] (II) UnloadModule: "evdev"
    [ 163.800] (II) evdev: Video Bus: Close
    [ 163.800] (II) UnloadModule: "evdev"
    [ 163.800] (II) evdev: Video Bus: Close
    [ 163.800] (II) UnloadModule: "evdev"
    [ 163.800] (II) evdev: Power Button: Close
    [ 163.800] (II) UnloadModule: "evdev"
    [ 163.803] Server terminated successfully (0). Closing log file.
    And the end of my dmesg:
    [ 10.988003] systemd-udevd[241]: starting version 195
    [ 11.628821] scsi6 : vhba
    [ 11.739662] fuse init (API version 7.20)
    [ 11.812527] vboxdrv: Found 8 processor cores.
    [ 11.813458] vboxdrv: fAsync=0 offMin=0x1a2 offMax=0x12384
    [ 11.813541] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 11.813543] vboxdrv: Successfully loaded version 4.2.4_OSE (interface 0x001a0004).
    [ 12.327035] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.363662] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.363986] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.364299] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.364594] microcode: CPU4 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.364874] microcode: CPU5 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.365150] microcode: CPU6 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.365391] microcode: CPU7 sig=0x206a7, pf=0x10, revision=0x1a
    [ 12.365731] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 12.542992] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0D:00/input/input1
    [ 12.545104] ACPI: Lid Switch [LID]
    [ 12.568182] thermal LNXTHERM:00: registered as thermal_zone0
    [ 12.568185] ACPI: Thermal Zone [THRM] (71 C)
    [ 12.590637] ACPI: Battery Slot [BAT0] (battery present)
    [ 12.592331] ACPI: AC Adapter [AC] (off-line)
    [ 12.592409] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 12.592416] ACPI: Power Button [PWRB]
    [ 12.592561] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 12.592566] ACPI: Power Button [PWRF]
    [ 12.626571] mei 0000:00:16.0: setting latency timer to 64
    [ 12.626643] mei 0000:00:16.0: irq 50 for MSI/MSI-X
    [ 12.636398] mei 0000:00:16.0: wd: failed to find the client
    [ 12.645655] wmi: Mapper loaded
    [ 12.657976] ACPI Warning: 0x0000000000006040-0x000000000000605f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
    [ 12.657982] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 12.818091] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
    [ 12.818098] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 12.818102] ACPI Warning: 0x0000000000000500-0x000000000000057f SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
    [ 12.818106] ACPI Warning: 0x0000000000000500-0x000000000000057f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20120711/utaddress-251)
    [ 12.818109] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 12.818110] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 12.864145] ACPI: Requesting acpi_cpufreq
    [ 12.885174] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 12.916270] iTCO_vendor_support: vendor-support=0
    [ 13.042996] sdhci: Secure Digital Host Controller Interface driver
    [ 13.042999] sdhci: Copyright(c) Pierre Ossman
    [ 13.044825] sdhci-pci 0000:13:00.1: SDHCI controller found [10ec:5209] (rev 1)
    [ 13.044922] sdhci-pci 0000:13:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 13.044942] sdhci-pci 0000:13:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 13.044971] Registered led device: mmc0::
    [ 13.069046] mmc0: SDHCI controller on PCI [0000:13:00.1] using DMA
    [ 13.072480] sdhci-pci 0000:13:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 13.102274] sdhci-pci 0000:13:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 13.132086] sdhci-pci 0000:13:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 13.162159] sdhci-pci 0000:13:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 13.234685] input: HP WMI hotkeys as /devices/virtual/input/input5
    [ 13.237299] hp_accel: laptop model unknown, using default axes configuration
    [ 13.277896] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 13.277975] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 13.278203] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 13.401681] rts_pstor: module is from the staging directory, the quality is unknown, you have been warned.
    [ 13.402795] Initializing Realtek PCIE storage driver...
    [ 13.402981] Resource length: 0x1000
    [ 13.403028] Original address: 0xc3501000, remapped address: 0xffffc90000c3e000
    [ 13.403032] pci->irq = 18
    [ 13.403041] rtsx_acquire_irq: chip->msi_en = 0, pci->irq = 18
    [ 13.415705] [drm] Initialized drm 1.1.0 20060810
    [ 13.449476] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 13.449747] r8169 0000:07:00.0: irq 51 for MSI/MSI-X
    [ 13.449862] r8169 0000:07:00.0: eth0: RTL8168evl/8111evl at 0xffffc90000c72000, 08:2e:5f:7e:ac:10, XID 0c900800 IRQ 51
    [ 13.449864] r8169 0000:07:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 13.605601] scsi7 : SCSI emulation for PCI-Express Mass Storage devices
    [ 13.606059] rts_pstor: waiting for device to settle before scanning
    [ 13.609521] lis3lv02d: 8 bits 3DC sensor found
    [ 13.771867] cfg80211: Calling CRDA to update world regulatory domain
    [ 13.880414] snd_hda_intel 0000:00:1b.0: irq 52 for MSI/MSI-X
    [ 14.052375] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.5, id: 0x1e0b1, caps: 0xd00073/0x240000/0xa0400, board id: 1680, fw id: 726294
    [ 14.100284] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
    [ 14.136922] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 14.136925] Copyright(c) 2003-2012 Intel Corporation
    [ 14.137050] iwlwifi 0000:0d:00.0: pci_resource_len = 0x00002000
    [ 14.137059] iwlwifi 0000:0d:00.0: pci_resource_base = ffffc90000c74000
    [ 14.137061] iwlwifi 0000:0d:00.0: HW Revision ID = 0x0
    [ 14.137147] iwlwifi 0000:0d:00.0: irq 53 for MSI/MSI-X
    [ 14.159438] [drm] radeon defaulting to kernel modesetting.
    [ 14.159440] [drm] radeon kernel modesetting enabled.
    [ 14.159451] VGA switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
    [ 14.159477] radeon 0000:01:00.0: enabling device (0000 -> 0003)
    [ 14.159731] [drm] initializing kernel modesetting (TURKS 0x1002:0x6740 0x103C:0x3388).
    [ 14.159800] [drm] register mmio base: 0xC6500000
    [ 14.159801] [drm] register mmio size: 131072
    [ 14.290660] ATOM BIOS: HP/Flex
    [ 14.290702] radeon 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
    [ 14.290704] radeon 0000:01:00.0: GTT: 512M 0x0000000080000000 - 0x000000009FFFFFFF
    [ 14.290711] mtrr: no more MTRRs available
    [ 14.290712] [drm] Detected VRAM RAM=2048M, BAR=256M
    [ 14.290713] [drm] RAM width 128bits DDR
    [ 14.290751] [TTM] Zone kernel: Available graphics memory: 4064304 kiB
    [ 14.290752] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
    [ 14.290753] [TTM] Initializing pool allocator
    [ 14.290756] [TTM] Initializing DMA pool allocator
    [ 14.290772] [drm] radeon: 2048M of VRAM memory ready
    [ 14.290773] [drm] radeon: 512M of GTT memory ready.
    [ 14.290782] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 14.290783] [drm] Driver supports precise vblank timestamp query.
    [ 14.290824] radeon 0000:01:00.0: irq 54 for MSI/MSI-X
    [ 14.290833] radeon 0000:01:00.0: radeon: using MSI.
    [ 14.290871] [drm] radeon: irq initialized.
    [ 14.290874] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 14.291163] [drm] probing gen 2 caps for device 8086:101 = 2/0
    [ 14.291164] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
    [ 14.291229] [drm] Loading TURKS Microcode
    [ 14.373292] ------------[ cut here ]------------
    [ 14.373312] WARNING: at drivers/misc/lis3lv02d/lis3lv02d.c:215 lis3lv02d_get_pwron_wait+0x60/0x70 [lis3lv02d]()
    [ 14.373316] Hardware name: HP Pavilion dv6 Notebook PC
    [ 14.373318] device returned spurious data
    [ 14.373322] Modules linked in:
    [ 14.373325] joydev i915(+) radeon(+) iwlwifi ttm snd_hda_intel(+) snd_hda_codec cfg80211 intel_agp intel_gtt snd_hwdep snd_pcm snd_page_alloc snd_timer snd drm_kms_helper soundcore r8169 drm rts_pstor(C) acpi_cpufreq iTCO_wdt hp_accel(+) hp_wmi lis3lv02d psmouse sparse_keymap mperf sdhci_pci sdhci mmc_core coretemp kvm_intel rfkill mii iTCO_vendor_support pcspkr evdev input_polldev processor serio_raw lpc_ich i2c_algo_bit kvm i2c_i801 i2c_core wmi mei ac battery thermal video button microcode vboxdrv(O) fuse vhba(O) ext4 crc16 jbd2 mbcache xts gf128mul dm_crypt dm_mod sr_mod cdrom sd_mod xhci_hcd crc32c_intel ghash_clmulni_intel ahci libahci aesni_intel libata aes_x86_64 aes_generic ablk_helper cryptd scsi_mod ehci_hcd usbcore usb_common
    [ 14.373443] Pid: 262, comm: systemd-udevd Tainted: G C O 3.6.6-1-ARCH #1
    [ 14.373446] Call Trace:
    [ 14.373461] [<ffffffff81055c7f>] warn_slowpath_common+0x7f/0xc0
    [ 14.373474] [<ffffffff81055d76>] warn_slowpath_fmt+0x46/0x50
    [ 14.373484] [<ffffffffa00a722d>] ? lis3lv02d_get_odr+0x1d/0x50 [lis3lv02d]
    [ 14.373492] [<ffffffffa00a7730>] lis3lv02d_get_pwron_wait+0x60/0x70 [lis3lv02d]
    [ 14.373501] [<ffffffffa00a7797>] lis3lv02d_poweron+0x57/0xc0 [lis3lv02d]
    [ 14.373512] [<ffffffffa00a7fef>] lis3lv02d_init_device+0x16f/0x5c0 [lis3lv02d]
    [ 14.373525] [<ffffffffa020936d>] lis3lv02d_add+0xdd/0x1c8 [hp_accel]
    [ 14.373535] [<ffffffff812ba203>] acpi_device_probe+0x50/0x11d
    [ 14.373547] [<ffffffff8133037b>] driver_probe_device+0x7b/0x240
    [ 14.373556] [<ffffffff813305eb>] __driver_attach+0xab/0xb0
    [ 14.373564] [<ffffffff81330540>] ? driver_probe_device+0x240/0x240
    [ 14.373572] [<ffffffff8132e635>] bus_for_each_dev+0x55/0x90
    [ 14.373581] [<ffffffff8132febe>] driver_attach+0x1e/0x20
    [ 14.373588] [<ffffffff8132fa50>] bus_add_driver+0x190/0x260
    [ 14.373598] [<ffffffffa0053000>] ? 0xffffffffa0052fff
    [ 14.373606] [<ffffffff81330cb7>] driver_register+0x77/0x170
    [ 14.373614] [<ffffffffa0053000>] ? 0xffffffffa0052fff
    [ 14.373622] [<ffffffff812ba9e7>] acpi_bus_register_driver+0x3e/0x47
    [ 14.373632] [<ffffffffa0053019>] lis3lv02d_init_module+0x19/0x37 [hp_accel]
    [ 14.373639] [<ffffffff8100212a>] do_one_initcall+0x12a/0x180
    [ 14.373649] [<ffffffff810ba804>] sys_init_module+0x84/0x1e0
    [ 14.373659] [<ffffffff81499f2d>] system_call_fastpath+0x1a/0x1f
    [ 14.373664] ---[ end trace 430fd914b5483077 ]---
    [ 14.373768] hp_accel: driver loaded
    [ 14.453324] iwlwifi 0000:0d:00.0: loaded firmware version 39.31.5.1 build 35138
    [ 14.604352] scsi 7:0:0:0: Direct-Access Generic- xD/SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
    [ 14.604691] rts_pstor: device scan complete
    [ 14.605095] sd 7:0:0:0: [sdb] Attached SCSI removable disk
    [ 14.609019] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 14.795080] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 14.795262] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 14.795311] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 14.797486] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 14.797608] radeon 0000:01:00.0: WB enabled
    [ 14.797610] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0xffff8802519eac00
    [ 14.814126] [drm] ring test on 0 succeeded in 3 usecs
    [ 14.814334] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 14.814468] [drm] Radeon Display Connectors
    [ 14.820839] [drm] Internal thermal controller with fan control
    [ 14.822096] [drm] radeon: power management initialized
    [ 14.822210] No connectors reported connected with modes
    [ 14.822220] [drm] Cannot find any crtc or sizes - going 1024x768
    [ 14.823598] [drm] fb mappable at 0xA0142000
    [ 14.823599] [drm] vram apper at 0xA0000000
    [ 14.823600] [drm] size 3145728
    [ 14.823601] [drm] fb depth is 24
    [ 14.823601] [drm] pitch is 4096
    [ 14.826413] Console: switching to colour frame buffer device 128x48
    [ 14.828438] fb0: radeondrmfb frame buffer device
    [ 14.828439] drm: registered panic notifier
    [ 14.828442] [drm] Initialized radeon 2.24.0 20080528 for 0000:01:00.0 on minor 0
    [ 14.828706] pci 0000:00:00.0: Intel Sandybridge Chipset
    [ 14.828767] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 14.829718] pci 0000:00:00.0: detected 32768K stolen memory
    [ 14.829767] i915 0000:00:02.0: setting latency timer to 64
    [ 14.851123] i915 0000:00:02.0: irq 55 for MSI/MSI-X
    [ 14.851130] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 14.851131] [drm] Driver supports precise vblank timestamp query.
    [ 14.851828] vga_switcheroo: enabled
    [ 14.851870] radeon atpx: version is 1
    [ 14.851891] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 14.851893] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 14.921282] iwldvm: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    [ 14.921285] iwldvm: Copyright(c) 2003-2012 Intel Corporation
    [ 14.921299] iwlwifi 0000:0d:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 14.921300] iwlwifi 0000:0d:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 14.921301] iwlwifi 0000:0d:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 14.921302] iwlwifi 0000:0d:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
    [ 14.921304] iwlwifi 0000:0d:00.0: CONFIG_IWLWIFI_P2P disabled
    [ 14.921305] iwlwifi 0000:0d:00.0: Detected Intel(R) Centrino(R) Wireless-N 1000 BGN, REV=0x6C
    [ 14.921373] iwlwifi 0000:0d:00.0: L1 Disabled; Enabling L0S
    [ 14.942888] iwlwifi 0000:0d:00.0: device EEPROM VER=0x15d, CALIB=0x6
    [ 14.942890] iwlwifi 0000:0d:00.0: Device SKU: 0x50
    [ 14.942891] iwlwifi 0000:0d:00.0: Valid Tx ant: 0x1, Valid Rx ant: 0x3
    [ 14.942984] Registered led device: phy0-led
    [ 15.033425] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 15.287522] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 15.411605] fbcon: inteldrmfb (fb1) is primary device
    [ 15.411611] fbcon: Remapping primary device, fb1, to tty 1-63
    [ 15.416191] Linux media interface: v0.10
    [ 15.436279] Linux video capture interface: v2.00
    [ 15.574063] uvcvideo: Found UVC 1.00 device HP TrueVision HD (064e:d281)
    [ 15.577593] input: HP TrueVision HD as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input11
    [ 15.577817] usbcore: registered new interface driver uvcvideo
    [ 15.577818] USB Video Class driver (1.1.1)
    [ 15.834950] fb1: inteldrmfb frame buffer device
    [ 15.835080] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 15.835747] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
    [ 15.835789] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:2d/LNXVIDEO:00/input/input12
    [ 15.836455] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 15.836496] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input13
    [ 15.836612] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 1
    [ 17.671192] EXT4-fs (dm-0): re-mounted. Opts: (null)
    [ 17.771542] EXT4-fs (sda4): mounting ext3 file system using the ext4 subsystem
    [ 17.777389] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    Last edited by urza9814 (2012-12-02 17:50:25)

    Cdh wrote:
    All the x.org drivers/modules are compiled for a specific version of X. The older X driver will probably work, as long as it is not too old to be compatible at all, but you need to recompile it and it will automatically choose the 1.13 ABI of the installed x.org server as long as support for 1.13 is already in the driver.
    Personally I would just recommend upgrading to xf86-video-ati-git from aur instead of downgrading.
    I have the 1.13 Xorg server installed; I installed xf86-video-ati-git from the aur and X stopped loading with the following errors:
    [ 71.507] (II) intel(0): using device path '/dev/dri/card1'
    [ 71.507] (II) [KMS] Kernel modesetting enabled.
    [ 71.507] (WW) Falling back to old probe method for vesa
    [ 71.507] (WW) Falling back to old probe method for fbdev
    [ 71.507] (II) Loading sub module "fbdevhw"
    [ 71.507] (II) LoadModule: "fbdevhw"
    [ 71.508] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 71.508] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 71.508] compiled for 1.13.0, module version = 0.0.2
    [ 71.508] ABI class: X.Org Video Driver, version 13.1
    [ 71.508] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 71.508] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 71.508] (==) intel(0): RGB weight 888
    [ 71.508] (==) intel(0): Default visual is TrueColor
    [ 71.508] (--) intel(0): Integrated Graphics Chipset: Intel(R) Sandybridge Mobile (GT2)
    [ 71.508] (**) intel(0): Relaxed fencing enabled
    [ 71.508] (**) intel(0): Wait on SwapBuffers? enabled
    [ 71.508] (**) intel(0): Triple buffering? enabled
    [ 71.508] (**) intel(0): Framebuffer tiled
    [ 71.508] (**) intel(0): Pixmaps tiled
    [ 71.508] (**) intel(0): 3D buffers tiled
    [ 71.508] (**) intel(0): SwapBuffers wait enabled
    [ 71.508] (==) intel(0): video overlay key set to 0x101fe
    [ 71.508] (II) intel(0): Output LVDS1 has no monitor section
    [ 71.508] (--) intel(0): found backlight control interface /sys/class/backlight/intel_backlight
    [ 71.520] (II) intel(0): Output VGA1 has no monitor section
    [ 71.521] (II) intel(0): Output HDMI1 has no monitor section
    [ 71.563] (II) intel(0): Output DP1 has no monitor section
    [ 71.563] (II) intel(0): EDID for output LVDS1
    [ 71.563] (II) intel(0): Manufacturer: AUO Model: 22ec Serial#: 0
    [ 71.563] (II) intel(0): Year: 2009 Week: 1
    [ 71.563] (II) intel(0): EDID Version: 1.3
    [ 71.563] (II) intel(0): Digital Display Input
    [ 71.563] (II) intel(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 71.563] (II) intel(0): Gamma: 2.20
    [ 71.563] (II) intel(0): No DPMS capabilities specified
    [ 71.563] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 71.563] (II) intel(0): First detailed timing is preferred mode
    [ 71.563] (II) intel(0): redX: 0.620 redY: 0.340 greenX: 0.330 greenY: 0.570
    [ 71.563] (II) intel(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 71.563] (II) intel(0): Manufacturer's mask: 0
    [ 71.563] (II) intel(0): Supported detailed timing:
    [ 71.563] (II) intel(0): clock: 69.3 MHz Image Size: 344 x 193 mm
    [ 71.563] (II) intel(0): h_active: 1366 h_sync: 1398 h_sync_end 1422 h_blank_end 1432 h_border: 0
    [ 71.563] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 775 v_blanking: 806 v_border: 0
    [ 71.563] (II) intel(0): Unknown vendor-specific block f
    [ 71.563] (II) intel(0): AUO
    [ 71.563] (II) intel(0): B156XW02 V2
    [ 71.563] (II) intel(0): EDID (in hex):
    [ 71.563] (II) intel(0): 00ffffffffffff0006afec2200000000
    [ 71.563] (II) intel(0): 01130103802213780ac8959e57549226
    [ 71.563] (II) intel(0): 0f505400000001010101010101010101
    [ 71.563] (II) intel(0): 010101010101121b5642500026302018
    [ 71.563] (II) intel(0): 340058c1100000180000000f00000000
    [ 71.563] (II) intel(0): 00000000000000000020000000fe0041
    [ 71.563] (II) intel(0): 554f0a202020202020202020000000fe
    [ 71.563] (II) intel(0): 004231353658573032205632200a00c0
    [ 71.563] (II) intel(0): EDID vendor "AUO", prod id 8940
    [ 71.563] (II) intel(0): Printing DDC gathered Modelines:
    [ 71.563] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1398 1422 1432 768 771 775 806 -hsync -vsync (48.4 kHz eP)
    [ 71.564] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 71.564] (II) intel(0): Printing probed modes for output LVDS1
    [ 71.564] (II) intel(0): Modeline "1366x768"x60.0 69.30 1366 1398 1422 1432 768 771 775 806 -hsync -vsync (48.4 kHz eP)
    [ 71.564] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 71.564] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 71.564] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 71.564] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 71.577] (II) intel(0): EDID for output VGA1
    [ 71.577] (II) intel(0): EDID for output HDMI1
    [ 71.620] (II) intel(0): EDID for output DP1
    [ 71.620] (II) intel(0): Output LVDS1 connected
    [ 71.620] (II) intel(0): Output VGA1 disconnected
    [ 71.620] (II) intel(0): Output HDMI1 disconnected
    [ 71.620] (II) intel(0): Output DP1 disconnected
    [ 71.620] (II) intel(0): Using exact sizes for initial modes
    [ 71.620] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 71.620] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 71.620] (II) intel(0): Kernel page flipping support detected, enabling
    [ 71.620] (**) intel(0): Display dimensions: (340, 190) mm
    [ 71.620] (**) intel(0): DPI set to (102, 102)
    [ 71.620] (II) Loading sub module "fb"
    [ 71.620] (II) LoadModule: "fb"
    [ 71.620] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 71.620] (II) Module fb: vendor="X.Org Foundation"
    [ 71.620] compiled for 1.13.0, module version = 1.0.0
    [ 71.620] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 71.620] (II) Loading sub module "dri2"
    [ 71.620] (II) LoadModule: "dri2"
    [ 71.620] (II) Module "dri2" already built-in
    [ 71.620] (==) RADEON(G0): Depth 24, (--) framebuffer bpp 32
    [ 71.620] (II) RADEON(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 71.620] (==) RADEON(G0): Default visual is TrueColor
    [ 71.620] (==) RADEON(G0): RGB weight 888
    [ 71.620] (II) RADEON(G0): Using 8 bits per RGB (8 bit DAC)
    [ 71.620] (--) RADEON(G0): Chipset: "TURKS" (ChipID = 0x6740)
    [ 71.620] (II) Loading sub module "dri2"
    [ 71.620] (II) LoadModule: "dri2"
    [ 71.620] (II) Module "dri2" already built-in
    [ 71.620] (II) Loading sub module "exa"
    [ 71.620] (II) LoadModule: "exa"
    [ 71.620] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 71.620] (II) Module exa: vendor="X.Org Foundation"
    [ 71.620] compiled for 1.13.0, module version = 2.6.0
    [ 71.620] ABI class: X.Org Video Driver, version 13.1
    [ 71.620] (II) RADEON(G0): KMS Color Tiling: enabled
    [ 71.620] (II) RADEON(G0): KMS Color Tiling 2D: enabled
    [ 71.620] (II) RADEON(G0): KMS Pageflipping: enabled
    [ 71.620] (II) RADEON(G0): SwapBuffers wait for vsync: enabled
    [ 71.620] (WW) RADEON(G0): No outputs definitely connected, trying again...
    [ 71.620] (WW) RADEON(G0): Unable to find connected outputs - setting 1024x768 initial framebuffer
    [ 71.620] (II) RADEON(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 71.620] (EE)
    [ 71.620] (EE) Backtrace:
    [ 71.621] (EE) 0: X (xorg_backtrace+0x36) [0x58a326]
    [ 71.621] (EE) 1: X (0x400000+0x18e179) [0x58e179]
    [ 71.621] (EE) 2: /usr/lib/libpthread.so.0 (0x7f435a79e000+0xf1a0) [0x7f435a7ad1a0]
    [ 71.621] (EE) 3: X (xf86SetScrnInfoModes+0x275) [0x4acc35]
    [ 71.621] (EE) 4: X (xf86InitialConfiguration+0x15b8) [0x4b05e8]
    [ 71.621] (EE) 5: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x7f4357b18000+0x464b3) [0x7f4357b5e4b3]
    [ 71.621] (EE) 6: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x7f4357b18000+0x42124) [0x7f4357b5a124]
    [ 71.621] (EE) 7: X (InitOutput+0xb3e) [0x479fde]
    [ 71.621] (EE) 8: X (0x400000+0x26786) [0x426786]
    [ 71.621] (EE) 9: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7f435942c725]
    [ 71.621] (EE) 10: X (0x400000+0x26cad) [0x426cad]
    [ 71.621] (EE)
    [ 71.621] (EE) Segmentation fault at address 0x0
    [ 71.621]
    Fatal server error:
    [ 71.621] Caught signal 11 (Segmentation fault). Server aborting
    [ 71.621]
    [ 71.621] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 71.621] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 71.621] (EE)
    [ 71.627] Server terminated with error (1). Closing log file.
    I also tried installing xorg-server-git from the aur just to be sure both were as new as possible, but that didn't make any difference.
    What Cdh said, with one small note:  I love this new trend of blaming systemd for just about anything, when it's rarely it's fault.
    Probably should have included this in the original post: If I remove the systemd init line before booting, KDE comes up just fine (but my wifi doesn't work anymore, which is why I'm trying to switch to systemd). If I leave systemd on, it doesn't. Seems logical to assume systemd is somehow involved.
    Last edited by urza9814 (2012-11-17 00:18:31)

  • [Solved] Automatic power on

    Sorry if this is the wrong forum...
    My computer boots up on it's own after systemctl shutdown and complete poweroff. I haven't found anything in the logs that tells me why this is happening.
    uname -a
    Linux orange 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64 GNU/Linux
    Hardware:
    AsRock Z97E-ITX/ac
    Core i7-4790S
    G.SKILL Ripjaws X Series 16GB (2 x 8GB) 240-Pin DDR3 1866 Model F3-1866C9D-16GXM
    SeaSonic S12II 430B 430W ATX12V V2.3/EPS12V 80 PLUS BRONZE Certified Active PFC
    BitFenix Prodigy BFC-PRO-300-OOXKO-RP
    SanDisk SDSSDP128G
    I thought it may have been a Wake-on-Lan thing, however nothing on my LAN is sending magic packets to this box. Is there a log I can check to verify this isn't happening because of WOL?
    sudo ethtool enp0s25 | grep -i wake
    Supports Wake-on: pumbg
    Wake-on: g
    dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.16.3-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014
    [ 0.000000] Command line: initrd=\initramfs-linux.img root=/dev/sda2 rw
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ba17afff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ba17b000-0x00000000ba181fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ba182000-0x00000000bae27fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bae28000-0x00000000bb337fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bb338000-0x00000000cd408fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cd409000-0x00000000cd496fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cd497000-0x00000000cd4e3fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cd4e4000-0x00000000cd618fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cd619000-0x00000000cdffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cdfff000-0x00000000cdffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cf000000-0x00000000df1fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] e820: update [mem 0xb920c018-0xb921c057] usable ==> usable
    [ 0.000000] e820: update [mem 0xb91fb018-0xb920b857] usable ==> usable
    [ 0.000000] extended physical RAM map:
    [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x000000000009ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000b91fb017] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b91fb018-0x00000000b920b857] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b920b858-0x00000000b920c017] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b920c018-0x00000000b921c057] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b921c058-0x00000000ba17afff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000ba17b000-0x00000000ba181fff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000ba182000-0x00000000bae27fff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000bae28000-0x00000000bb337fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000bb338000-0x00000000cd408fff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000cd409000-0x00000000cd496fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000cd497000-0x00000000cd4e3fff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000cd4e4000-0x00000000cd618fff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000cd619000-0x00000000cdffefff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000cdfff000-0x00000000cdffffff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000cf000000-0x00000000df1fffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000041fdfffff] usable
    [ 0.000000] efi: EFI v2.31 by American Megatrends
    [ 0.000000] efi: ACPI=0xcd5e8000 ACPI 2.0=0xcd5e8000 SMBIOS=0xf04d0 MPS=0xfd5f0
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000008000) (0MB)
    [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000008000-0x000000000000e000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x000000000000e000-0x0000000000058000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
    [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000059000-0x000000000005f000) (0MB)
    [ 0.000000] efi: mem05: type=4, attr=0xf, range=[0x000000000005f000-0x0000000000060000) (0MB)
    [ 0.000000] efi: mem06: type=3, attr=0xf, range=[0x0000000000060000-0x000000000009f000) (0MB)
    [ 0.000000] efi: mem07: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f47000) (15MB)
    [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000001f47000-0x000000007fcc3000) (2013MB)
    [ 0.000000] efi: mem11: type=2, attr=0xf, range=[0x000000007fcc3000-0x0000000080000000) (3MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000080000000-0x00000000b7358000) (883MB)
    [ 0.000000] efi: mem13: type=2, attr=0xf, range=[0x00000000b7358000-0x00000000b7458000) (1MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x00000000b7458000-0x00000000b91fb000) (29MB)
    [ 0.000000] efi: mem15: type=2, attr=0xf, range=[0x00000000b91fb000-0x00000000b921d000) (0MB)
    [ 0.000000] efi: mem16: type=1, attr=0xf, range=[0x00000000b921d000-0x00000000ba17b000) (15MB)
    [ 0.000000] efi: mem17: type=10, attr=0xf, range=[0x00000000ba17b000-0x00000000ba182000) (0MB)
    [ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x00000000ba182000-0x00000000ba2db000) (1MB)
    [ 0.000000] efi: mem19: type=3, attr=0xf, range=[0x00000000ba2db000-0x00000000badef000) (11MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x00000000badef000-0x00000000badf4000) (0MB)
    [ 0.000000] efi: mem21: type=3, attr=0xf, range=[0x00000000badf4000-0x00000000badf8000) (0MB)
    [ 0.000000] efi: mem22: type=4, attr=0xf, range=[0x00000000badf8000-0x00000000bae0d000) (0MB)
    [ 0.000000] efi: mem23: type=3, attr=0xf, range=[0x00000000bae0d000-0x00000000bae1f000) (0MB)
    [ 0.000000] efi: mem24: type=4, attr=0xf, range=[0x00000000bae1f000-0x00000000bae28000) (0MB)
    [ 0.000000] efi: mem25: type=6, attr=0x800000000000000f, range=[0x00000000bae28000-0x00000000bb338000) (5MB)
    [ 0.000000] efi: mem26: type=4, attr=0xf, range=[0x00000000bb338000-0x00000000bb348000) (0MB)
    [ 0.000000] efi: mem27: type=7, attr=0xf, range=[0x00000000bb348000-0x00000000bb350000) (0MB)
    [ 0.000000] efi: mem28: type=2, attr=0xf, range=[0x00000000bb350000-0x00000000bb353000) (0MB)
    [ 0.000000] efi: mem29: type=7, attr=0xf, range=[0x00000000bb353000-0x00000000bb354000) (0MB)
    [ 0.000000] efi: mem30: type=2, attr=0xf, range=[0x00000000bb354000-0x00000000bb357000) (0MB)
    [ 0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000bb357000-0x00000000c0a02000) (86MB)
    [ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000c0a02000-0x00000000c0ef7000) (4MB)
    [ 0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000c0ef7000-0x00000000c0f8e000) (0MB)
    [ 0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000c0f8e000-0x00000000c1089000) (0MB)
    [ 0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000c1089000-0x00000000c1128000) (0MB)
    [ 0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000c1128000-0x00000000c114a000) (0MB)
    [ 0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000c114a000-0x00000000c1159000) (0MB)
    [ 0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000c1159000-0x00000000c1172000) (0MB)
    [ 0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000c1172000-0x00000000c117a000) (0MB)
    [ 0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000c117a000-0x00000000c1187000) (0MB)
    [ 0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000c1187000-0x00000000c118a000) (0MB)
    [ 0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000c118a000-0x00000000c1199000) (0MB)
    [ 0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000c1199000-0x00000000c119a000) (0MB)
    [ 0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000c119a000-0x00000000cad20000) (155MB)
    [ 0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000cad20000-0x00000000cad23000) (0MB)
    [ 0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000cad23000-0x00000000cad2c000) (0MB)
    [ 0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000cad2c000-0x00000000cad2f000) (0MB)
    [ 0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000cad2f000-0x00000000cad38000) (0MB)
    [ 0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000cad38000-0x00000000cad3c000) (0MB)
    [ 0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000cad3c000-0x00000000cad47000) (0MB)
    [ 0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000cad47000-0x00000000cad4b000) (0MB)
    [ 0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000cad4b000-0x00000000cad58000) (0MB)
    [ 0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000cad58000-0x00000000cad5b000) (0MB)
    [ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000cad5b000-0x00000000cad69000) (0MB)
    [ 0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000cad69000-0x00000000cad6b000) (0MB)
    [ 0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000cad6b000-0x00000000cadce000) (0MB)
    [ 0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000cadce000-0x00000000cadd0000) (0MB)
    [ 0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000cadd0000-0x00000000cb47c000) (6MB)
    [ 0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000cb47c000-0x00000000cb47d000) (0MB)
    [ 0.000000] efi: mem60: type=4, attr=0xf, range=[0x00000000cb47d000-0x00000000cce09000) (25MB)
    [ 0.000000] efi: mem61: type=7, attr=0xf, range=[0x00000000cce09000-0x00000000cd04e000) (2MB)
    [ 0.000000] efi: mem62: type=3, attr=0xf, range=[0x00000000cd04e000-0x00000000cd409000) (3MB)
    [ 0.000000] efi: mem63: type=0, attr=0xf, range=[0x00000000cd409000-0x00000000cd448000) (0MB)
    [ 0.000000] efi: mem64: type=0, attr=0xf, range=[0x00000000cd448000-0x00000000cd497000) (0MB)
    [ 0.000000] efi: mem65: type=7, attr=0xf, range=[0x00000000cd497000-0x00000000cd4e4000) (0MB)
    [ 0.000000] efi: mem66: type=10, attr=0xf, range=[0x00000000cd4e4000-0x00000000cd603000) (1MB)
    [ 0.000000] efi: mem67: type=10, attr=0xf, range=[0x00000000cd603000-0x00000000cd615000) (0MB)
    [ 0.000000] efi: mem68: type=10, attr=0xf, range=[0x00000000cd615000-0x00000000cd619000) (0MB)
    [ 0.000000] efi: mem69: type=6, attr=0x800000000000000f, range=[0x00000000cd619000-0x00000000cdd54000) (7MB)
    [ 0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000cdd54000-0x00000000cdd7f000) (0MB)
    [ 0.000000] efi: mem71: type=6, attr=0x800000000000000f, range=[0x00000000cdd7f000-0x00000000cdd81000) (0MB)
    [ 0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000cdd81000-0x00000000cdee5000) (1MB)
    [ 0.000000] efi: mem73: type=6, attr=0x800000000000000f, range=[0x00000000cdee5000-0x00000000cdee7000) (0MB)
    [ 0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000cdee7000-0x00000000cdf85000) (0MB)
    [ 0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000cdf85000-0x00000000cdf9d000) (0MB)
    [ 0.000000] efi: mem76: type=5, attr=0x800000000000000f, range=[0x00000000cdf9d000-0x00000000cdfff000) (0MB)
    [ 0.000000] efi: mem77: type=4, attr=0xf, range=[0x00000000cdfff000-0x00000000ce000000) (0MB)
    [ 0.000000] efi: mem78: type=7, attr=0xf, range=[0x0000000100000000-0x000000041fe00000) (12798MB)
    [ 0.000000] efi: mem79: type=0, attr=0x0, range=[0x00000000cf000000-0x00000000df200000) (258MB)
    [ 0.000000] efi: mem80: type=11, attr=0x8000000000000001, range=[0x00000000f8000000-0x00000000fc000000) (64MB)
    [ 0.000000] efi: mem81: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem82: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
    [ 0.000000] efi: mem83: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
    [ 0.000000] SMBIOS 2.8 present.
    [ 0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./Z97E-ITX/ac, BIOS P1.30 05/26/2014
    [ 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 = 0x41fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7C00000000 write-back
    [ 0.000000] 1 base 0400000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable
    [ 0.000000] 3 base 00D0000000 mask 7FF0000000 uncachable
    [ 0.000000] 4 base 00CF000000 mask 7FFF000000 uncachable
    [ 0.000000] 5 base 041FE00000 mask 7FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xcf000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xce000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd880-0x000fd88f] mapped at [ffff8800000fd880]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b23000, 0x01b23fff] PGTABLE
    [ 0.000000] BRK [0x01b24000, 0x01b24fff] PGTABLE
    [ 0.000000] BRK [0x01b25000, 0x01b25fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x41fc00000-0x41fdfffff]
    [ 0.000000] [mem 0x41fc00000-0x41fdfffff] page 2M
    [ 0.000000] BRK [0x01b26000, 0x01b26fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x41c000000-0x41fbfffff]
    [ 0.000000] [mem 0x41c000000-0x41fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x400000000-0x41bffffff]
    [ 0.000000] [mem 0x400000000-0x41bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xba17afff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0xb9ffffff] page 2M
    [ 0.000000] [mem 0xba000000-0xba17afff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xba182000-0xbae27fff]
    [ 0.000000] [mem 0xba182000-0xba1fffff] page 4k
    [ 0.000000] [mem 0xba200000-0xbadfffff] page 2M
    [ 0.000000] [mem 0xbae00000-0xbae27fff] page 4k
    [ 0.000000] BRK [0x01b27000, 0x01b27fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbb338000-0xcd408fff]
    [ 0.000000] [mem 0xbb338000-0xbb3fffff] page 4k
    [ 0.000000] [mem 0xbb400000-0xcd3fffff] page 2M
    [ 0.000000] [mem 0xcd400000-0xcd408fff] page 4k
    [ 0.000000] BRK [0x01b28000, 0x01b28fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xcd497000-0xcd4e3fff]
    [ 0.000000] [mem 0xcd497000-0xcd4e3fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xcdfff000-0xcdffffff]
    [ 0.000000] [mem 0xcdfff000-0xcdffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    [ 0.000000] [mem 0x100000000-0x3ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x7fcc3000-0x7fffffff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000CD5E8000 000024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 0x00000000CD5E8088 00008C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000CD5F8528 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000CD5E81A8 01037D (v02 ALASKA A M I 00000121 INTL 20120711)
    [ 0.000000] ACPI: FACS 0x00000000CD618F80 000040
    [ 0.000000] ACPI: APIC 0x00000000CD5F8638 000072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000CD5F86B0 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 0x00000000CD5F86F8 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x00000000CD5F8C38 000B74 (v01 CpuRef CpuSsdt 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x00000000CD5F97B0 0001C7 (v01 PmRef LakeTiny 00003000 INTL 20051117)
    [ 0.000000] ACPI: MCFG 0x00000000CD5F9978 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x00000000CD5F99B8 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000CD5F99F0 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000CD5F9D60 005B5E (v01 SaSsdt SaSsdt 00003000 INTL 20120711)
    [ 0.000000] ACPI: AAFT 0x00000000CD5FF8C0 000392 (v01 ALASKA OEMAAFT 01072009 MSFT 00000097)
    [ 0.000000] ACPI: BGRT 0x00000000CD5FFC58 000038 (v00 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DMAR 0x00000000CD5FFC90 0000B8 (v01 INTEL BDW 00000001 INTL 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000041fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x41fdfffff]
    [ 0.000000] NODE_DATA [mem 0x41fdf6000-0x41fdfafff]
    [ 0.000000] [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040f800000-ffff88041f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x41fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00057fff]
    [ 0.000000] node 0: [mem 0x00059000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0xba17afff]
    [ 0.000000] node 0: [mem 0xba182000-0xbae27fff]
    [ 0.000000] node 0: [mem 0xbb338000-0xcd408fff]
    [ 0.000000] node 0: [mem 0xcd497000-0xcd4e3fff]
    [ 0.000000] node 0: [mem 0xcdfff000-0xcdffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x41fdfffff]
    [ 0.000000] On node 0 totalpages: 4115677
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 24 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13053 pages used for memmap
    [ 0.000000] DMA32 zone: 835392 pages, LIFO batch:31
    [ 0.000000] Normal zone: 51192 pages used for memmap
    [ 0.000000] Normal zone: 3276288 pages, LIFO batch:31
    [ 0.000000] Reserving Intel graphics stolen memory at 0xcf200000-0xdf1fffff
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 8, 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: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb91fb000-0xb91fbfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb920b000-0xb920bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb920c000-0xb920cfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb921c000-0xb921cfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xba17b000-0xba181fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbae28000-0xbb337fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcd409000-0xcd496fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcd4e4000-0xcd618fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcd619000-0xcdffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xce000000-0xceffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcf000000-0xdf1fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf200000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xdf200000-0xf7ffffff] 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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88041fa00000 s86784 r8192 d23808 u524288
    [ 0.000000] pcpu-alloc: s86784 r8192 d23808 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4051344
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda2 rw
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 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: 15906728K/16462708K available (5335K kernel code, 887K rwdata, 1688K rodata, 1128K init, 1164K bss, 555980K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:8448 nr_irqs:712 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 66060288 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 3192.887 MHz processor
    [ 0.000021] Calibrating delay loop (skipped), value calculated using timer frequency.. 6388.84 BogoMIPS (lpj=10642956)
    [ 0.000023] pid_max: default: 32768 minimum: 301
    [ 0.000027] ACPI: Core revision 20140424
    [ 0.011634] ACPI: All ACPI Tables successfully acquired
    [ 0.013032] Security Framework initialized
    [ 0.013036] Yama: becoming mindful.
    [ 0.013727] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.015896] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.016815] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.016827] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.017002] Initializing cgroup subsys memory
    [ 0.017015] Initializing cgroup subsys devices
    [ 0.017019] Initializing cgroup subsys freezer
    [ 0.017021] Initializing cgroup subsys net_cls
    [ 0.017024] Initializing cgroup subsys blkio
    [ 0.017040] CPU: Physical Processor ID: 0
    [ 0.017041] CPU: Processor Core ID: 0
    [ 0.017800] mce: CPU supports 9 MCE banks
    [ 0.017810] CPU0: Thermal monitoring enabled (TM1)
    [ 0.017820] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    tlb_flushall_shift: 6
    [ 0.017888] Freeing SMP alternatives memory: 20K (ffffffff819f9000 - ffffffff819fe000)
    [ 0.022945] ftrace: allocating 20438 entries in 80 pages
    [ 0.029039] dmar: Host address width 39
    [ 0.029041] dmar: DRHD base: 0x000000fed90000 flags: 0x0
    [ 0.029048] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
    [ 0.029049] dmar: DRHD base: 0x000000fed91000 flags: 0x1
    [ 0.029052] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap d2008c20660462 ecap f010da
    [ 0.029053] dmar: RMRR base: 0x000000cdea8000 end: 0x000000cdeb6fff
    [ 0.029054] dmar: RMRR base: 0x000000cf000000 end: 0x000000df1fffff
    [ 0.029119] IOAPIC id 8 under DRHD base 0xfed91000 IOMMU 1
    [ 0.029119] HPET id 0 under DRHD base 0xfed91000
    [ 0.029120] Queued invalidation will be enabled to support x2apic and Intr-remapping.
    [ 0.029121] Your BIOS is broken and requested that x2apic be disabled.
    This will slightly decrease performance.
    Use 'intremap=no_x2apic_optout' to override BIOS request.
    [ 0.029234] Enabled IRQ remapping in xapic mode
    [ 0.029235] x2apic not enabled, IRQ remapping is in xapic mode
    [ 0.029621] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.062654] smpboot: CPU0: Intel(R) Core(TM) i7-4790S CPU @ 3.20GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.062659] TSC deadline timer enabled
    [ 0.062674] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.062688] ... version: 3
    [ 0.062689] ... bit width: 48
    [ 0.062690] ... generic registers: 8
    [ 0.062690] ... value mask: 0000ffffffffffff
    [ 0.062691] ... max period: 0000ffffffffffff
    [ 0.062691] ... fixed-purpose events: 3
    [ 0.062692] ... event mask: 00000007000000ff
    [ 0.086120] x86: Booting SMP configuration:
    [ 0.086122] .... node #0, CPUs: #1
    [ 0.100088] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.106787] #2 #3
    [ 0.141578] x86: Booted up 1 node, 4 CPUs
    [ 0.141580] smpboot: Total of 4 processors activated (25553.39 BogoMIPS)
    [ 0.144719] devtmpfs: initialized
    [ 0.146802] PM: Registering ACPI NVS region [mem 0xba17b000-0xba181fff] (28672 bytes)
    [ 0.146804] PM: Registering ACPI NVS region [mem 0xcd4e4000-0xcd618fff] (1265664 bytes)
    [ 0.147353] pinctrl core: initialized pinctrl subsystem
    [ 0.147384] RTC time: 19:48:39, date: 09/19/14
    [ 0.147417] NET: Registered protocol family 16
    [ 0.147489] cpuidle: using governor ladder
    [ 0.147490] cpuidle: using governor menu
    [ 0.147520] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.147521] ACPI: bus type PCI registered
    [ 0.147522] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.147568] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.147570] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.147624] PCI: Using configuration type 1 for base access
    [ 0.161830] ACPI: Added _OSI(Module Device)
    [ 0.161831] ACPI: Added _OSI(Processor Device)
    [ 0.161832] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.161833] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.178557] ACPI: Executed 15 blocks of module-level executable AML code
    [ 0.214414] ACPI: Dynamic OEM Table Load:
    [ 0.214419] ACPI: SSDT 0xFFFF8804090CC400 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.225220] ACPI: Dynamic OEM Table Load:
    [ 0.225224] ACPI: SSDT 0xFFFF880409258800 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.238472] ACPI: Dynamic OEM Table Load:
    [ 0.238475] ACPI: SSDT 0xFFFF880409227A00 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.252414] ACPI: Interpreter enabled
    [ 0.252420] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    [ 0.252425] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    [ 0.252438] ACPI: (supports S0 S3 S4 S5)
    [ 0.252439] ACPI: Using IOAPIC for interrupt routing
    [ 0.252481] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.252779] ACPI: Power Resource [PG00] (on)
    [ 0.261971] ACPI: Power Resource [PG01] (on)
    [ 0.275042] ACPI: Power Resource [PG02] (on)
    [ 0.295137] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.295141] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.295354] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug]
    [ 0.295545] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
    [ 0.295939] PCI host bridge to bus 0000:00
    [ 0.295941] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.295942] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.295944] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.295945] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.295946] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.295947] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.295948] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.295949] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.295950] pci_bus 0000:00: root bus resource [mem 0xdf200000-0xfeafffff]
    [ 0.295955] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
    [ 0.296022] pci 0000:00:02.0: [8086:0412] type 00 class 0x030000
    [ 0.296030] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
    [ 0.296035] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.296038] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.296118] pci 0000:00:14.0: [8086:8cb1] type 00 class 0x0c0330
    [ 0.296133] pci 0000:00:14.0: reg 0x10: [mem 0xf7f20000-0xf7f2ffff 64bit]
    [ 0.296186] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.296228] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.296257] pci 0000:00:16.0: [8086:8cba] type 00 class 0x078000
    [ 0.296274] pci 0000:00:16.0: reg 0x10: [mem 0xf7f3a000-0xf7f3a00f 64bit]
    [ 0.296329] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.296393] pci 0000:00:19.0: [8086:15a1] type 00 class 0x020000
    [ 0.296407] pci 0000:00:19.0: reg 0x10: [mem 0xf7f00000-0xf7f1ffff]
    [ 0.296414] pci 0000:00:19.0: reg 0x14: [mem 0xf7f38000-0xf7f38fff]
    [ 0.296421] pci 0000:00:19.0: reg 0x18: [io 0xf080-0xf09f]
    [ 0.296472] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.296511] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.296539] pci 0000:00:1a.0: [8086:8cad] type 00 class 0x0c0320
    [ 0.296557] pci 0000:00:1a.0: reg 0x10: [mem 0xf7f37000-0xf7f373ff]
    [ 0.296636] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.296676] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.296703] pci 0000:00:1b.0: [8086:8ca0] type 00 class 0x040300
    [ 0.296715] pci 0000:00:1b.0: reg 0x10: [mem 0xf7f30000-0xf7f33fff 64bit]
    [ 0.296767] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.296806] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.296830] pci 0000:00:1c.0: [8086:8c90] type 01 class 0x060400
    [ 0.296889] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.296925] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.296950] pci 0000:00:1c.3: [8086:8c96] type 01 class 0x060400
    [ 0.297009] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.297044] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.297075] pci 0000:00:1d.0: [8086:8ca6] type 00 class 0x0c0320
    [ 0.297093] pci 0000:00:1d.0: reg 0x10: [mem 0xf7f36000-0xf7f363ff]
    [ 0.297172] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.297214] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.297241] pci 0000:00:1f.0: [8086:8cc4] type 00 class 0x060100
    [ 0.297383] pci 0000:00:1f.2: [8086:8c82] type 00 class 0x010601
    [ 0.297396] pci 0000:00:1f.2: reg 0x10: [io 0xf0d0-0xf0d7]
    [ 0.297402] pci 0000:00:1f.2: reg 0x14: [io 0xf0c0-0xf0c3]
    [ 0.297408] pci 0000:00:1f.2: reg 0x18: [io 0xf0b0-0xf0b7]
    [ 0.297414] pci 0000:00:1f.2: reg 0x1c: [io 0xf0a0-0xf0a3]
    [ 0.297420] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.297425] pci 0000:00:1f.2: reg 0x24: [mem 0xf7f35000-0xf7f357ff]
    [ 0.297457] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.297508] pci 0000:00:1f.3: [8086:8ca2] type 00 class 0x0c0500
    [ 0.297520] pci 0000:00:1f.3: reg 0x10: [mem 0xf7f34000-0xf7f340ff 64bit]
    [ 0.297537] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.297646] acpiphp: Slot [1] registered
    [ 0.297650] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.297719] pci 0000:02:00.0: [14e4:43b1] type 00 class 0x028000
    [ 0.297737] pci 0000:02:00.0: reg 0x10: [mem 0xf7e00000-0xf7e07fff 64bit]
    [ 0.297749] pci 0000:02:00.0: reg 0x18: [mem 0xf7c00000-0xf7dfffff 64bit]
    [ 0.297843] pci 0000:02:00.0: supports D1 D2
    [ 0.297844] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.297874] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.305207] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.305212] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7efffff]
    [ 0.305225] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.305766] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.305798] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.305829] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.305858] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.305888] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.305918] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.305950] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.305979] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
    [ 0.306079] ACPI: Enabled 5 GPEs in block 00 to 3F
    [ 0.306148] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.306150] vgaarb: loaded
    [ 0.306150] vgaarb: bridge control possible 0000:00:02.0
    [ 0.306196] PCI: Using ACPI for IRQ routing
    [ 0.307453] PCI: pci_cache_line_size set to 64 bytes
    [ 0.307488] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.307489] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
    [ 0.307490] e820: reserve RAM buffer [mem 0xb91fb018-0xbbffffff]
    [ 0.307491] e820: reserve RAM buffer [mem 0xb920c018-0xbbffffff]
    [ 0.307492] e820: reserve RAM buffer [mem 0xba17b000-0xbbffffff]
    [ 0.307493] e820: reserve RAM buffer [mem 0xbae28000-0xbbffffff]
    [ 0.307494] e820: reserve RAM buffer [mem 0xcd409000-0xcfffffff]
    [ 0.307495] e820: reserve RAM buffer [mem 0xcd4e4000-0xcfffffff]
    [ 0.307496] e820: reserve RAM buffer [mem 0xce000000-0xcfffffff]
    [ 0.307497] e820: reserve RAM buffer [mem 0x41fe00000-0x41fffffff]
    [ 0.307564] NetLabel: Initializing
    [ 0.307565] NetLabel: domain hash size = 128
    [ 0.307565] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.307573] NetLabel: unlabeled traffic allowed by default
    [ 0.307587] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.307591] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.309610] Switched to clocksource hpet
    [ 0.312717] pnp: PnP ACPI init
    [ 0.312724] ACPI: bus type PNP registered
    [ 0.312787] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.312790] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.312845] system 00:01: [io 0x0800-0x087f] has been reserved
    [ 0.312847] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.312866] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.312889] system 00:03: [io 0x1854-0x1857] has been reserved
    [ 0.312891] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.312942] system 00:04: [io 0x0290-0x029f] has been reserved
    [ 0.312943] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.313026] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.313028] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.313331] system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.313333] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.313334] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.313335] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.313337] system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.313338] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.313339] system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved
    [ 0.313340] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.313341] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.313343] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.313344] system 00:06: [mem 0xf7fe0000-0xf7feffff] has been reserved
    [ 0.313345] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.313447] pnp: PnP ACPI: found 7 devices
    [ 0.313447] ACPI: bus type PNP unregistered
    [ 0.319249] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.319258] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.319262] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7efffff]
    [ 0.319268] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.319269] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.319270] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.319271] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.319272] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.319273] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.319274] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.319275] pci_bus 0000:00: resource 11 [mem 0xdf200000-0xfeafffff]
    [ 0.319276] pci_bus 0000:02: resource 1 [mem 0xf7c00000-0xf7efffff]
    [ 0.319294] NET: Registered protocol family 2
    [ 0.319438] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.319577] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.319669] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.319682] TCP: reno registered
    [ 0.319694] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.319727] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.319776] NET: Registered protocol family 1
    [ 0.319784] pci 0000:00:02.0: Boot video device
    [ 0.353050] PCI: CLS 64 bytes, default 64
    [ 0.353076] Unpacking initramfs...
    [ 0.393621] Freeing initrd memory: 3316K (ffff88007fcc3000 - ffff880080000000)
    [ 0.393632] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.393633] software IO TLB [mem 0xbca02000-0xc0a02000] (64MB) mapped at [ffff8800bca02000-ffff8800c0a01fff]
    [ 0.393771] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [ 0.393797] Scanning for low memory corruption every 60 seconds
    [ 0.393940] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.394152] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.394969] zbud: loaded
    [ 0.395073] VFS: Disk quotas dquot_6.5.2
    [ 0.395094] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.395162] msgmni has been set to 31496
    [ 0.395194] Key type big_key registered
    [ 0.395287] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.395328] io scheduler noop registered
    [ 0.395330] io scheduler deadline registered
    [ 0.395360] io scheduler cfq registered (default)
    [ 0.395457] pcieport 0000:00:1c.0: irq 42 for MSI/MSI-X
    [ 0.395558] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
    [ 0.395616] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.395620] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.395628] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 0.395629] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.395632] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 0.395640] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.395649] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.395670] efifb: probing for efifb
    [ 0.395679] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90005c00000, using 3072k, total 3072k
    [ 0.395679] efifb: mode is 1024x768x32, linelength=4096, pages=1
    [ 0.395680] efifb: scrolling: redraw
    [ 0.395681] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.396934] Console: switching to colour frame buffer device 128x48
    [ 0.398043] fb0: EFI VGA frame buffer device
    [ 0.398048] intel_idle: MWAIT substates: 0x42120
    [ 0.398049] intel_idle: v0.4 model 0x3C
    [ 0.398050] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.398168] GHES: HEST is not enabled!
    [ 0.398218] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.398492] Linux agpgart interface v0.103
    [ 0.398523] rtc_cmos 00:02: RTC can wake from S4
    [ 0.398622] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 0.398645] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.398651] Intel P-state driver initializing.
    [ 0.398660] Intel pstate controlling: cpu 0
    [ 0.398672] Intel pstate controlling: cpu 1
    [ 0.398683] Intel pstate controlling: cpu 2
    [ 0.398694] Intel pstate controlling: cpu 3
    [ 0.398766] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.399037] TCP: cubic registered
    [ 0.399270] NET: Registered protocol family 10
    [ 0.399752] NET: Registered protocol family 17
    [ 0.400581] registered taskstats version 1
    [ 0.401563] Magic number: 14:250:850
    [ 0.401721] rtc_cmos 00:02: setting system clock to 2014-09-19 19:48:40 UTC (1411156120)
    [ 0.401936] PM: Hibernation image not present or could not be loaded.
    [ 0.403806] Freeing unused kernel memory: 1128K (ffffffff818df000 - ffffffff819f9000)
    [ 0.403810] Write protecting the kernel read-only data: 8192k
    [ 0.408984] Freeing unused kernel memory: 796K (ffff880001539000 - ffff880001600000)
    [ 0.410899] Freeing unused kernel memory: 360K (ffff8800017a6000 - ffff880001800000)
    [ 0.416060] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.416785] systemd-udevd[57]: starting version 216
    [ 0.435123] sdhci: Secure Digital Host Controller Interface driver
    [ 0.435125] sdhci: Copyright(c) Pierre Ossman
    [ 0.435885] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.440826] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.446398] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.448931] ACPI: bus type USB registered
    [ 0.448946] usbcore: registered new interface driver usbfs
    [ 0.448954] usbcore: registered new interface driver hub
    [ 0.449304] SCSI subsystem initialized
    [ 0.449756] usbcore: registered new device driver usb
    [ 0.450149] libata version 3.00 loaded.
    [ 0.450196] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.450306] ehci-pci: EHCI PCI platform driver
    [ 0.450409] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.450413] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.450424] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.454327] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.454338] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7f37000
    [ 0.463084] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.463225] hub 1-0:1.0: USB hub found
    [ 0.463229] hub 1-0:1.0: 2 ports detected
    [ 0.463383] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.463387] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.463396] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.467306] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.467316] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7f36000
    [ 0.476442] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.476537] hub 2-0:1.0: USB hub found
    [ 0.476540] hub 2-0:1.0: 2 ports detected
    [ 0.476636] ahci 0000:00:1f.2: version 3.0
    [ 0.476721] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X
    [ 0.476750] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
    [ 0.476751] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
    [ 0.477236] scsi0 : ahci
    [ 0.477324] scsi1 : ahci
    [ 0.477397] scsi2 : ahci
    [ 0.477470] scsi3 : ahci
    [ 0.477541] scsi4 : ahci
    [ 0.477613] scsi5 : ahci
    [ 0.477640] ata1: SATA max UDMA/133 abar m2048@0xf7f35000 port 0xf7f35100 irq 44
    [ 0.477641] ata2: DUMMY
    [ 0.477642] ata3: DUMMY
    [ 0.477642] ata4: DUMMY
    [ 0.477643] ata5: DUMMY
    [ 0.477644] ata6: DUMMY
    [ 0.477738] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.477742] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.477857] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.477873] xhci_hcd 0000:00:14.0: irq 45 for MSI/MSI-X
    [ 0.478054] hub 3-0:1.0: USB hub found
    [ 0.478078] hub 3-0:1.0: 14 ports detected
    [ 0.480639] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.480643] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 0.480746] hub 4-0:1.0: USB hub found
    [ 0.480757] hub 4-0:1.0: 6 ports detected
    [ 0.770048] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 0.796713] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.797060] ata1.00: ATA-9: SanDisk SDSSDP128G, 2.0.0, max UDMA/133
    [ 0.797062] ata1.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 31/32)
    [ 0.797343] ata1.00: configured for UDMA/133
    [ 0.797478] scsi 0:0:0:0: Direct-Access ATA SanDisk SDSSDP12 0 PQ: 0 ANSI: 5
    [ 0.811788] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [ 0.811876] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.811878] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.811901] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.814450] sda: sda1 sda2
    [ 0.814696] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.893898] hub 1-1:1.0: USB hub found
    [ 0.894006] hub 1-1:1.0: 6 ports detected
    [ 0.899853] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.000215] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.017692] systemd[1]: systemd 216 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN )
    [ 1.017779] systemd[1]: Detected architecture 'x86-64'.
    [ 1.018570] systemd[1]: Set hostname to <orange>.
    [ 1.124078] hub 2-1:1.0: USB hub found
    [ 1.124180] hub 2-1:1.0: 8 ports detected
    [ 1.137229] systemd[1]: [/usr/lib/systemd/system/systemd-journal-upload.service:20] Unknown lvalue 'After' in section 'Install'
    [ 1.147310] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 1.147587] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 1.147622] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 1.147630] systemd[1]: Starting Remote File Systems.
    [ 1.147680] systemd[1]: Reached target Remote File Systems.
    [ 1.147686] systemd[1]: Expecting device sys-subsystem-net-devices-enp0s25.device...
    [ 1.147730] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 1.147747] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 1.147753] systemd[1]: Starting Paths.
    [ 1.147788] systemd[1]: Reached target Paths.
    [ 1.147800] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 1.147882] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 1.147890] systemd[1]: Starting Encrypted Volumes.
    [ 1.147925] systemd[1]: Reached target Encrypted Volumes.
    [ 1.147931] systemd[1]: Starting System Time Synchronized.
    [ 1.147967] systemd[1]: Reached target System Time Synchronized.
    [ 1.147973] systemd[1]: Starting Swap.
    [ 1.148004] systemd[1]: Reached target Swap.
    [ 1.148009] systemd[1]: Starting EFI System Partition Automount.
    [ 1.148077] systemd[1]: Set up automount EFI System Partition Automount.
    [ 1.148085] systemd[1]: Expecting device dev-disk-by\x2duuid-B62D\x2d52A9.device...
    [ 1.148122] systemd[1]: Starting Root Slice.
    [ 1.150663] systemd[1]: Created slice Root Slice.
    [ 1.150670] systemd[1]: Starting User and Session Slice.
    [ 1.150798] systemd[1]: Created slice User and Session Slice.
    [ 1.150806] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 1.150863] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 1.150869] systemd[1]: Starting Delayed Shutdown Socket.
    [ 1.150914] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 1.150920] systemd[1]: Starting Journal Socket (/dev/log).
    [ 1.150967] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 1.150973] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 1.151020] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 1.151026] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 1.151071] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 1.151079] systemd[1]: Starting udev Control Socket.
    [ 1.151121] systemd[1]: Listening on udev Control Socket.
    [ 1.151128] systemd[1]: Starting udev Kernel Socket.
    [ 1.151168] systemd[1]: Listening on udev Kernel Socket.
    [ 1.151175] systemd[1]: Starting Journal Socket.
    [ 1.151219] systemd[1]: Listening on Journal Socket.
    [ 1.151230] systemd[1]: Starting System Slice.
    [ 1.151354] systemd[1]: Created slice System Slice.
    [ 1.151362] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 1.151494] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 1.151707] systemd[1]: Mounting Temporary Directory...
    [ 1.152121] systemd[1]: Starting system-netctl.slice.
    [ 1.152264] systemd[1]: Created slice system-netctl.slice.
    [ 1.152275] systemd[1]: Starting system-getty.slice.
    [ 1.152417] systemd[1]: Created slice system-getty.slice.
    [ 1.152436] systemd[1]: Starting Collect Read-Ahead Data...
    [ 1.153473] systemd[1]: Starting Replay Read-Ahead Data...
    [ 1.153730] systemd[1]: Starting Device-mapper event daemon...
    [ 1.154055] systemd[1]: Started Device-mapper event daemon.
    [ 1.154086] systemd[1]: Starting LVM2 metadata daemon...
    [ 1.154370] systemd[1]: Started LVM2 metadata daemon.
    [ 1.154395] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
    [ 1.154669] systemd[1]: Starting Availability of block devices...
    [ 1.154920] systemd-readahead[130]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    [ 1.155065] systemd[1]: Mounting Debug File System...
    [ 1.155311] systemd[1]: Starting udev Coldplug all Devices...
    [ 1.155573] systemd[1]: Mounting POSIX Message Queue File System...
    [ 1.155836] systemd[1]: Mounting Huge Pages File System...
    [ 1.168250] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 1.168512] systemd[1]: Starting Journal Service...
    [ 1.169604] systemd[1]: Started Journal Service.
    [ 1.191704] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 1.219525] FS-Cache: Loaded
    [ 1.223647] RPC: Registered named UNIX socket transport module.
    [ 1.223649] RPC: Registered udp transport module.
    [ 1.223650] RPC: Registered tcp transport module.
    [ 1.223650] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 1.231352] FS-Cache: Netfs 'nfs' registered for caching
    [ 1.237304] systemd-udevd[166]: starting version 216
    [ 1.283764] usb 3-3: new low-speed USB device number 2 using xhci_hcd
    [ 1.306589] wmi: Mapper loaded
    [ 1.309274] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 1.309277] ACPI: Power Button [PWRB]
    [ 1.309305] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    [ 1.309307] ACPI: Sleep Button [SLPB]
    [ 1.309333] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 1.309335] ACPI: Power Button [PWRF]
    [ 1.310987] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 1.312733] pps_core: LinuxPPS API ver. 1 registered
    [ 1.312735] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 1.315816] PTP clock support registered
    [ 1.320180] mei_me 0000:00:16.0: irq 46 for MSI/MSI-X
    [ 1.320846] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 1.320847] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
    [ 1.321269] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.324351] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 1.324366] e1000e 0000:00:19.0: irq 47 for MSI/MSI-X
    [ 1.326250] [drm] Initialized drm 1.1.0 20060810
    [ 1.341206] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 1.343715] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x19
    [ 1.351764] microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x19
    [ 1.351773] microcode: CPU2 sig=0x306c3, pf=0x2, revision=0x19
    [ 1.351782] microcode: CPU3 sig=0x306c3, pf=0x2, revision=0x19
    [ 1.351824] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 1.366220] AVX2 version of gcm_enc/dec engaged.
    [ 1.397176] tsc: Refined TSC clocksource calibration: 3192.606 MHz
    [ 1.466629] usb 3-3: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.466633] usb 3-3: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.492814] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 1.492816] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) d0:50:99:26:79:d6
    [ 1.492817] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 1.492845] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
    [ 1.492882] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
    [ 1.493156] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
    [ 1.493239] [drm] Memory usable by graphics device = 2048M
    [ 1.493240] [drm] Replacing VGA console driver
    [ 1.493242] checking generic (e0000000 300000) vs hw (e0000000 10000000)
    [ 1.493243] fb: switching to inteldrmfb from EFI VGA
    [ 1.493253] Console: switching to colour dummy device 80x25
    [ 1.504810] systemd-udevd[170]: renamed network interface eth0 to enp0s25
    [ 1.504900] sound hdaudioC0D0: ALC1150: SKU not ready 0x00000000
    [ 1.505270] sound hdaudioC0D0: autoconfig: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
    [ 1.505271] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 1.505272] sound hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
    [ 1.505273] sound hdaudioC0D0: mono: mono_out=0x0
    [ 1.505274] sound hdaudioC0D0: dig-out=0x1e/0x0
    [ 1.505275] sound hdaudioC0D0: inputs:
    [ 1.505276] sound hdaudioC0D0: Front Mic=0x19
    [ 1.505278] sound hdaudioC0D0: Rear Mic=0x18
    [ 1.505279] sound hdaudioC0D0: Line=0x1a
    [ 1.510671] i915 0000:00:02.0: irq 49 for MSI/MSI-X
    [ 1.510679] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 1.510679] [drm] Driver supports precise vblank timestamp query.
    [ 1.510699] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.515757] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input7
    [ 1.515927] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 1.516008] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 1.516048] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 1.516091] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 1.516139] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 1.516191] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    [ 1.517460] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    [ 1.555036] systemd-journald[141]: Received request to flush runtime journal from PID 1
    [ 1.624079] usb 3-4: new full-speed USB device number 3 using xhci_hcd
    [ 1.710425] fbcon: inteldrmfb (fb0) is primary device
    [ 1.722268] Console: switching to colour frame buffer device 240x67
    [ 1.725816] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 1.725816] i915 0000:00:02.0: registered panic notifier
    [ 1.778551] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 1.778867] acpi device:16: registered as cooling_device5
    [ 1.778919] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15
    [ 1.778998] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.957666] usb 3-11: new full-speed USB device number 4 using xhci_hcd
    [ 2.135204] random: nonblocking pool is initialized
    [ 2.157015] usbcore: registered new interface driver usbhid
    [ 2.157017] usbhid: USB HID core driver
    [ 2.157821] e1000e 0000:00:19.0: irq 47 for MSI/MSI-X
    [ 2.213415] input: USB USB Keykoard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.0/0003:1C4F:0002.0001/input/input16
    [ 2.213465] hid-generic 0003:1C4F:0002.0001: input,hidraw0: USB HID v1.10 Keyboard [USB USB Keykoard] on usb-0000:00:14.0-3/input0
    [ 2.213552] input: USB USB Keykoard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.1/0003:1C4F:0002.0002/input/input17
    [ 2.213611] hid-generic 0003:1C4F:0002.0002: input,hidraw1: USB HID v1.10 Device [USB USB Keykoard] on usb-0000:00:14.0-3/input1
    [ 2.213684] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/0003:046D:C52F.0003/input/input18
    [ 2.213794] hid-generic 0003:046D:C52F.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-4/input0
    [ 2.214377] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.1/0003:046D:C52F.0004/input/input19
    [ 2.214448] hid-generic 0003:046D:C52F.0004: input,hiddev0,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-4/input1
    [ 2.261269] e1000e 0000:00:19.0: irq 47 for MSI/MSI-X
    [ 2.261336] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
    [ 2.264885] mousedev: PS/2 mouse device common for all mice
    [ 2.321482] nct6775: Found NCT6776D/F or compatible chip at 0x2e:0x290
    [ 2.381320] systemd[1]: Unit mdadm.service entered failed state.
    [ 2.398067] Switched to clocksource tsc
    [ 2.405686] Bluetooth: Core ver 2.19
    [ 2.405695] NET: Registered protocol family 31
    [ 2.405696] Bluetooth: HCI device and connection manager initialized
    [ 2.405700] Bluetooth: HCI socket layer initialized
    [ 2.405701] Bluetooth: L2CAP socket layer initialized
    [ 2.405706] Bluetooth: SCO socket layer initialized
    [ 2.411312] systemd[1]: Unit krb5-kadmind.service entered failed state.
    [ 2.438040] systemd[1]: Unit krb5-kdc.service entered failed state.
    [ 2.478042] systemd[1]: Unit ip6tables.service entered failed state.
    [ 2.518111] systemd[1]: Unit iptables.service entered failed state.
    [ 2.523817] usbcore: registered new interface driver btusb
    [ 2.571479] systemd[1]: krb5-kdc.service holdoff time over, scheduling restart.
    [ 2.598171] systemd[1]: Unit systemd-journal-upload.service entered failed state.
    [ 3.348890] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 5.138495] e1000e: enp0s25 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
    [ 5.138522] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
    [ 592.049481] snd_hda_intel 0000:00:1b.0: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
    Last edited by Naruni (2014-09-22 17:00:20)

    Disabled the RTC Alarm power, left the computer off overnight. It did not power on. I'm gonna let it go another night or two then I'll consider this issue solved.
    Anatolik I'll take a pint of Red Rocket Ale
    2 Days now and no uncommanded power on. I'll consider this solved.
    Last edited by Naruni (2014-09-22 16:59:52)

  • [SOLVED] xf86-video-ati 1:7.0.0.-1: segmentation fault

    Hello,
    just did a system upgrade (just xorg and xf86-video-ati were outdated) and with the newest radeon driver I can't start x. Manually recompiling the newest driver did not help, downgrading to 1:6.14.6-2 did.
    Here is my xorg.log - any suggestions?
    Greetings
    matse
    //Edit: Bug is also tracked in the distro bugtracker and upstream
    //Edit2: Xorg-server 1.13.1 fixes the issue for me
    Last edited by matse (2012-12-16 22:40:53)

    I have the exact same bug. I installed Arch yesterday and executing X resulted in radeon_drv.so segfault. Downgrading it didn't help, because modesetting_drv.so also segfaults. Instead the solution was to uninstall both xf86-video-ati and xf86-video-modesetting. The end result was that X ran with the intel driver and worked. My notebook configuration:
    uname -a
    Linux tarvalon 3.6.6-1-ARCH #1 SMP PREEMPT Mon Nov 5 11:57:22 CET 2012 x86_64 GNU/Linux
    lspci -nn | grep VGA
    00:02.0 VGA compatible controller [0300]: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller [8086:0126] (rev 09)
    01:00.0 VGA compatible controller [0300]: Advanced Micro Devices [AMD] nee ATI Whistler [AMD Radeon HD 6600M Series] [1002:6741]
    dmesg | grep drm
    [    4.325849] [drm] Initialized drm 1.1.0 20060810
    [    4.470878] [drm] radeon defaulting to kernel modesetting.
    [    4.470880] [drm] radeon kernel modesetting enabled.
    [    4.471028] [drm] initializing kernel modesetting (TURKS 0x1002:0x6741 0x1028:0x04C5).
    [    4.471067] [drm] register mmio base: 0xE1700000
    [    4.471068] [drm] register mmio size: 131072
    [    4.531897] [drm] Detected VRAM RAM=1024M, BAR=256M
    [    4.531900] [drm] RAM width 128bits DDR
    [    4.531970] [drm] radeon: 1024M of VRAM memory ready
    [    4.531971] [drm] radeon: 512M of GTT memory ready.
    [    4.531986] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [    4.531987] [drm] Driver supports precise vblank timestamp query.
    [    4.532086] [drm] radeon: irq initialized.
    [    4.532090] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [    4.532370] [drm] probing gen 2 caps for device 8086:101 = 2/0
    [    4.532371] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
    [    4.532429] [drm] Loading TURKS Microcode
    [    5.132336] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [    5.148880] [drm] ring test on 0 succeeded in 3 usecs
    [    5.149103] [drm] ib test on ring 0 succeeded in 0 usecs
    [    5.149255] [drm] Radeon Display Connectors
    [    5.154101] [drm] Internal thermal controller without fan control
    [    5.154948] [drm] radeon: power management initialized
    [    5.155076] [drm] Cannot find any crtc or sizes - going 1024x768
    [    5.155961] [drm] fb mappable at 0xC0142000
    [    5.155962] [drm] vram apper at 0xC0000000
    [    5.155962] [drm] size 3145728
    [    5.155963] [drm] fb depth is 24
    [    5.155963] [drm]    pitch is 4096
    [    5.159065] fb0: radeondrmfb frame buffer device
    [    5.159065] drm: registered panic notifier
    [    5.159068] [drm] Initialized radeon 2.24.0 20080528 for 0000:01:00.0 on minor 0
    [    5.478361] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [    5.478361] [drm] Driver supports precise vblank timestamp query.
    [    5.996280] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [    6.259675] fbcon: inteldrmfb (fb1) is primary device
    [    6.721495] fb1: inteldrmfb frame buffer device
    [    6.725192] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 1
    lsmod | grep drm
    drm_kms_helper         32877  2 i915,radeon
    drm                   218724  6 ttm,i915,drm_kms_helper,radeon
    i2c_core               20707  7 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,radeon,videodev

  • [SOLVED] drm:radeon delays xorg start for 30 secs

    Does anyone knows about a reason why starting the X.org server could take over 30 seconds?
    Jun 19 15:15:59 Arch kernel: [drm] Initialized drm 1.1.0 20060810
    Jun 19 15:15:59 Arch kernel: [drm] radeon kernel modesetting enabled.
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: enabling device (0006 -> 0007)
    Jun 19 15:15:59 Arch kernel: [drm] initializing kernel modesetting (OLAND 0x1002:0x6600 0x17AA:0x3801).
    Jun 19 15:15:59 Arch kernel: [drm] register mmio base: 0xB8000000
    Jun 19 15:15:59 Arch kernel: [drm] register mmio size: 262144
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: GTT: 1024M 0x0000000080000000 - 0x00000000BFFFFFFF
    Jun 19 15:15:59 Arch kernel: [drm] Detected VRAM RAM=2048M, BAR=128M
    Jun 19 15:15:59 Arch kernel: [drm] RAM width 128bits DDR
    Jun 19 15:15:59 Arch kernel: [drm] radeon: 2048M of VRAM memory ready
    Jun 19 15:15:59 Arch kernel: [drm] radeon: 1024M of GTT memory ready.
    Jun 19 15:15:59 Arch kernel: [drm] Loading OLAND Microcode
    Jun 19 15:15:59 Arch kernel: [drm] radeon/OLAND_mc2.bin: 31452 bytes
    Jun 19 15:15:59 Arch kernel: [drm] Internal thermal controller without fan control
    Jun 19 15:15:59 Arch kernel: [drm] probing gen 2 caps for device 8086:c01 = 261ad03/e
    Jun 19 15:15:59 Arch kernel: [drm] radeon: dpm initialized
    Jun 19 15:15:59 Arch kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
    Jun 19 15:15:59 Arch kernel: [drm] probing gen 2 caps for device 8086:c01 = 261ad03/e
    Jun 19 15:15:59 Arch kernel: [drm] PCIE gen 3 link speeds already enabled
    Jun 19 15:15:59 Arch kernel: [drm] PCIE GART of 1024M enabled (table at 0x0000000000276000).
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: WB enabled
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0xffff880157a34c00
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0xffff880157a34c04
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0xffff880157a34c08
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0xffff880157a34c0c
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0xffff880157a34c10
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0xffffc900111b5a18
    Jun 19 15:15:59 Arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Jun 19 15:15:59 Arch kernel: [drm] Driver supports precise vblank timestamp query.
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: irq 41 for MSI/MSI-X
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: radeon: using MSI.
    Jun 19 15:15:59 Arch kernel: [drm] radeon: irq initialized.
    Jun 19 15:15:59 Arch kernel: [drm] ring test on 0 succeeded in 1 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ring test on 1 succeeded in 1 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ring test on 2 succeeded in 1 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ring test on 3 succeeded in 2 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ring test on 4 succeeded in 1 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ring test on 5 succeeded in 2 usecs
    Jun 19 15:15:59 Arch kernel: [drm] UVD initialized successfully.
    Jun 19 15:15:59 Arch kernel: [drm] ib test on ring 0 succeeded in 0 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ib test on ring 1 succeeded in 0 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ib test on ring 2 succeeded in 0 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ib test on ring 3 succeeded in 0 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ib test on ring 4 succeeded in 1 usecs
    Jun 19 15:15:59 Arch kernel: [drm] ib test on ring 5 succeeded
    Jun 19 15:15:59 Arch kernel: [drm] Radeon Display Connectors
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: No connectors reported connected with modes
    Jun 19 15:15:59 Arch kernel: [drm] Cannot find any crtc or sizes - going 1024x768
    Jun 19 15:15:59 Arch kernel: [drm] fb mappable at 0xB047A000
    Jun 19 15:15:59 Arch kernel: [drm] vram apper at 0xB0000000
    Jun 19 15:15:59 Arch kernel: [drm] size 3145728
    Jun 19 15:15:59 Arch kernel: [drm] fb depth is 24
    Jun 19 15:15:59 Arch kernel: [drm] pitch is 4096
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: fb1: radeondrmfb frame buffer device
    Jun 19 15:15:59 Arch kernel: radeon 0000:01:00.0: registered panic notifier
    Jun 19 15:15:59 Arch kernel: [drm] Initialized radeon 2.38.0 20080528 for 0000:01:00.0 on minor 0
    Jun 19 15:15:59 Arch kernel: [drm] Memory usable by graphics device = 2048M
    Jun 19 15:15:59 Arch kernel: fb: switching to inteldrmfb from VESA VGA
    Jun 19 15:16:00 Arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Jun 19 15:16:00 Arch kernel: [drm] Driver supports precise vblank timestamp query.
    Jun 19 15:16:01 Arch kernel: fbcon: inteldrmfb (fb0) is primary device
    Jun 19 15:16:01 Arch kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    Jun 19 15:16:01 Arch kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 1
    Jun 19 15:16:02 Arch kernel: [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    Jun 19 15:16:01 Arch slim[818]: (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 19 15:16:01 2014
    Jun 19 15:16:01 Arch slim[818]: (==) Using config directory: "/etc/X11/xorg.conf.d"
    Jun 19 15:16:01 Arch slim[818]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    Jun 19 15:16:30 Arch kernel: ACPI: \_SB_.PCI0.PEG0: ACPI_NOTIFY_BUS_CHECK event
    Jun 19 15:16:30 Arch kernel: ACPI: \_SB_.PCI0.PEG0: Bus check in hotplug_event()
    Jun 19 15:16:30 Arch kernel: radeon 0000:01:00.0: Refused to change power state, currently in D3
    Jun 19 15:16:30 Arch kernel: radeon 0000:01:00.0: Refused to change power state, currently in D3
    Jun 19 15:16:30 Arch kernel: radeon 0000:01:00.0: Refused to change power state, currently in D3
    Jun 19 15:16:31 Arch systemd[1]: Started CUPS Printing Service.
    Jun 19 15:16:35 Arch kernel: [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 5secs aborting
    Jun 19 15:16:35 Arch kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing CB7E (len 62, WS 0, PS 0) @ 0xCB9A
    Jun 19 15:16:35 Arch kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing B73E (len 236, WS 4, PS 0) @ 0xB80B
    Jun 19 15:16:35 Arch kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing B698 (len 78, WS 12, PS 8) @ 0xB6A0
    Jun 19 15:16:35 Arch kernel: [drm:si_dpm_enable] *ERROR* si_init_smc_table failed
    Jun 19 15:16:35 Arch kernel: [drm:radeon_pm_resume_dpm] *ERROR* radeon: dpm resume failed
    Jun 19 15:16:35 Arch kernel: [drm] probing gen 2 caps for device 8086:c01 = 2618d03/e
    Jun 19 15:16:35 Arch kernel: [drm] enabling PCIE gen 3 link speeds, disable with radeon.pcie_gen2=0
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: Wait for MC idle timedout !
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: Wait for MC idle timedout !
    Jun 19 15:16:36 Arch kernel: [drm] PCIE GART of 1024M enabled (table at 0x0000000000276000).
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: WB enabled
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0xffff880157a34c00
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0xffff880157a34c04
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0xffff880157a34c08
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0xffff880157a34c0c
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0xffff880157a34c10
    Jun 19 15:16:36 Arch kernel: radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0xffffc900111b5a18
    Jun 19 15:16:38 Arch kernel: [drm:r600_ring_test] *ERROR* radeon: ring 0 test failed (scratch(0x850C)=0xFFFFFFFF)
    Jun 19 15:16:38 Arch kernel: [drm:si_resume] *ERROR* si startup failed on resume
    Jun 19 15:16:38 Arch kernel: [drm:si_dpm_enable] *ERROR* si_init_smc_table failed
    Jun 19 15:16:38 Arch kernel: [drm:radeon_pm_resume_dpm] *ERROR* radeon: dpm resume failed
    Jun 19 15:16:38 Arch slim[818]: Initializing built-in extension Generic Event Extension
    Jun 19 15:16:38 Arch slim[818]: Initializing built-in extension SHAPE
    Jun 19 15:16:38 Arch slim[818]: Initializing built-in extension XFree86-DGA
    Jun 19 15:16:38 Arch slim[818]: Initializing built-in extension XFree86-DRI
    Jun 19 15:16:38 Arch slim[818]: Initializing built-in extension DRI2
    Jun 19 15:16:38 Arch kernel: radeon 0000:01:00.0: couldn't schedule ib
    Jun 19 15:16:38 Arch slim[818]: Loading extension GLX
    Jun 19 15:16:38 Arch acpid[524]: client connected from 833[0:0]
    Jun 19 15:16:38 Arch acpid[524]: 1 client rule loaded
    Jun 19 15:16:38 Arch kernel: radeon 0000:01:00.0: couldn't schedule ib
    Jun 19 15:16:38 Arch kernel: radeon 0000:01:00.0: couldn't schedule ib
    Last edited by hazardousagreement (2014-06-19 21:12:23)

    Hi slacknatcher,
    thanks for your help :-)
    I looked at this logfile and there xorg just stops for thirty seconds.
    [ 35.404] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 55.110] (II) xfree86: Adding drm device (/dev/dri/card1)
    So I figured out that for mysterious reasons the radeon kernel module was loaded twice.
    I removed it from the kernel modules (mkinitcpi.conf) and the thirty second lag vanished

  • [SOLVED] Archlinux not detecting full ammount of RAM (again)

    Hello everyone!
    i've got a problem similar to this one: https://bbs.archlinux.org/viewtopic.php?id=126170
    i've tried brilliant solution by gabe.benson:
    Well, I fixed it.  I re-seated the RAM and rebooted, everything works fine now.
    but got no result.
    i have lenovo g580 laptop with 4 G of ram.
    lshw -short | grep 'System\ Memory'
    /0/28 memory 4GiB System Memory
    lshw | grep -A 8 bank
    sudo lshw | grep -A 8 bank
    *-bank:0
    description: SODIMM DDR3 Synchronous 800 MHz (1,2 ns)
    product: 16KTF51264HZ-1G6M1
    vendor: Micron Technology
    physical id: 0
    serial: E962DADF
    slot: DIMM0
    size: 4GiB
    width: 64 bits
    *-bank:1
    description: DIMM [empty]
    product: Empty
    vendor: Empty
    physical id: 1
    serial: Empty
    slot: DIMM1
    but system says that i hve only 3 G of ram:
    cat /proc/meminfo | grep -i memtotal
    MemTotal: 3018460 kB
    free -m
    total used free shared buffers cached
    Mem: 2947 900 2047 0 13 455
    -/+ buffers/cache: 430 2517
    Swap: 956 0 956
    my RAM is recognized in BIOS and was recognized in win7 when win7 was still installed...
    here are some info
    uname -a
    Linux architect 3.4.8-1-ARCH #1 SMP PREEMPT Thu Aug 9 19:24:46 UTC 2012 i686 GNU/Linux
    dmesg full output
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.8-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Aug 9 19:24:46 UTC 2012
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
    [ 0.000000] BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
    [ 0.000000] BIOS-e820: 0000000020200000 - 0000000040004000 (usable)
    [ 0.000000] BIOS-e820: 0000000040004000 - 0000000040005000 (reserved)
    [ 0.000000] BIOS-e820: 0000000040005000 - 00000000baabf000 (usable)
    [ 0.000000] BIOS-e820: 00000000baabf000 - 00000000baebf000 (reserved)
    [ 0.000000] BIOS-e820: 00000000baebf000 - 00000000bafbf000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000bafbf000 - 00000000bafff000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000bafff000 - 00000000bb000000 (usable)
    [ 0.000000] BIOS-e820: 00000000bb000000 - 00000000bfa00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed1a000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffb80000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000013f600000 (usable)
    [ 0.000000] e820 remove range: 0000000100000000 - ffffffffffffffff (usable)
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] user-defined physical RAM map:
    [ 0.000000] user: 0000000000000000 - 000000000009d800 (usable)
    [ 0.000000] user: 000000000009d800 - 00000000000a0000 (reserved)
    [ 0.000000] user: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] user: 0000000000100000 - 0000000020000000 (usable)
    [ 0.000000] user: 0000000020000000 - 0000000020200000 (reserved)
    [ 0.000000] user: 0000000020200000 - 0000000040004000 (usable)
    [ 0.000000] user: 0000000040004000 - 0000000040005000 (reserved)
    [ 0.000000] user: 0000000040005000 - 00000000baabf000 (usable)
    [ 0.000000] user: 00000000baabf000 - 00000000baebf000 (reserved)
    [ 0.000000] user: 00000000baebf000 - 00000000bafbf000 (ACPI NVS)
    [ 0.000000] user: 00000000bafbf000 - 00000000bafff000 (ACPI data)
    [ 0.000000] user: 00000000bafff000 - 00000000bb000000 (usable)
    [ 0.000000] user: 00000000bb000000 - 00000000bfa00000 (reserved)
    [ 0.000000] user: 00000000f0000000 - 00000000f4000000 (reserved)
    [ 0.000000] user: 00000000feb00000 - 00000000feb04000 (reserved)
    [ 0.000000] user: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] user: 00000000fed10000 - 00000000fed1a000 (reserved)
    [ 0.000000] user: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] user: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] user: 00000000ffb80000 - 0000000100000000 (reserved)
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: LENOVO Lenovo G580/Product Name, BIOS 5ECN32WW(V2.02) 04/24/2012
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0xbb000 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-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 5 base 100000000 mask FC0000000 write-back
    [ 0.000000] 6 base 13F600000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 13F800000 mask FFF800000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [c00fe1b0] fe1b0
    [ 0.000000] initial memory mapped : 0 - 01c00000
    [ 0.000000] Base memory trampoline at [c0099000] 99000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 0000400000 page 4k
    [ 0.000000] 0000400000 - 0037400000 page 2M
    [ 0.000000] 0037400000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
    [ 0.000000] RAMDISK: 37abc000 - 37d56000
    [ 0.000000] Allocated new RAMDISK: 37564000 - 377fda9c
    [ 0.000000] Move RAMDISK from 0000000037abc000 - 0000000037d55a9b to 37564000 - 377fda9b
    [ 0.000000] ACPI: RSDP 000fe020 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT baffe210 00094 (v01 LENOVO CB-01 00000001 01000013)
    [ 0.000000] ACPI: FACP baffb000 000F4 (v04 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: DSDT bafee000 09755 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FACS bafbb000 00040
    [ 0.000000] ACPI: UEFI baffd000 00236 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASF! baffc000 000A5 (v32 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: HPET baffa000 00038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: APIC baff9000 0008C (v02 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: MCFG baff8000 0003C (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SLIC bafed000 00176 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT bafec000 006FE (v01 LENOVO CB-01 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BOOT bafea000 00028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASPT bafe5000 00034 (v07 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FPDT bafe3000 00044 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT bafe2000 00968 (v01 LENOVO CB-01 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT bafe1000 00A92 (v01 LENOVO CB-01 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT bafdf000 01EDD (v01 LENOVO CB-01 00001000 ACPI 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 2104MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x000bb000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x00020000
    [ 0.000000] 0: 0x00020200 -> 0x00040004
    [ 0.000000] 0: 0x00040005 -> 0x000baabf
    [ 0.000000] 0: 0x000bafff -> 0x000bb000
    [ 0.000000] On node 0 totalpages: 763980
    [ 0.000000] free_area_init_node: node 0, pgdat c151ec80, node_mem_map f5e03200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3949 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 220974 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 4209 pages used for memmap
    [ 0.000000] HighMem zone: 533072 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 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[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, 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 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] Allocating PCI resources starting at bfa00000 (gap: bfa00000:30600000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 13 pages/cpu @f5d89000 s31424 r0 d21824 u53248
    [ 0.000000] pcpu-alloc: s31424 r0 d21824 u53248 alloc=13*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 757995
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=fe7ca6ad-90bf-40d6-9d16-836f808ae890 ro ro quiet splash init=/bin/systemd mem=4G
    [ 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] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] allocated 6127488 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:000bb000)
    [ 0.000000] Memory: 3015272k/3063808k available (3810k kernel code, 40648k reserved, 1472k data, 524k init, 2149124k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc1529000 - 0xc15ac000 ( 524 kB)
    [ 0.000000] .data : 0xc13b8837 - 0xc1528840 (1472 kB)
    [ 0.000000] .text : 0xc1000000 - 0xc13b8837 (3810 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=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] NR_IRQS:2304 nr_irqs:744 16
    [ 0.000000] CPU 0 irqstacks, hard=f500a000 soft=f500c000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 2494.324 MHz processor.
    [ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 4990.50 BogoMIPS (lpj=8314413)
    [ 0.000004] pid_max: default: 32768 minimum: 301
    [ 0.000022] Security Framework initialized
    [ 0.000025] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000035] Mount-cache hash table entries: 512
    [ 0.000187] Initializing cgroup subsys cpuacct
    [ 0.000188] Initializing cgroup subsys memory
    [ 0.000193] Initializing cgroup subsys devices
    [ 0.000195] Initializing cgroup subsys freezer
    [ 0.000196] Initializing cgroup subsys net_cls
    [ 0.000198] Initializing cgroup subsys blkio
    [ 0.000221] CPU: Physical Processor ID: 0
    [ 0.000222] CPU: Processor Core ID: 0
    [ 0.000226] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    [ 0.000227] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.000948] mce: CPU supports 7 MCE banks
    [ 0.000958] CPU0: Thermal monitoring enabled (TM1)
    [ 0.000965] using mwait in idle threads.
    [ 0.001745] ACPI: Core revision 20120320
    [ 0.020574] ftrace: allocating 16939 entries in 34 pages
    [ 0.031595] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.032013] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.064975] CPU0: Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz stepping 09
    [ 0.170127] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
    [ 0.170132] ... version: 3
    [ 0.170133] ... bit width: 48
    [ 0.170134] ... generic registers: 4
    [ 0.170135] ... value mask: 0000ffffffffffff
    [ 0.170136] ... max period: 000000007fffffff
    [ 0.170137] ... fixed-purpose events: 3
    [ 0.170139] ... event mask: 000000070000000f
    [ 0.190193] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.210090] CPU 1 irqstacks, hard=f5164000 soft=f5166000
    [ 0.210093] Booting Node 0, Processors #1
    [ 0.220329] Initializing CPU#1
    [ 0.223930] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.236742] CPU 2 irqstacks, hard=f5172000 soft=f5174000
    [ 0.236744] #2
    [ 0.247052] Initializing CPU#2
    [ 0.250659] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.263373] CPU 3 irqstacks, hard=f5180000 soft=f5182000
    [ 0.263374] #3
    [ 0.273681] Initializing CPU#3
    [ 0.277289] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.277313] Brought up 4 CPUs
    [ 0.277314] Total of 4 processors activated (19962.03 BogoMIPS).
    [ 0.280644] devtmpfs: initialized
    [ 0.280809] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
    [ 0.281540] NET: Registered protocol family 16
    [ 0.281663] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.281665] ACPI: bus type pci registered
    [ 0.281715] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.281718] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.281719] PCI: Using MMCONFIG for extended config space
    [ 0.281720] PCI: Using configuration type 1 for base access
    [ 0.281825] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.281827] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.281828] mtrr: corrected configuration.
    [ 0.282156] bio: create slab <bio-0> at 0
    [ 0.282198] ACPI: Added _OSI(Module Device)
    [ 0.282200] ACPI: Added _OSI(Processor Device)
    [ 0.282201] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.282203] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.283613] ACPI: EC: Look up EC in DSDT
    [ 0.285039] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.287544] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.288407] ACPI: SSDT bae18018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20100121)
    [ 0.288766] ACPI: Dynamic OEM Table Load:
    [ 0.288768] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20100121)
    [ 0.288969] ACPI: SSDT bae19a98 00303 (v01 PmRef ApIst 00003000 INTL 20100121)
    [ 0.289350] ACPI: Dynamic OEM Table Load:
    [ 0.289352] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20100121)
    [ 0.289436] ACPI: SSDT bae17d98 00119 (v01 PmRef ApCst 00003000 INTL 20100121)
    [ 0.289789] ACPI: Dynamic OEM Table Load:
    [ 0.289791] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20100121)
    [ 0.290616] ACPI: Interpreter enabled
    [ 0.290621] ACPI: (supports S0 S3 S4 S5)
    [ 0.290639] ACPI: Using IOAPIC for interrupt routing
    [ 0.412595] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.412750] ACPI: No dock devices found.
    [ 0.412754] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.413003] \_SB_.PCI0:_OSC invalid UUID
    [ 0.413004] _OSC request data:1 8 1f
    [ 0.413007] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.413400] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.413402] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.413404] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.413406] pci_root PNP0A08:00: host bridge window [mem 0xbfa00000-0xfeafffff]
    [ 0.413431] PCI host bridge to bus 0000:00
    [ 0.413433] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.413434] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.413436] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.413438] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 0.413445] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.413479] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.413509] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.413522] pci 0000:00:01.1: [8086:0155] type 01 class 0x060400
    [ 0.413550] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
    [ 0.413567] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.413578] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
    [ 0.413584] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.413589] pci 0000:00:02.0: reg 20: [io 0x4000-0x403f]
    [ 0.413640] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.413662] pci 0000:00:14.0: reg 10: [mem 0xd3600000-0xd360ffff 64bit]
    [ 0.413733] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.413756] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.413779] pci 0000:00:16.0: reg 10: [mem 0xd3614000-0xd361400f 64bit]
    [ 0.413855] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.413889] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.414140] pci 0000:00:1a.0: reg 10: [mem 0xd3619000-0xd36193ff]
    [ 0.415551] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.415579] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.415594] pci 0000:00:1b.0: reg 10: [mem 0xd3610000-0xd3613fff 64bit]
    [ 0.415662] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.415685] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.415764] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.415789] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.415868] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.415902] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.416142] pci 0000:00:1d.0: reg 10: [mem 0xd3618000-0xd36183ff]
    [ 0.417555] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.417582] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
    [ 0.417707] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.417725] pci 0000:00:1f.2: reg 10: [io 0x4088-0x408f]
    [ 0.417733] pci 0000:00:1f.2: reg 14: [io 0x4094-0x4097]
    [ 0.417741] pci 0000:00:1f.2: reg 18: [io 0x4080-0x4087]
    [ 0.417750] pci 0000:00:1f.2: reg 1c: [io 0x4090-0x4093]
    [ 0.417758] pci 0000:00:1f.2: reg 20: [io 0x4060-0x407f]
    [ 0.417766] pci 0000:00:1f.2: reg 24: [mem 0xd3617000-0xd36177ff]
    [ 0.417811] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.417830] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.417846] pci 0000:00:1f.3: reg 10: [mem 0xd3615000-0xd36150ff 64bit]
    [ 0.417867] pci 0000:00:1f.3: reg 20: [io 0x4040-0x405f]
    [ 0.417922] pci 0000:01:00.0: [10de:1140] type 00 class 0x030200
    [ 0.417933] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
    [ 0.417943] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.417953] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.417960] pci 0000:01:00.0: reg 24: [io 0x3000-0x307f]
    [ 0.417968] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
    [ 0.423139] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.423155] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    [ 0.423158] pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd2ffffff]
    [ 0.423161] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.423180] pci 0000:00:01.1: PCI bridge to [bus 02-02]
    [ 0.423362] pci 0000:03:00.0: [1969:1090] type 00 class 0x020000
    [ 0.423510] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd353ffff 64bit]
    [ 0.423568] pci 0000:03:00.0: reg 18: [io 0x2000-0x207f]
    [ 0.424132] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.429854] pci 0000:00:1c.0: PCI bridge to [bus 03-03]
    [ 0.429858] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.429863] pci 0000:00:1c.0: bridge window [mem 0xd3500000-0xd35fffff]
    [ 0.429934] pci 0000:04:00.0: [168c:002b] type 00 class 0x028000
    [ 0.429961] pci 0000:04:00.0: reg 10: [mem 0xd3400000-0xd340ffff 64bit]
    [ 0.430091] pci 0000:04:00.0: supports D1
    [ 0.430092] pci 0000:04:00.0: PME# supported from D0 D1 D3hot
    [ 0.436456] pci 0000:00:1c.1: PCI bridge to [bus 04-04]
    [ 0.436477] pci 0000:00:1c.1: bridge window [mem 0xd3400000-0xd34fffff]
    [ 0.436498] pci_bus 0000:00: on NUMA node 0
    [ 0.436500] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.436604] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.436627] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.436661] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
    [ 0.436683] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT]
    [ 0.436741] \_SB_.PCI0:_OSC invalid UUID
    [ 0.436743] _OSC request data:1 1f 1f
    [ 0.436746] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.436777] \_SB_.PCI0:_OSC invalid UUID
    [ 0.436778] _OSC request data:1 0 1d
    [ 0.436781] pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
    [ 0.436783] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.439162] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.439198] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.439233] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.439267] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.439301] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.439336] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    [ 0.439372] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    [ 0.439407] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.439462] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.439466] vgaarb: loaded
    [ 0.439467] vgaarb: bridge control possible 0000:00:02.0
    [ 0.439493] PCI: Using ACPI for IRQ routing
    [ 0.441016] PCI: pci_cache_line_size set to 64 bytes
    [ 0.441100] reserve RAM buffer: 000000000009d800 - 000000000009ffff
    [ 0.441102] reserve RAM buffer: 0000000040004000 - 0000000043ffffff
    [ 0.441104] reserve RAM buffer: 00000000baabf000 - 00000000bbffffff
    [ 0.441106] reserve RAM buffer: 00000000bb000000 - 00000000bbffffff
    [ 0.441172] NetLabel: Initializing
    [ 0.441174] NetLabel: domain hash size = 128
    [ 0.441175] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.441184] NetLabel: unlabeled traffic allowed by default
    [ 0.441221] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.441226] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.444239] Switching to clocksource hpet
    [ 0.448544] pnp: PnP ACPI init
    [ 0.448556] ACPI: bus type pnp registered
    [ 0.448788] pnp 00:00: [bus 00-3e]
    [ 0.448791] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.448792] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.448794] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.448796] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.448797] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.448799] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.448800] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.448802] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.448803] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.448805] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.448807] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.448808] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.448810] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.448811] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.448813] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.448814] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.448816] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.448817] pnp 00:00: [mem 0xbfa00000-0xfeafffff window]
    [ 0.448819] pnp 00:00: [mem 0x00010000-0x0001ffff window]
    [ 0.448861] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.448872] pnp 00:01: [io 0x0000-0x001f]
    [ 0.448873] pnp 00:01: [io 0x0081-0x0091]
    [ 0.448874] pnp 00:01: [io 0x0093-0x009f]
    [ 0.448876] pnp 00:01: [io 0x00c0-0x00df]
    [ 0.448877] pnp 00:01: [dma 4]
    [ 0.448895] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.448901] pnp 00:02: [mem 0xff010000-0xffffffff]
    [ 0.448916] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.448969] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.448985] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.448991] pnp 00:04: [io 0x00f0]
    [ 0.448999] pnp 00:04: [irq 13]
    [ 0.449016] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.449024] pnp 00:05: [io 0x002e-0x002f]
    [ 0.449025] pnp 00:05: [io 0x004e-0x004f]
    [ 0.449027] pnp 00:05: [io 0x0061]
    [ 0.449028] pnp 00:05: [io 0x0063]
    [ 0.449029] pnp 00:05: [io 0x0065]
    [ 0.449030] pnp 00:05: [io 0x0067]
    [ 0.449032] pnp 00:05: [io 0x0070]
    [ 0.449033] pnp 00:05: [io 0x0080]
    [ 0.449034] pnp 00:05: [io 0x0092]
    [ 0.449035] pnp 00:05: [io 0x00b2-0x00b3]
    [ 0.449037] pnp 00:05: [io 0x0680-0x069f]
    [ 0.449038] pnp 00:05: [io 0x1000-0x100f]
    [ 0.449039] pnp 00:05: [io 0xffff]
    [ 0.449041] pnp 00:05: [io 0xffff]
    [ 0.449042] pnp 00:05: [io 0x0400-0x0453]
    [ 0.449043] pnp 00:05: [io 0x0458-0x047f]
    [ 0.449045] pnp 00:05: [io 0x0500-0x057f]
    [ 0.449046] pnp 00:05: [io 0x164e-0x164f]
    [ 0.449047] pnp 00:05: [io 0xfd60-0xfd63]
    [ 0.449079] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 0.449081] system 00:05: [io 0x1000-0x100f] has been reserved
    [ 0.449083] system 00:05: [io 0xffff] has been reserved
    [ 0.449085] system 00:05: [io 0xffff] has been reserved
    [ 0.449087] system 00:05: [io 0x0400-0x0453] has been reserved
    [ 0.449088] system 00:05: [io 0x0458-0x047f] has been reserved
    [ 0.449090] system 00:05: [io 0x0500-0x057f] has been reserved
    [ 0.449092] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 0.449094] system 00:05: [io 0xfd60-0xfd63] has been reserved
    [ 0.449096] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.449102] pnp 00:06: [io 0x0070-0x0077]
    [ 0.449106] pnp 00:06: [irq 8]
    [ 0.449123] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.449141] pnp 00:07: [io 0x0454-0x0457]
    [ 0.449165] system 00:07: [io 0x0454-0x0457] has been reserved
    [ 0.449168] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.449175] pnp 00:08: [io 0x0060]
    [ 0.449177] pnp 00:08: [io 0x0064]
    [ 0.449181] pnp 00:08: [irq 1]
    [ 0.449197] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.449238] pnp 00:09: [irq 12]
    [ 0.449257] pnp 00:09: Plug and Play ACPI device, IDs ETD0613 ETD0001 PNP0f13 (active)
    [ 0.507625] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
    [ 0.507627] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
    [ 0.507629] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
    [ 0.507630] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
    [ 0.507631] pnp 00:0a: [mem 0xf0000000-0xf3ffffff]
    [ 0.507633] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
    [ 0.507634] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
    [ 0.507636] pnp 00:0a: [mem 0xff000000-0xff000fff]
    [ 0.507637] pnp 00:0a: [mem 0xff010000-0xffffffff]
    [ 0.507639] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
    [ 0.507640] pnp 00:0a: [mem 0xbfa00000-0xbfa00fff]
    [ 0.507671] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.507673] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.507675] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.507677] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.507679] system 00:0a: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.507681] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.507683] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.507685] system 00:0a: [mem 0xff000000-0xff000fff] has been reserved
    [ 0.507687] system 00:0a: [mem 0xff010000-0xffffffff] could not be reserved
    [ 0.507689] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.507691] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
    [ 0.507693] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.507937] pnp 00:0b: [mem 0x20000000-0x201fffff]
    [ 0.507939] pnp 00:0b: [mem 0x40004000-0x40004fff]
    [ 0.507980] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.507981] system 00:0b: [mem 0x40004000-0x40004fff] has been reserved
    [ 0.507984] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.507998] pnp: PnP ACPI: found 12 devices
    [ 0.507999] ACPI: ACPI bus type pnp unregistered
    [ 0.544171] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.544202] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
    [ 0.544204] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.544207] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    [ 0.544209] pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd2ffffff]
    [ 0.544212] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.544215] pci 0000:00:01.1: PCI bridge to [bus 02-02]
    [ 0.544221] pci 0000:00:1c.0: PCI bridge to [bus 03-03]
    [ 0.544224] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.544229] pci 0000:00:1c.0: bridge window [mem 0xd3500000-0xd35fffff]
    [ 0.544237] pci 0000:00:1c.1: PCI bridge to [bus 04-04]
    [ 0.544242] pci 0000:00:1c.1: bridge window [mem 0xd3400000-0xd34fffff]
    [ 0.544275] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.544277] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.544279] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.544281] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
    [ 0.544282] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    [ 0.544284] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
    [ 0.544286] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.544288] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    [ 0.544289] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
    [ 0.544291] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
    [ 0.544322] NET: Registered protocol family 2
    [ 0.544358] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.544442] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.544615] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.544703] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.544705] TCP: reno registered
    [ 0.544707] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.544711] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.544756] NET: Registered protocol family 1
    [ 0.544767] pci 0000:00:02.0: Boot video device
    [ 0.570851] PCI: CLS 64 bytes, default 64
    [ 0.570880] Unpacking initramfs...
    [ 0.619052] Freeing initrd memory: 2664k freed
    [ 0.619338] Simple Boot Flag at 0x44 set to 0x1
    [ 0.619589] apm: BIOS not found.
    [ 0.619736] audit: initializing netlink socket (disabled)
    [ 0.619749] type=2000 audit(1345095829.503:1): initialized
    [ 0.619994] highmem bounce pool size: 64 pages
    [ 0.619997] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.621206] VFS: Disk quotas dquot_6.5.2
    [ 0.621241] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.621308] msgmni has been set to 1696
    [ 0.621446] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.621472] io scheduler noop registered
    [ 0.621474] io scheduler deadline registered
    [ 0.621480] io scheduler cfq registered (default)
    [ 0.621551] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.621602] pcieport 0000:00:01.1: irq 41 for MSI/MSI-X
    [ 0.621760] vesafb: mode is 1366x768x32, linelength=5504, pages=0
    [ 0.621762] vesafb: scrolling: redraw
    [ 0.621764] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.622118] vesafb: framebuffer at 0xe0000000, mapped to 0xf8080000, using 4160k, total 4160k
    [ 0.622154] fbcon: VESA VGA (fb0) is primary device
    [ 0.689580] Console: switching to colour frame buffer device 170x48
    [ 0.756633] fb0: VESA VGA frame buffer device
    [ 0.756646] intel_idle: does not run on family 6 model 58
    [ 0.756664] GHES: HEST is not enabled!
    [ 0.756672] isapnp: Scanning for PnP cards...
    [ 1.069356] isapnp: No Plug & Play device found
    [ 1.069400] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.069903] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS4] at 0x60,0x64 irq 1,12
    [ 1.084587] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.084595] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.084687] mousedev: PS/2 mouse device common for all mice
    [ 1.084893] rtc_cmos 00:06: RTC can wake from S4
    [ 1.085015] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 1.085044] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 1.085057] cpuidle: using governor ladder
    [ 1.085058] cpuidle: using governor menu
    [ 1.085166] TCP: cubic registered
    [ 1.085234] NET: Registered protocol family 10
    [ 1.085368] NET: Registered protocol family 17
    [ 1.085372] Registering the dns_resolver key type
    [ 1.085415] Using IPI No-Shortcut mode
    [ 1.085482] PM: Hibernation image not present or could not be loaded.
    [ 1.085486] registered taskstats version 1
    [ 1.085919] rtc_cmos 00:06: setting system clock to 2012-08-16 05:43:50 UTC (1345095830)
    [ 1.085964] Initializing network drop monitor service
    [ 1.086010] Freeing unused kernel memory: 524k freed
    [ 1.086116] Write protecting the kernel text: 3812k
    [ 1.086134] Write protecting the kernel read-only data: 1124k
    [ 1.091427] systemd-udevd[49]: starting version 188
    [ 1.092112] Setting new ACPI handle for discrete video card
    [ 1.097570] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.120297] usbcore: registered new interface driver usbfs
    [ 1.120320] usbcore: registered new interface driver hub
    [ 1.120939] usbcore: registered new device driver usb
    [ 1.121264] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.121303] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.121307] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 1.121324] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.121346] ehci_hcd 0000:00:1a.0: debug port 2
    [ 1.121985] SCSI subsystem initialized
    [ 1.122870] libata version 3.00 loaded.
    [ 1.125236] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.125257] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd3619000
    [ 1.133400] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.133553] hub 1-0:1.0: USB hub found
    [ 1.133559] hub 1-0:1.0: 2 ports detected
    [ 1.133819] ahci 0000:00:1f.2: version 3.0
    [ 1.133882] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 1.133943] ahci: SSS flag set, parallel bus scan disabled
    [ 1.146744] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
    [ 1.146747] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst
    [ 1.146751] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.153993] scsi0 : ahci
    [ 1.154077] scsi1 : ahci
    [ 1.154147] scsi2 : ahci
    [ 1.154215] scsi3 : ahci
    [ 1.154277] scsi4 : ahci
    [ 1.154340] scsi5 : ahci
    [ 1.154412] ata1: SATA max UDMA/133 abar m2048@0xd3617000 port 0xd3617100 irq 42
    [ 1.154414] ata2: DUMMY
    [ 1.154417] ata3: SATA max UDMA/133 abar m2048@0xd3617000 port 0xd3617200 irq 42
    [ 1.154418] ata4: DUMMY
    [ 1.154419] ata5: DUMMY
    [ 1.154420] ata6: DUMMY
    [ 1.154464] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 1.154469] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.154480] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 1.154590] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 1.154604] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3600000
    [ 1.154654] xhci_hcd 0000:00:14.0: irq 43 for MSI/MSI-X
    [ 1.154773] xHCI xhci_add_endpoint called for root hub
    [ 1.154775] xHCI xhci_check_bandwidth called for root hub
    [ 1.154808] hub 2-0:1.0: USB hub found
    [ 1.154816] hub 2-0:1.0: 4 ports detected
    [ 1.154879] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.154883] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 1.154958] xHCI xhci_add_endpoint called for root hub
    [ 1.154960] xHCI xhci_check_bandwidth called for root hub
    [ 1.154991] hub 3-0:1.0: USB hub found
    [ 1.155001] hub 3-0:1.0: 4 ports detected
    [ 1.155111] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.155116] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 1.155124] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.155149] ehci_hcd 0000:00:1d.0: debug port 2
    [ 1.159035] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.159048] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd3618000
    [ 1.166703] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.166815] hub 4-0:1.0: USB hub found
    [ 1.166818] hub 4-0:1.0: 2 ports detected
    [ 1.439689] usb 1-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.472980] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.525743] ata1.00: ATA-8: ST9500325AS, 0011LVM1, max UDMA/100
    [ 1.525760] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.527718] ata1.00: configured for UDMA/100
    [ 1.527831] scsi 0:0:0:0: Direct-Access ATA ST9500325AS 0011 PQ: 0 ANSI: 5
    [ 1.563385] hub 1-1:1.0: USB hub found
    [ 1.563489] hub 1-1:1.0: 6 ports detected
    [ 1.619459] Refined TSC clocksource calibration: 2494.333 MHz.
    [ 1.619462] Switching to clocksource tsc
    [ 1.669365] usb 4-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.793111] hub 4-1:1.0: USB hub found
    [ 1.793177] hub 4-1:1.0: 6 ports detected
    [ 1.845823] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.848881] ata3.00: ATAPI: PLDS DVD-RW DS8A8SH, KL31, max UDMA/100
    [ 1.849780] ata3.00: configured for UDMA/100
    [ 1.852483] scsi 2:0:0:0: CD-ROM PLDS DVD-RW DS8A8SH KL31 PQ: 0 ANSI: 5
    [ 1.857313] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.857364] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.857367] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.857386] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.859247] usb 1-1.3: new full-speed USB device number 3 using ehci_hcd
    [ 1.863186] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.863202] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.863302] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 1.883796] sda: sda1 sda2 sda3
    [ 1.884063] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.009051] usb 1-1.4: new high-speed USB device number 4 using ehci_hcd
    [ 2.158842] usb 4-1.6: new high-speed USB device number 3 using ehci_hcd
    [ 2.432799] REISERFS (device sda1): found reiserfs format "3.6" with standard journal
    [ 2.432823] REISERFS (device sda1): using ordered data mode
    [ 2.432825] reiserfs: using flush barriers
    [ 2.433215] REISERFS (device sda1): journal params: device sda1, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    [ 2.433387] REISERFS (device sda1): checking transaction log (sda1)
    [ 2.515756] REISERFS (device sda1): Using r5 hash to sort names
    [ 3.230646] systemd[1]: systemd 188 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP; arch)
    [ 3.408334] systemd[1]: Inserted module 'autofs4'
    [ 3.408399] systemd[1]: Set hostname to <architect>.
    [ 3.973819] systemd[1]: [/usr/lib/systemd/system/rc-local-shutdown.service:3] Unknown lvalue 'ConditionPathIsExecutable' in section 'Unit'. Ignoring.
    [ 4.034956] systemd[1]: [/usr/lib/systemd/system/rc-local.service:3] Unknown lvalue 'ConditionPathIsExecutable' in section 'Unit'. Ignoring.
    [ 4.518631] systemd-udevd[153]: starting version 188
    [ 4.577734] reiserfs: enabling write barrier flush mode
    [ 4.652314] systemd-journald[154]: Fixed max_use=147.3M max_size=18.4M min_size=64.0K keep_free=73.6M
    [ 4.652347] systemd-journald[154]: Reserving 33543 entries in hash table.
    [ 4.652841] systemd-journald[154]: Vacuuming...
    [ 5.169943] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input1
    [ 5.169950] ACPI: Power Button [PWRB]
    [ 5.170018] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input2
    [ 5.170022] ACPI: Sleep Button [SLPB]
    [ 5.170072] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 5.170100] ACPI: Lid Switch [LID0]
    [ 5.170134] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.170137] ACPI: Power Button [PWRF]
    [ 5.189868] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
    [ 5.221888] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 5.273251] iTCO_vendor_support: vendor-support=0
    [ 5.273680] ACPI: AC Adapter [ACAD] (off-line)
    [ 5.408767] Linux agpgart interface v0.103
    [ 5.510286] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 5.510375] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 5.510484] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 5.526899] psmouse serio1: hgpk: ID: 10 00 64
    [ 5.701959] mei: module is from the staging directory, the quality is unknown, you have been warned.
    [ 5.790910] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.790913] ACPI: Thermal Zone [TZ00] (42 C)
    [ 5.790952] ACPI: Requesting acpi_cpufreq
    [ 5.876744] [drm] Initialized drm 1.1.0 20060810
    [ 5.913735] Monitor-Mwait will be used to enter C-1 state
    [ 5.913759] Monitor-Mwait will be used to enter C-2 state
    [ 5.913781] Monitor-Mwait will be used to enter C-3 state
    [ 5.913795] ACPI: acpi_idle registered with cpuidle
    [ 5.957095] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.970540] ACPI: Battery Slot [BAT1] (battery present)
    [ 6.011581] hda_codec: CX20590: BIOS auto-probing.
    [ 6.012383] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input6
    [ 6.085516] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f02)
    [ 6.108981] psmouse serio1: elantech: Synaptics capabilities query result 0x78, 0x17, 0x0b.
    [ 6.135296] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 6.135369] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 6.135418] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 6.135642] mei 0000:00:16.0: setting latency timer to 64
    [ 6.135699] mei 0000:00:16.0: irq 45 for MSI/MSI-X
    [ 6.138210] ACPI Warning: 0x00004040-0x0000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
    [ 6.138216] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.138366] agpgart-intel 0000:00:00.0: Intel Ivybridge Chipset
    [ 6.138415] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 6.139135] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
    [ 6.140739] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    [ 6.157387] input: Ideapad extra buttons as /devices/platform/ideapad/input/input10
    [ 6.181781] i915 0000:00:02.0: setting latency timer to 64
    [ 6.195724] i915 0000:00:02.0: irq 46 for MSI/MSI-X
    [ 6.195732] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 6.195733] [drm] Driver supports precise vblank timestamp query.
    [ 6.196268] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 6.229397] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input11
    [ 6.407852] nvidia: module license 'NVIDIA' taints kernel.
    [ 6.407855] Disabling lock debugging due to kernel taint
    [ 6.414984] nvidia 0000:01:00.0: power state changed by ACPI to D0
    [ 6.414988] nvidia 0000:01:00.0: power state changed by ACPI to D0
    [ 6.415066] NVRM: loading NVIDIA UNIX x86 Kernel Module 304.37 Wed Aug 8 19:50:16 PDT 2012
    [ 6.473350] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x12
    [ 6.558887] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x12
    [ 6.559193] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x12
    [ 6.559538] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x12
    [ 6.559899] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 6.570364] ath: EEPROM regdomain: 0x65
    [ 6.570366] ath: EEPROM indicates we should expect a direct regpair map
    [ 6.570368] ath: Country alpha2 being used: 00
    [ 6.570369] ath: Regpair used: 0x65
    [ 6.625369] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
    [ 6.625531] Registered led device: ath9k-phy0
    [ 6.625536] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xf88c0000, irq=17
    [ 6.648775] Linux media interface: v0.10
    [ 6.648993] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
    [ 6.652561] Bluetooth: Core ver 2.16
    [ 6.652578] NET: Registered protocol family 31
    [ 6.652580] Bluetooth: HCI device and connection manager initialized
    [ 6.652582] Bluetooth: HCI socket layer initialized
    [ 6.652584] Bluetooth: L2CAP socket layer initialized
    [ 6.652588] Bluetooth: SCO socket layer initialized
    [ 6.684781] Linux video capture interface: v2.00
    [ 6.761692] usbcore: registered new interface driver btusb
    [ 6.815537] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 6.819406] scsi6 : SCSI emulation for RTS5139 USB card reader
    [ 6.819536] scsi 6:0:0:0: Direct-Access Generic- xD/SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
    [ 6.820922] sd 6:0:0:0: [sdb] Attached SCSI removable disk
    [ 6.821739] usbcore: registered new interface driver rts5139
    [ 6.822866] checking generic (e0000000 410000) vs hw (e0000000 10000000)
    [ 6.822869] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 6.822882] Console: switching to colour dummy device 80x25
    [ 6.823406] fbcon: inteldrmfb (fb0) is primary device
    [ 6.830840] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2e2)
    [ 6.832754] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input12
    [ 6.832868] usbcore: registered new interface driver uvcvideo
    [ 6.832869] USB Video Class driver (1.1.1)
    [ 6.995891] Console: switching to colour frame buffer device 170x48
    [ 6.999933] fb0: inteldrmfb frame buffer device
    [ 6.999934] drm: registered panic notifier
    [ 7.000054] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 7.002109] acpi device:38: registered as cooling_device4
    [ 7.002228] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:36/LNXVIDEO:00/input/input13
    [ 7.002291] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 7.004500] acpi device:44: registered as cooling_device5
    [ 7.004732] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input14
    [ 7.004801] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 7.004824] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 7.169641] usbcore: registered new interface driver ath3k
    [ 7.262735] usb 1-1.3: USB disconnect, device number 3
    [ 7.602169] Adding 979960k swap on /dev/sda2. Priority:-1 extents:1 across:979960k
    [ 7.958251] usb 1-1.3: new full-speed USB device number 5 using ehci_hcd
    [ 8.276820] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 8.391735] systemd-journald[154]: Received SIGUSR1
    [ 10.873451] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 11.128335] Bluetooth: RFCOMM TTY layer initialized
    [ 11.128345] Bluetooth: RFCOMM socket layer initialized
    [ 11.128349] Bluetooth: RFCOMM ver 1.11
    [ 11.413635] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 13.428469] wlan0: authenticate with 00:23:69:e0:c9:57
    [ 13.440604] wlan0: send auth to 00:23:69:e0:c9:57 (try 1/3)
    [ 13.442540] wlan0: authenticated
    [ 13.449080] wlan0: associating with AP with corrupt beacon
    [ 13.450818] wlan0: associate with 00:23:69:e0:c9:57 (try 1/3)
    [ 13.454879] wlan0: RX AssocResp from 00:23:69:e0:c9:57 (capab=0x411 status=0 aid=2)
    [ 13.461369] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 13.461411] wlan0: associated
    [ 13.535109] bbswitch: version 0.4.2
    [ 13.535116] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 13.535122] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
    [ 13.535179] bbswitch: detected an Optimus _DSM function
    [ 13.535187] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
    [ 13.621600] bbswitch: disabling discrete graphics
    [ 13.621858] bbswitch: Result of Optimus _DSM call: 11000059
    [ 13.633963] pci 0000:01:00.0: Refused to change power state, currently in D0
    [ 13.639096] pci 0000:01:00.0: power state changed by ACPI to D3
    [ 14.866748] wlan0: IPv6 duplicate address fe80::466d:57ff:fed9:3858 detected!
    [ 19.468382] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=600
    [ 25.756579] CPU1: Package power limit notification (total events = 1)
    [ 25.756586] CPU0: Package power limit notification (total events = 1)
    [ 25.756605] CPU2: Package power limit notification (total events = 1)
    [ 25.756611] CPU3: Package power limit notification (total events = 1)
    [ 25.756655] CPU1: Package power limit normal
    [ 25.756658] CPU0: Package power limit normal
    [ 25.756676] CPU2: Package power limit normal
    [ 25.756682] CPU3: Package power limit normal
    [ 28.870816] fuse init (API version 7.18)
    [ 405.761491] CPU0: Package power limit notification (total events = 738)
    [ 405.761496] CPU2: Package power limit notification (total events = 738)
    [ 405.761499] CPU3: Package power limit notification (total events = 738)
    [ 405.761503] CPU1: Package power limit notification (total events = 737)
    [ 405.761864] CPU0: Package power limit normal
    [ 405.761884] CPU2: Package power limit normal
    [ 405.761886] CPU3: Package power limit normal
    [ 405.761915] CPU1: Package power limit normal
    [ 453.450036] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 453.450203] sr 2:0:0:0: Attached scsi generic sg1 type 5
    [ 453.450934] sd 6:0:0:0: Attached scsi generic sg2 type 0
    [ 561.690115] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 561.705571] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 713.191865] CPU2: Package power limit notification (total events = 1465)
    [ 713.191872] CPU0: Package power limit notification (total events = 1465)
    [ 713.191876] CPU1: Package power limit notification (total events = 1464)
    [ 713.191881] CPU3: Package power limit notification (total events = 1465)
    [ 713.202700] CPU0: Package power limit normal
    [ 713.202704] CPU1: Package power limit normal
    [ 713.202708] CPU3: Package power limit normal
    [ 713.202711] CPU2: Package power limit normal
    dmesg | grep -i memory
    [ 0.000000] initial memory mapped : 0 - 01c00000
    [ 0.000000] Base memory trampoline at [c0099000] 99000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Memory: 3015272k/3063808k available (3810k kernel code, 40648k reserved, 1472k data, 524k init, 2149124k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000188] Initializing cgroup subsys memory
    [ 0.619052] Freeing initrd memory: 2664k freed
    [ 1.086010] Freeing unused kernel memory: 524k freed
    [ 6.139135] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
    i added mem=4G to kernel parameters line in grub bot got nothing.
    anyone have any suggestions?
    Last edited by shohart (2012-08-16 09:01:26)

    buzzqw wrote:a faster solution is to use a 32bit PAE kernel..
    that was the rightest direction. i do not want to start a holywar about 'what is better x86 or x64... the reason is that i've just installed and configurated my system and everything works amasingly well... even bumblebee! so i just use pae kernel for now.... thanks for the answer!
    Awebb wrote:Nice device by the way!
    Yeah, thnx! i've been using HP laptop with AMD turion x64 1,8 Ghz and ATI x200M for like 7 years.... i loved that old man... but when even flash video began to look like a comix.... i ve passed it away, went to the shop and grabbed this Lenovo machine... i wanted i7 but 1,5 kilobucks is too much to pay for a typing machine (it is the main usage of my laptop) for me... thanx everyone for a support. marking as solved.

  • [solved] Long boot time because of NetworkManager.service

    Hello. It seems that my ASUS N56V latptop takes a long time to boot. systemd-analyze reports this:
    Startup finished in 742ms (kernel) + 3.094s (initrd) + 23.838s (userspace) = 27.675s
    └──[4]──╼ systemd-analyze blame
    12.083s NetworkManager.service
    11.247s accounts-daemon.service
    1.137s home-sergio-Disco_Duro.mount
    735ms systemd-vconsole-setup.service
    710ms systemd-udev-trigger.service
    631ms systemd-tmpfiles-setup.service
    630ms dev-hugepages.mount
    628ms lm_sensors.service
    626ms systemd-logind.service
    515ms dev-mqueue.mount
    515ms sys-kernel-debug.mount
    440ms systemd-tmpfiles-setup-dev.service
    432ms ufw.service
    380ms dev-sda5.swap
    365ms [email protected]
    356ms gdm.service
    356ms systemd-udevd.service
    356ms systemd-binfmt.service
    353ms systemd-sysctl.service
    341ms systemd-readahead-replay.service
    340ms systemd-readahead-collect.service
    293ms tmp.mount
    274ms colord.service
    267ms alsa-restore.service
    266ms cpupower.service
    259ms upower.service
    226ms kmod-static-nodes.service
    79ms systemd-random-seed.service
    66ms proc-sys-fs-binfmt_misc.mount
    60ms systemd-remount-fs.service
    59ms [email protected]
    58ms udisks2.service
    44ms [email protected]
    30ms sys-kernel-config.mount
    10ms polkit.service
    6ms systemd-journal-flush.service
    5ms [email protected]
    4ms systemd-update-utmp.service
    4ms systemd-backlight@leds:asus::kbd_backlight.service
    2ms wpa_supplicant.service
    2ms rtkit-daemon.service
    2ms systemd-backlight@backlight:intel_backlight.service
    2ms [email protected]
    1ms [email protected]
    1ms systemd-user-sessions.service
    1ms systemd-readahead-done.service
    1ms sys-fs-fuse-connections.mount
    └──[14]──╼ systemd-analyze critical-chain
    The time after the unit is active or started is printed after the "@" character.
    The time the unit takes to start is printed after the "+" character.
    graphical.target @23.838s
    └─multi-user.target @23.838s
    └─NetworkManager.service @11.755s +12.083s
    └─basic.target @11.753s
    └─timers.target @11.753s
    └─systemd-tmpfiles-clean.timer @11.752s
    └─sysinit.target @11.719s
    └─systemd-update-utmp.service @11.712s +4ms
    └─systemd-tmpfiles-setup.service @11.079s +631ms
    └─local-fs.target @11.076s
    └─home-sergio-Disco_Duro.mount @9.938s +1.137s
    └─[email protected] @9.498s +365ms
    └─dev-sda6.device @9.497s
    And dmesg reports this:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.16.2-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 (GCC) ) #1 SMP PREEMPT Sat Sep 6 13:12:51 CEST 2014
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=9da38127-36ed-47e5-ba97-e9656af3801b rw quiet splash rw
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000ad7a8fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ad7a9000-0x00000000adda9fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000addaa000-0x00000000addacfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000addad000-0x00000000addc2fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000addc3000-0x00000000addc8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000addc9000-0x00000000addcafff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000addcb000-0x00000000addd4fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000addd5000-0x00000000adf2bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000adf2c000-0x00000000adf2ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000adf30000-0x00000000adf79fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000adf7a000-0x00000000adf9ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000adfa0000-0x00000000adfa2fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000adfa3000-0x00000000adfa4fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000adfa5000-0x00000000adfbbfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000adfbc000-0x00000000adfc1fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000adfc2000-0x00000000adfc9fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000adfca000-0x00000000adfcafff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000adfcb000-0x00000000adfd9fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000adfda000-0x00000000adfdafff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000adfdb000-0x00000000adfe5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000adfe6000-0x00000000adfeafff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000adfeb000-0x00000000ae016fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae017000-0x00000000ae017fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae018000-0x00000000ae027fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae028000-0x00000000ae04efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae04f000-0x00000000ae061fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae062000-0x00000000ae062fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae063000-0x00000000ae063fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae064000-0x00000000ae065fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae066000-0x00000000ae066fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae067000-0x00000000ae06bfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae06c000-0x00000000ae082fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae083000-0x00000000ae626fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae627000-0x00000000ae8a6fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ae8a7000-0x00000000ae8abfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000ae8ac000-0x00000000ae8acfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae8ad000-0x00000000ae8effff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ae8f0000-0x00000000aecfefff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aecff000-0x00000000aeff3fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000aeff4000-0x00000000aeffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000afc00000-0x00000000cfdfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001af1fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: ASUSTeK COMPUTER INC. N56VB/N56VB, BIOS N56VB.202 01/21/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 = 0x1af200 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F00000000 write-back
    [ 0.000000] 1 base 100000000 mask F80000000 write-back
    [ 0.000000] 2 base 180000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0C0000000 mask FC0000000 uncachable
    [ 0.000000] 4 base 0B0000000 mask FF0000000 uncachable
    [ 0.000000] 5 base 0AFC00000 mask FFFC00000 uncachable
    [ 0.000000] 6 base 1B0000000 mask FF0000000 uncachable
    [ 0.000000] 7 base 1AF800000 mask FFF800000 uncachable
    [ 0.000000] 8 base 1AF400000 mask FFFC00000 uncachable
    [ 0.000000] 9 base 1AF200000 mask FFFE00000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xafc00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xaf000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd7f0-0x000fd7ff] mapped at [ffff8800000fd7f0]
    [ 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 [0x01b23000, 0x01b23fff] PGTABLE
    [ 0.000000] BRK [0x01b24000, 0x01b24fff] PGTABLE
    [ 0.000000] BRK [0x01b25000, 0x01b25fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x1af000000-0x1af1fffff]
    [ 0.000000] [mem 0x1af000000-0x1af1fffff] page 2M
    [ 0.000000] BRK [0x01b26000, 0x01b26fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x1ac000000-0x1aeffffff]
    [ 0.000000] [mem 0x1ac000000-0x1aeffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x180000000-0x1abffffff]
    [ 0.000000] [mem 0x180000000-0x1abffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x40003fff] page 4k
    [ 0.000000] BRK [0x01b27000, 0x01b27fff] PGTABLE
    [ 0.000000] BRK [0x01b28000, 0x01b28fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x40005000-0xad7a8fff]
    [ 0.000000] [mem 0x40005000-0x401fffff] page 4k
    [ 0.000000] [mem 0x40200000-0xad5fffff] page 2M
    [ 0.000000] [mem 0xad600000-0xad7a8fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xaddad000-0xaddc2fff]
    [ 0.000000] [mem 0xaddad000-0xaddc2fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xaddc9000-0xaddcafff]
    [ 0.000000] [mem 0xaddc9000-0xaddcafff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xaddd5000-0xadf2bfff]
    [ 0.000000] [mem 0xaddd5000-0xadf2bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xadf30000-0xadf79fff]
    [ 0.000000] [mem 0xadf30000-0xadf79fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xadfa0000-0xadfa2fff]
    [ 0.000000] [mem 0xadfa0000-0xadfa2fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xadfa5000-0xadfbbfff]
    [ 0.000000] [mem 0xadfa5000-0xadfbbfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xadfc2000-0xadfc9fff]
    [ 0.000000] [mem 0xadfc2000-0xadfc9fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xadfcb000-0xadfd9fff]
    [ 0.000000] [mem 0xadfcb000-0xadfd9fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xadfdb000-0xadfe5fff]
    [ 0.000000] [mem 0xadfdb000-0xadfe5fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xadfeb000-0xae016fff]
    [ 0.000000] [mem 0xadfeb000-0xae016fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xae018000-0xae027fff]
    [ 0.000000] [mem 0xae018000-0xae027fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xae04f000-0xae061fff]
    [ 0.000000] [mem 0xae04f000-0xae061fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xae063000-0xae063fff]
    [ 0.000000] [mem 0xae063000-0xae063fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xae066000-0xae066fff]
    [ 0.000000] [mem 0xae066000-0xae066fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xae06c000-0xae082fff]
    [ 0.000000] [mem 0xae06c000-0xae082fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xae8ac000-0xae8acfff]
    [ 0.000000] [mem 0xae8ac000-0xae8acfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xae8f0000-0xaecfefff]
    [ 0.000000] [mem 0xae8f0000-0xae9fffff] page 4k
    [ 0.000000] [mem 0xaea00000-0xaebfffff] page 2M
    [ 0.000000] [mem 0xaec00000-0xaecfefff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xaeff4000-0xaeffffff]
    [ 0.000000] [mem 0xaeff4000-0xaeffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x17fffffff]
    [ 0.000000] [mem 0x100000000-0x17fffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x3757a000-0x37ab4fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 _ASUS_)
    [ 0.000000] ACPI: XSDT 0x00000000AE879078 00007C (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000AE88CAE0 00010C (v05 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000AE879188 013957 (v02 _ASUS_ Notebook 00000013 INTL 20091112)
    [ 0.000000] ACPI: FACS 0x00000000AE8A4080 000040
    [ 0.000000] ACPI: APIC 0x00000000AE88CBF0 000072 (v03 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000AE88CC68 000044 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: ECDT 0x00000000AE88CCB0 0000C1 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
    [ 0.000000] ACPI: MCFG 0x00000000AE88CD78 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x00000000AE88CDB8 000038 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000AE88CDF0 000632 (v01 AhciR1 AhciTab1 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000AE88D428 00049E (v01 AhciR2 AhciTab2 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000AE88D8C8 0009D0 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x00000000AE88E298 000B18 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: MSDM 0x00000000AE626E18 000055 (v03 _ASUS_ Notebook 00000000 ASUS 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000001af1fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x1af1fffff]
    [ 0.000000] NODE_DATA [mem 0x1af1f1000-0x1af1f5fff]
    [ 0.000000] [ffffea0000000000-ffffea0006bfffff] PMD -> [ffff8801a9000000-ffff8801ae7fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x1af1fffff]
    [ 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-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xad7a8fff]
    [ 0.000000] node 0: [mem 0xaddad000-0xaddc2fff]
    [ 0.000000] node 0: [mem 0xaddc9000-0xaddcafff]
    [ 0.000000] node 0: [mem 0xaddd5000-0xadf2bfff]
    [ 0.000000] node 0: [mem 0xadf30000-0xadf79fff]
    [ 0.000000] node 0: [mem 0xadfa0000-0xadfa2fff]
    [ 0.000000] node 0: [mem 0xadfa5000-0xadfbbfff]
    [ 0.000000] node 0: [mem 0xadfc2000-0xadfc9fff]
    [ 0.000000] node 0: [mem 0xadfcb000-0xadfd9fff]
    [ 0.000000] node 0: [mem 0xadfdb000-0xadfe5fff]
    [ 0.000000] node 0: [mem 0xadfeb000-0xae016fff]
    [ 0.000000] node 0: [mem 0xae018000-0xae027fff]
    [ 0.000000] node 0: [mem 0xae04f000-0xae061fff]
    [ 0.000000] node 0: [mem 0xae063000-0xae063fff]
    [ 0.000000] node 0: [mem 0xae066000-0xae066fff]
    [ 0.000000] node 0: [mem 0xae06c000-0xae082fff]
    [ 0.000000] node 0: [mem 0xae8ac000-0xae8acfff]
    [ 0.000000] node 0: [mem 0xae8f0000-0xaecfefff]
    [ 0.000000] node 0: [mem 0xaeff4000-0xaeffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x1af1fffff]
    [ 0.000000] On node 0 totalpages: 1428925
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11057 pages used for memmap
    [ 0.000000] DMA32 zone: 707617 pages, LIFO batch:31
    [ 0.000000] Normal zone: 11208 pages used for memmap
    [ 0.000000] Normal zone: 717312 pages, LIFO batch:31
    [ 0.000000] Reserving Intel graphics stolen memory at 0xafe00000-0xcfdfffff
    [ 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[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] 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: 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: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xad7a9000-0xadda9fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xaddaa000-0xaddacfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xaddc3000-0xaddc8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xaddcb000-0xaddd4fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xadf2c000-0xadf2ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xadf7a000-0xadf9ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xadfa3000-0xadfa4fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xadfbc000-0xadfc1fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xadfca000-0xadfcafff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xadfda000-0xadfdafff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xadfe6000-0xadfeafff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae017000-0xae017fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae028000-0xae04efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae062000-0xae062fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae064000-0xae065fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae067000-0xae06bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae083000-0xae626fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae627000-0xae8a6fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae8a7000-0xae8abfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xae8ad000-0xae8effff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xaecff000-0xaeff3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xaf000000-0xafbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xafc00000-0xcfdfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcfe00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xcfe00000-0xf7ffffff] 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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff8801aee00000 s86784 r8192 d23808 u524288
    [ 0.000000] pcpu-alloc: s86784 r8192 d23808 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1406575
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=9da38127-36ed-47e5-ba97-e9656af3801b rw quiet splash rw
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 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: 5541880K/5715700K available (5334K kernel code, 887K rwdata, 1688K rodata, 1128K init, 1164K bss, 173820K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:8448 nr_irqs:712 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 23068672 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 2594.142 MHz processor
    [ 0.000034] Calibrating delay loop (skipped), value calculated using timer frequency.. 5190.46 BogoMIPS (lpj=8647140)
    [ 0.000036] pid_max: default: 32768 minimum: 301
    [ 0.000042] ACPI: Core revision 20140424
    [ 0.013454] ACPI: All ACPI Tables successfully acquired
    [ 0.015248] Security Framework initialized
    [ 0.015253] Yama: becoming mindful.
    [ 0.015698] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.017594] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.018433] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.018442] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.018639] Initializing cgroup subsys memory
    [ 0.018655] Initializing cgroup subsys devices
    [ 0.018661] Initializing cgroup subsys freezer
    [ 0.018663] Initializing cgroup subsys net_cls
    [ 0.018666] Initializing cgroup subsys blkio
    [ 0.018687] CPU: Physical Processor ID: 0
    [ 0.018688] CPU: Processor Core ID: 0
    [ 0.018693] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.019034] mce: CPU supports 7 MCE banks
    [ 0.019044] CPU0: Thermal monitoring enabled (TM1)
    [ 0.019053] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    tlb_flushall_shift: 2
    [ 0.019156] Freeing SMP alternatives memory: 20K (ffffffff819f9000 - ffffffff819fe000)
    [ 0.020028] ftrace: allocating 20434 entries in 80 pages
    [ 0.029301] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.062327] smpboot: CPU0: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.062334] TSC deadline timer enabled
    [ 0.062356] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.062374] ... version: 3
    [ 0.062375] ... bit width: 48
    [ 0.062376] ... generic registers: 4
    [ 0.062377] ... value mask: 0000ffffffffffff
    [ 0.062377] ... max period: 0000ffffffffffff
    [ 0.062378] ... fixed-purpose events: 3
    [ 0.062379] ... event mask: 000000070000000f
    [ 0.089127] x86: Booting SMP configuration:
    [ 0.089129] .... node #0, CPUs: #1
    [ 0.102615] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.109323] #2 #3
    [ 0.143069] x86: Booted up 1 node, 4 CPUs
    [ 0.143072] smpboot: Total of 4 processors activated (20761.85 BogoMIPS)
    [ 0.146151] devtmpfs: initialized
    [ 0.148360] PM: Registering ACPI NVS region [mem 0xad7a9000-0xadda9fff] (6295552 bytes)
    [ 0.148429] PM: Registering ACPI NVS region [mem 0xae627000-0xae8a6fff] (2621440 bytes)
    [ 0.148457] PM: Registering ACPI NVS region [mem 0xae8ad000-0xae8effff] (274432 bytes)
    [ 0.149179] pinctrl core: initialized pinctrl subsystem
    [ 0.149217] RTC time: 23:34:40, date: 09/13/14
    [ 0.149261] NET: Registered protocol family 16
    [ 0.149360] cpuidle: using governor ladder
    [ 0.149362] cpuidle: using governor menu
    [ 0.149386] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.149388] ACPI: bus type PCI registered
    [ 0.149389] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.149452] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.149454] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.149534] PCI: Using configuration type 1 for base access
    [ 0.163412] ACPI: Added _OSI(Module Device)
    [ 0.163414] ACPI: Added _OSI(Processor Device)
    [ 0.163415] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.163416] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.165254] ACPI : EC: EC description table is found, configuring boot EC
    [ 0.167131] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.283333] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.313759] ACPI: Dynamic OEM Table Load:
    [ 0.313766] ACPI: SSDT 0xFFFF8801A66AB000 000853 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.323515] ACPI: Dynamic OEM Table Load:
    [ 0.323519] ACPI: SSDT 0xFFFF8801A6633C00 000303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.336756] ACPI: Dynamic OEM Table Load:
    [ 0.336759] ACPI: SSDT 0xFFFF8801A665BE00 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.347197] ACPI: Interpreter enabled
    [ 0.347203] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    [ 0.347207] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    [ 0.347221] ACPI: (supports S0 S3 S4 S5)
    [ 0.347222] ACPI: Using IOAPIC for interrupt routing
    [ 0.347245] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.468144] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.468149] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.556840] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 0.556961] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 0.557508] PCI host bridge to bus 0000:00
    [ 0.557511] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.557512] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.557514] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.557515] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.557517] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.557518] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.557519] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.557521] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.557522] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.557523] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.557525] pci_bus 0000:00: root bus resource [mem 0xcfe00000-0xfeafffff]
    [ 0.557532] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.557613] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.557643] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.557680] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.557718] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.557728] pci 0000:00:02.0: reg 0x10: [mem 0xf7400000-0xf77fffff 64bit]
    [ 0.557734] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.557739] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.557836] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.557859] pci 0000:00:14.0: reg 0x10: [mem 0xf7a00000-0xf7a0ffff 64bit]
    [ 0.557931] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.557971] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.558011] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.558034] pci 0000:00:16.0: reg 0x10: [mem 0xf7a1a000-0xf7a1a00f 64bit]
    [ 0.558108] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.558190] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.558212] pci 0000:00:1a.0: reg 0x10: [mem 0xf7a18000-0xf7a183ff]
    [ 0.558303] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.558345] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.558382] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.558398] pci 0000:00:1b.0: reg 0x10: [mem 0xf7a10000-0xf7a13fff 64bit]
    [ 0.558473] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.558516] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.558550] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.558633] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.558708] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.558790] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.558866] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
    [ 0.558948] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.558992] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.559033] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.559054] pci 0000:00:1d.0: reg 0x10: [mem 0xf7a17000-0xf7a173ff]
    [ 0.559145] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.559186] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.559222] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
    [ 0.559393] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.559411] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    [ 0.559418] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    [ 0.559427] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    [ 0.559434] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    [ 0.559441] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.559449] pci 0000:00:1f.2: reg 0x24: [mem 0xf7a16000-0xf7a167ff]
    [ 0.559495] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.559563] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.559579] pci 0000:00:1f.3: reg 0x10: [mem 0xf7a15000-0xf7a150ff 64bit]
    [ 0.559600] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.559717] pci 0000:01:00.0: [10de:0fdf] type 00 class 0x030200
    [ 0.559731] pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
    [ 0.559743] pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.559755] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.559763] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.559772] pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
    [ 0.563477] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.563482] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.563487] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.563493] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.563574] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.563712] pci 0000:03:00.0: [8086:0887] type 00 class 0x028000
    [ 0.563765] pci 0000:03:00.0: reg 0x10: [mem 0xf7900000-0xf7901fff 64bit]
    [ 0.564012] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.564057] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.570225] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.570232] pci 0000:00:1c.1: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.570322] pci 0000:04:00.0: [1969:1091] type 00 class 0x020000
    [ 0.570354] pci 0000:04:00.0: reg 0x10: [mem 0xf7800000-0xf783ffff 64bit]
    [ 0.570368] pci 0000:04:00.0: reg 0x18: [io 0xd000-0xd07f]
    [ 0.570508] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.570545] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.576839] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.576847] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.576854] pci 0000:00:1c.3: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.576926] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.630685] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12)
    [ 0.630728] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 12)
    [ 0.630769] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 12)
    [ 0.630809] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 10 12)
    [ 0.630851] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.630892] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.630936] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 7 10 12)
    [ 0.630976] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 7 10 12)
    [ 0.631110] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.631171] ACPI : EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
    [ 0.631262] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.631264] vgaarb: loaded
    [ 0.631265] vgaarb: bridge control possible 0000:00:02.0
    [ 0.631295] PCI: Using ACPI for IRQ routing
    [ 0.632841] PCI: pci_cache_line_size set to 64 bytes
    [ 0.632894] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.632895] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.632896] e820: reserve RAM buffer [mem 0xad7a9000-0xafffffff]
    [ 0.632901] e820: reserve RAM buffer [mem 0xaddc3000-0xafffffff]
    [ 0.632906] e820: reserve RAM buffer [mem 0xaddcb000-0xafffffff]
    [ 0.632911] e820: reserve RAM buffer [mem 0xadf2c000-0xafffffff]
    [ 0.632915] e820: reserve RAM buffer [mem 0xadf7a000-0xafffffff]
    [ 0.632919] e820: reserve RAM buffer [mem 0xadfa3000-0xafffffff]
    [ 0.632924] e820: reserve RAM buffer [mem 0xadfbc000-0xafffffff]
    [ 0.632928] e820: reserve RAM buffer [mem 0xadfca000-0xafffffff]
    [ 0.632932] e820: reserve RAM buffer [mem 0xadfda000-0xafffffff]
    [ 0.632935] e820: reserve RAM buffer [mem 0xadfe6000-0xafffffff]
    [ 0.632939] e820: reserve RAM buffer [mem 0xae017000-0xafffffff]
    [ 0.632942] e820: reserve RAM buffer [mem 0xae028000-0xafffffff]
    [ 0.632946] e820: reserve RAM buffer [mem 0xae062000-0xafffffff]
    [ 0.632949] e820: reserve RAM buffer [mem 0xae064000-0xafffffff]
    [ 0.632951] e820: reserve RAM buffer [mem 0xae067000-0xafffffff]
    [ 0.632954] e820: reserve RAM buffer [mem 0xae083000-0xafffffff]
    [ 0.632956] e820: reserve RAM buffer [mem 0xae8ad000-0xafffffff]
    [ 0.632958] e820: reserve RAM buffer [mem 0xaecff000-0xafffffff]
    [ 0.632959] e820: reserve RAM buffer [mem 0xaf000000-0xafffffff]
    [ 0.632961] e820: reserve RAM buffer [mem 0x1af200000-0x1afffffff]
    [ 0.633057] NetLabel: Initializing
    [ 0.633058] NetLabel: domain hash size = 128
    [ 0.633059] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.633069] NetLabel: unlabeled traffic allowed by default
    [ 0.633093] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.633097] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.635125] Switched to clocksource hpet
    [ 0.639054] pnp: PnP ACPI init
    [ 0.639068] ACPI: bus type PNP registered
    [ 0.639157] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.639160] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.691999] system 00:01: [io 0x0680-0x069f] has been reserved
    [ 0.692001] system 00:01: [io 0x1000-0x100f] has been reserved
    [ 0.692003] system 00:01: [io 0xffff] has been reserved
    [ 0.692004] system 00:01: [io 0xffff] has been reserved
    [ 0.692006] system 00:01: [io 0x0400-0x0453] could not be reserved
    [ 0.692007] system 00:01: [io 0x0458-0x047f] has been reserved
    [ 0.692009] system 00:01: [io 0x0500-0x057f] has been reserved
    [ 0.692010] system 00:01: [io 0x164e-0x164f] has been reserved
    [ 0.692013] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.692041] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.692088] system 00:03: [io 0x0454-0x0457] has been reserved
    [ 0.692090] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.692134] system 00:04: [io 0x04d0-0x04d1] has been reserved
    [ 0.692136] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.692189] pnp 00:05: Plug and Play ACPI device, IDs ETD0108 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
    [ 0.692225] pnp 00:06: Plug and Play ACPI device, IDs ATK3001 PNP030b (active)
    [ 0.692379] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.692381] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.692383] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.692384] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.692386] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.692388] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.692389] system 00:07: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.692391] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.692393] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.692395] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.692396] system 00:07: [mem 0xcfe00000-0xcfe00fff] has been reserved
    [ 0.692398] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.692464] system 00:08: [mem 0xcfe00000-0xcfe00fff] has been reserved
    [ 0.692466] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.692587] system 00:09: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.692589] system 00:09: [mem 0x40004000-0x40004fff] has been reserved
    [ 0.692591] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.692617] pnp: PnP ACPI: found 10 devices
    [ 0.692618] ACPI: bus type PNP unregistered
    [ 0.698950] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.698953] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.698956] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.698958] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.698961] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.698973] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.698978] pci 0000:00:1c.1: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.698986] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.698989] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.698995] pci 0000:00:1c.3: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.699004] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.699005] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.699007] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.699008] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.699009] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.699011] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.699012] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.699014] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.699015] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.699016] pci_bus 0000:00: resource 13 [mem 0xcfe00000-0xfeafffff]
    [ 0.699018] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.699019] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
    [ 0.699021] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.699023] pci_bus 0000:03: resource 1 [mem 0xf7900000-0xf79fffff]
    [ 0.699024] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
    [ 0.699026] pci_bus 0000:04: resource 1 [mem 0xf7800000-0xf78fffff]
    [ 0.699048] NET: Registered protocol family 2
    [ 0.699217] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.699348] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.699457] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.699472] TCP: reno registered
    [ 0.699483] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.699508] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.699564] NET: Registered protocol family 1
    [ 0.699579] pci 0000:00:02.0: Boot video device
    [ 0.735318] pci 0000:04:00.0: set MSI_INTX_DISABLE_BUG flag
    [ 0.735322] PCI: CLS 64 bytes, default 64
    [ 0.735362] Unpacking initramfs...
    [ 0.816940] Freeing initrd memory: 5356K (ffff88003757a000 - ffff880037ab5000)
    [ 0.816948] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.816950] software IO TLB [mem 0xa97a9000-0xad7a9000] (64MB) mapped at [ffff8800a97a9000-ffff8800ad7a8fff]
    [ 0.817180] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
    [ 0.817219] Scanning for low memory corruption every 60 seconds
    [ 0.817445] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.817768] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.818908] zbud: loaded
    [ 0.819058] VFS: Disk quotas dquot_6.5.2
    [ 0.819086] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.819182] msgmni has been set to 10834
    [ 0.819224] Key type big_key registered
    [ 0.819368] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.819416] io scheduler noop registered
    [ 0.819420] io scheduler deadline registered
    [ 0.819459] io scheduler cfq registered (default)
    [ 0.819605] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.819964] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.819978] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.820007] intel_idle: MWAIT substates: 0x21120
    [ 0.820008] intel_idle: v0.4 model 0x3A
    [ 0.820009] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.820167] GHES: HEST is not enabled!
    [ 0.820230] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.820623] Linux agpgart interface v0.103
    [ 0.820666] rtc_cmos 00:02: RTC can wake from S4
    [ 0.820787] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 0.820817] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.820826] Intel P-state driver initializing.
    [ 0.820835] Intel pstate controlling: cpu 0
    [ 0.820854] Intel pstate controlling: cpu 1
    [ 0.820871] Intel pstate controlling: cpu 2
    [ 0.820903] Intel pstate controlling: cpu 3
    [ 0.820972] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.821169] TCP: cubic registered
    [ 0.821332] NET: Registered protocol family 10
    [ 0.821644] NET: Registered protocol family 17
    [ 0.822136] registered taskstats version 1
    [ 0.822912] Magic number: 14:465:605
    [ 0.823042] rtc_cmos 00:02: setting system clock to 2014-09-13 23:34:40 UTC (1410651280)
    [ 0.823314] PM: Hibernation image not present or could not be loaded.
    [ 0.824652] Freeing unused kernel memory: 1128K (ffffffff818df000 - ffffffff819f9000)
    [ 0.824655] Write protecting the kernel read-only data: 8192k
    [ 0.828153] Freeing unused kernel memory: 800K (ffff880001538000 - ffff880001600000)
    [ 0.829631] Freeing unused kernel memory: 360K (ffff8800017a6000 - ffff880001800000)
    [ 0.831604] random: systemd urandom read with 1 bits of entropy available
    [ 0.832821] systemd[1]: Configuration file /usr/lib/systemd/system/ctrl-alt-del.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [ 0.832824] systemd[1]: Configuration file /usr/lib/systemd/system/ctrl-alt-del.target is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
    [ 0.835895] systemd[1]: Cannot add dependency job for unit local-fs.target, ignoring: Unit local-fs.target failed to load: No such file or directory.
    [ 0.835900] systemd[1]: Cannot add dependency job for unit swap.target, ignoring: Unit swap.target failed to load: No such file or directory.
    [ 0.835907] systemd[1]: Cannot add dependency job for unit systemd-journald-dev-log.socket, ignoring: Unit systemd-journald-dev-log.socket failed to load: No such file or directory.
    [ 0.835915] systemd[1]: Cannot add dependency job for unit timers.target, ignoring: Unit timers.target failed to load: No such file or directory.
    [ 0.835918] systemd[1]: Cannot add dependency job for unit paths.target, ignoring: Unit paths.target failed to load: No such file or directory.
    [ 0.835921] systemd[1]: Cannot add dependency job for unit slices.target, ignoring: Unit slices.target failed to load: No such file or directory.
    [ 0.846204] systemd-udevd[61]: starting version 216
    [ 0.851356] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
    [ 0.857066] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 0.858876] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.870874] ACPI: bus type USB registered
    [ 0.870902] usbcore: registered new interface driver usbfs
    [ 0.870913] usbcore: registered new interface driver hub
    [ 0.870957] usbcore: registered new device driver usb
    [ 0.871727] [drm] Initialized drm 1.1.0 20060810
    [ 0.871912] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.871977] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.872004] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.872031] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.872054] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.872570] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.872800] ehci-pci: EHCI PCI platform driver
    [ 0.872972] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.872979] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.872995] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.873414] SCSI subsystem initialized
    [ 0.874735] libata version 3.00 loaded.
    [ 0.876901] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.876921] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7a18000
    [ 0.878730] ACPI: Lid Switch [LID]
    [ 0.878783] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
    [ 0.878787] ACPI: Sleep Button [SLPB]
    [ 0.878823] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 0.878824] ACPI: Power Button [PWRF]
    [ 0.885423] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.885744] hub 1-0:1.0: USB hub found
    [ 0.885754] hub 1-0:1.0: 2 ports detected
    [ 0.886157] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.886163] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.886179] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.890092] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.890108] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7a17000
    [ 0.898678] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.898863] hub 2-0:1.0: USB hub found
    [ 0.898873] hub 2-0:1.0: 2 ports detected
    [ 0.899123] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.899131] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.899234] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.899258] xhci_hcd 0000:00:14.0: irq 41 for MSI/MSI-X
    [ 0.899457] hub 3-0:1.0: USB hub found
    [ 0.899469] hub 3-0:1.0: 4 ports detected
    [ 0.899602] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.899604] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 0.899850] hub 4-0:1.0: USB hub found
    [ 0.899861] hub 4-0:1.0: 4 ports detected
    [ 0.899997] ahci 0000:00:1f.2: version 3.0
    [ 0.900123] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 0.912049] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
    [ 0.912054] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
    [ 0.919284] scsi0 : ahci
    [ 0.919473] scsi1 : ahci
    [ 0.919569] scsi2 : ahci
    [ 0.919652] scsi3 : ahci
    [ 0.919737] scsi4 : ahci
    [ 0.919817] scsi5 : ahci
    [ 0.919849] ata1: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16100 irq 42
    [ 0.919850] ata2: DUMMY
    [ 0.919853] ata3: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16200 irq 42
    [ 0.919853] ata4: DUMMY
    [ 0.919854] ata5: DUMMY
    [ 0.919855] ata6: DUMMY
    [ 0.920241] [drm] Memory usable by graphics device = 2048M
    [ 0.920243] [drm] Replacing VGA console driver
    [ 0.921140] Console: switching to colour dummy device 80x25
    [ 0.927099] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
    [ 0.978778] i915 0000:00:02.0: irq 43 for MSI/MSI-X
    [ 0.978791] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 0.978793] [drm] Driver supports precise vblank timestamp query.
    [ 0.992401] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.031464] fbcon: inteldrmfb (fb0) is primary device
    [ 1.192296] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 1.238940] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.238968] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.241132] ata3.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.241135] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.242336] ata3.00: ATAPI: MATSHITABD-CMB UJ160, 1.00, max UDMA/133
    [ 1.244048] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.244388] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.244391] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.244636] ata3.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.244639] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.245827] ata3.00: configured for UDMA/133
    [ 1.249666] ata1.00: ATA-8: WDC WD7500BPVT-80HXZT3, 01.01A01, max UDMA/133
    [ 1.249668] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.254977] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.255204] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.255207] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.260474] ata1.00: configured for UDMA/133
    [ 1.260796] scsi 0:0:0:0: Direct-Access ATA WDC WD7500BPVT-8 1A01 PQ: 0 ANSI: 5
    [ 1.262991] scsi 2:0:0:0: CD-ROM MATSHITA BD-CMB UJ160 1.00 PQ: 0 ANSI: 5
    [ 1.279845] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
    [ 1.279848] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.279989] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.279992] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.280037] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.288053] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.288055] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.288272] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 1.305366] [drm:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A
    [ 1.305367] [drm:cpt_serr_int_handler] *ERROR* PCH transcoder A FIFO underrun
    [ 1.316307] hub 1-1:1.0: USB hub found
    [ 1.316391] hub 1-1:1.0: 6 ports detected
    [ 1.397316] sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 sda10 >
    [ 1.399073] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.422404] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.546748] hub 2-1:1.0: USB hub found
    [ 1.546905] hub 2-1:1.0: 6 ports detected
    [ 1.683098] Console: switching to colour frame buffer device 240x67
    [ 1.692813] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 1.692815] i915 0000:00:02.0: registered panic notifier
    [ 1.709304] usb 3-3: new low-speed USB device number 2 using xhci_hcd
    [ 1.709735] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 1.709833] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:02/LNXVIDEO:00/input/input8
    [ 1.727351] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 1.752763] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
    [ 1.752815] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.819288] tsc: Refined TSC clocksource calibration: 2594.112 MHz
    [ 1.887971] usb 3-3: ep 0x83 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.890031] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.900283] usbcore: registered new interface driver usbhid
    [ 1.900287] usbhid: USB HID core driver
    [ 1.901514] input: Microsoft Comfort Mouse 3000 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.0/0003:045E:077B.0001/input/input10
    [ 1.901597] hid-generic 0003:045E:077B.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Comfort Mouse 3000] on usb-0000:00:14.0-3/input0
    [ 1.966216] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
    [ 2.132934] usb 1-1.3: new high-speed USB device number 4 using ehci-pci
    [ 2.416335] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
    [ 2.820032] Switched to clocksource tsc
    [ 2.888651] random: nonblocking pool is initialized
    [ 3.089789] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.358639] systemd-journald[53]: Received SIGTERM from PID 1 (systemd).
    [ 5.897107] systemd-readahead[155]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    [ 6.512882] EXT4-fs (sda8): re-mounted. Opts: data=ordered
    [ 7.301637] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 7.308423] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 7.314841] systemd-udevd[191]: starting version 216
    [ 7.318026] ip6_tables: (C) 2000-2006 Netfilter Core Team
    [ 9.643450] ACPI: AC Adapter [AC0] (off-line)
    [ 9.707164] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000044f (\GPIS) (20140424/utaddress-258)
    [ 9.707175] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
    [ 9.707183] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.707188] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140424/utaddress-258)
    [ 9.707194] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GP01) (20140424/utaddress-258)
    [ 9.707200] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.707203] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140424/utaddress-258)
    [ 9.707208] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GP01) (20140424/utaddress-258)
    [ 9.707214] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.707217] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140424/utaddress-258)
    [ 9.707222] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GP01) (20140424/utaddress-258)
    [ 9.707228] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.707231] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 9.732620] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 9.754610] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
    [ 9.823510] ACPI Warning: SystemIO range 0x000000000000f040-0x000000000000f05f conflicts with OpRegion 0x000000000000f040-0x000000000000f04f (\SMB0) (20140424/utaddress-258)
    [ 9.823518] ACPI Warning: SystemIO range 0x000000000000f040-0x000000000000f05f conflicts with OpRegion 0x000000000000f040-0x000000000000f04f (\_SB_.PCI0.SBUS.SMBI) (20140424/utaddress-258)
    [ 9.823522] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.885093] ACPI: Battery Slot [BAT0] (battery present)
    [ 9.885341] wmi: Mapper loaded
    [ 10.025457] input: PC Speaker as /devices/platform/pcspkr/input/input11
    [ 10.107482] thermal LNXTHERM:00: registered as thermal_zone0
    [ 10.107485] ACPI: Thermal Zone [THRM] (54 C)
    [ 10.123269] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
    [ 10.219286] cfg80211: Calling CRDA to update world regulatory domain
    [ 10.271262] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 10.271264] Copyright(c) 2003- 2014 Intel Corporation
    [ 10.271366] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 10.271428] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
    [ 10.310963] iTCO_vendor_support: vendor-support=0
    [ 10.422203] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
    [ 10.422220] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
    [ 10.422235] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
    [ 10.422315] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 10.525335] alx 0000:04:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [60:a4:4c:70:de:11]
    [ 10.559149] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 10.559206] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 10.559374] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 10.574607] psmouse serio4: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
    [ 10.677032] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
    [ 10.694508] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 10.694514] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 10.694517] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 10.694521] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2230 BGN, REV=0xC8
    [ 10.694580] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 10.703738] asus_wmi: ASUS WMI generic driver loaded
    [ 10.704976] asus_wmi: Initialization: 0x1
    [ 10.705014] asus_wmi: BIOS WMI version: 7.9
    [ 10.705057] asus_wmi: SFUN value: 0x6a0877
    [ 10.706030] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input16
    [ 10.715790] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 10.807860] asus_wmi: Backlight controlled by ACPI video driver
    [ 10.883267] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 10.898742] sound hdaudioC0D0: autoconfig: line_outs=2 (0x14/0x16/0x0/0x0/0x0) type:speaker
    [ 10.898747] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 10.898750] sound hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    [ 10.898752] sound hdaudioC0D0: mono: mono_out=0x0
    [ 10.898754] sound hdaudioC0D0: dig-out=0x1e/0x0
    [ 10.898756] sound hdaudioC0D0: inputs:
    [ 10.898759] sound hdaudioC0D0: Internal Mic=0x19
    [ 10.898762] sound hdaudioC0D0: Mic=0x18
    [ 10.911221] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input17
    [ 10.911566] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
    [ 10.911637] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
    [ 10.911707] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input20
    [ 11.070896] psmouse serio4: elantech: assuming hardware version 4 (with firmware version 0x361f03)
    [ 11.085464] psmouse serio4: elantech: Synaptics capabilities query result 0x10, 0x15, 0x0d.
    [ 11.152788] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input15
    [ 11.532713] systemd-udevd[285]: renamed network interface eth0 to enp4s0
    [ 11.632559] systemd-udevd[285]: renamed network interface wlan0 to wlp3s0
    [ 11.796657] mousedev: PS/2 mouse device common for all mice
    [ 11.814896] AVX version of gcm_enc/dec engaged.
    [ 12.249546] media: Linux media interface: v0.10
    [ 12.405592] Linux video capture interface: v2.00
    [ 12.489425] Bluetooth: Core ver 2.19
    [ 12.489454] NET: Registered protocol family 31
    [ 12.489458] Bluetooth: HCI device and connection manager initialized
    [ 12.489470] Bluetooth: HCI socket layer initialized
    [ 12.489475] Bluetooth: L2CAP socket layer initialized
    [ 12.489499] Bluetooth: SCO socket layer initialized
    [ 12.618057] usbcore: registered new interface driver btusb
    [ 12.741864] Adding 6291452k swap on /dev/sda5. Priority:-1 extents:1 across:6291452k FS
    [ 12.946876] uvcvideo: Found UVC 1.00 device ASUS USB2.0 Webcam (1bcf:2883)
    [ 12.964918] input: ASUS USB2.0 Webcam as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input21
    [ 12.965046] usbcore: registered new interface driver uvcvideo
    [ 12.965049] USB Video Class driver (1.1.1)
    [ 13.388855] intel_rapl: RAPL domain dram detection failed
    [ 15.010386] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 15.017669] systemd-journald[159]: Received request to flush runtime journal from PID 1
    [ 27.377350] bbswitch: version 0.8
    [ 27.377363] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 27.377367] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
    [ 27.377374] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 27.377449] bbswitch: detected an Optimus _DSM function
    [ 27.377495] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
    [ 27.378547] bbswitch: disabling discrete graphics
    [ 27.378554] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 27.805771] alx 0000:04:00.0: irq 47 for MSI/MSI-X
    [ 27.806124] IPv6: ADDRCONF(NETDEV_UP): enp4s0: link is not ready
    [ 27.840453] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 27.847948] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
    [ 28.089495] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 28.097001] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
    [ 28.163505] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
    [ 28.525115] fuse init (API version 7.23)
    [ 28.890210] wlp3s0: authenticate with 90:0d:cb:19:04:e0
    [ 28.895402] wlp3s0: send auth to 90:0d:cb:19:04:e0 (try 1/3)
    [ 28.897519] wlp3s0: authenticated
    [ 28.900414] wlp3s0: associate with 90:0d:cb:19:04:e0 (try 1/3)
    [ 28.916513] wlp3s0: RX AssocResp from 90:0d:cb:19:04:e0 (capab=0xc11 status=0 aid=4)
    [ 28.936417] wlp3s0: associated
    [ 28.936448] IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
    [ 28.936477] cfg80211: Calling CRDA to update world regulatory domain
    [ 32.940

    hcra wrote:You might see this Wiki page for long boot times and NetworkManager
    https://wiki.archlinux.org/index.php/Sy … _over_time
    Wow, that solved this problem. I had 5 GB of systemd logs. I deleted them (after making a backup on another disk), I limited the journal size to only 50MB, and now NetworkManager only lasts 4 seconds to start, and GDM appears 10 seconds earlier. Thanks a lot

  • Frequent segfaults caused by gpu

    Everything seems stable on start up but as programs run longer they become more likely to segfault. Tabs in chromium begin to segfault constantly and Firefox crashes almost as soon as its opened and all other programs crash but more sporadically. I am not sure how to resolve this or even determine if its hardware failing or a driver problem. I also cant think of any specific update this behavior coincided with.
    journalctl
    Mar 30 20:27:09 localhost kernel: [drm] stuck on render ring
    Mar 30 20:27:09 localhost kernel: [drm] stuck on blitter ring
    Mar 30 20:27:09 localhost kernel: [drm] GPU crash dump saved to /sys/class/drm/card0/error
    Mar 30 20:27:09 localhost kernel: [drm] GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.
    Mar 30 20:27:09 localhost kernel: [drm] Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel
    Mar 30 20:27:09 localhost kernel: [drm] drm/i915 developers can then reassign to the right component if it's not a kernel issue.
    Mar 30 20:27:09 localhost kernel: [drm] The gpu crash dump is required to analyze gpu hangs, so please always attach it.
    Mar 30 20:35:50 localhost kernel: [drm] stuck on render ring
    Mar 30 21:03:09 localhost kernel: perf samples too long (5013 > 4990), lowering kernel.perf_event_max_sample_rate to 25200
    Mar 30 21:33:19 localhost kernel: [drm] stuck on render ring
    Mar 30 21:33:19 localhost kernel: [drm] stuck on blitter ring
    Mar 30 21:54:33 localhost kernel: chromium[3277]: segfault at 382694104228 ip 00007fb789250850 sp 00007fffeff00968 error 4 in chromium[7fb787a9f000+535e000]
    Mar 30 21:55:31 localhost kernel: chromium[3288]: segfault at 372b5c504120 ip 00007fb7893ab5ec sp 00007fffeff001b0 error 4 in chromium[7fb787a9f000+535e000]
    Mar 30 21:55:35 localhost kernel: chromium[3202]: segfault at 3387e7ded2a8 ip 00007fb78bab8481 sp 00007fffeff01210 error 4 in chromium[7fb787a9f000+535e000]
    Mar 30 21:57:10 localhost kernel: chromium[3311]: segfault at 3a8e6e00018 ip 00007fb789326320 sp 00007fffeff00af0 error 4 in chromium[7fb787a9f000+535e000]
    Mar 30 22:06:25 localhost systemd-coredump[3377]: Core too large, core will not be stored.
    Mar 30 22:06:25 localhost systemd-coredump[3377]: Process 512 (firefox) dumped core.
    Mar 30 22:14:40 localhost kernel: chromium[3069]: segfault at 3279a2c0422b ip 00007fb78929ec12 sp 00007fffeff00cf0 error 4 in chromium[7fb787a9f000+535e000]
    Mar 30 23:25:20 localhost kernel: chromium[3817]: segfault at bf4c2b088c3 ip 00007fb7892b5ddd sp 00007fffefeff450 error 4 in chromium[7fb787a9f000+535e000]
    Mar 30 23:44:09 localhost kernel: [drm] stuck on render ring
    Mar 30 23:44:09 localhost kernel: [drm] stuck on blitter ring
    Mar 30 23:47:02 localhost kernel: chromium[4453]: segfault at 17a1bc681a20 ip 00003795c7384b5f sp 00007ffffff5ae20 error 4
    Mar 30 23:47:54 localhost org.gtk.Private.UDisks2VolumeMonitor[406]: ### debug: Name owner ':1.0' vanished
    Mar 30 23:56:07 localhost kernel: [drm] stuck on render ring
    Mar 30 23:56:07 localhost kernel: [drm] stuck on blitter ring
    Mar 30 23:57:56 localhost kernel: [drm:ring_stuck] *ERROR* Kicking stuck semaphore on render ring
    Mar 30 23:59:12 localhost kernel: OptimizingCompi[4442]: segfault at 22b26f3581e8 ip 00007f74e550ffd6 sp 00007f74cf35f820 error 4 in chromium[7f74e3c63000+535e
    Mar 31 11:30:00 localhost kernel: sd_festival[2074]: segfault at 2d0 ip 00007f39797181a1 sp 00007fffa4a23620 error 4 in libpthread-2.19.so[7f397970b000+18000]
    Mar 31 11:30:00 localhost systemd-coredump[2075]: Process 2074 (sd_festival) dumped core.
    Mar 31 11:42:19 localhost kernel: hda-intel 0000:00:1b.0: Unstable LPIB (130816 >= 8192); disabling LPIB delay counting
    Mar 31 12:39:25 localhost kernel: chromium[3933]: segfault at 7 ip 00007f3c68d85850 sp 00007fff2eb122e8 error 4 in chromium[7f3c675d4000+535e000]
    Mar 31 12:39:29 localhost kernel: traps: chromium[3944] trap int3 ip:7f3c69039db1 sp:7fff2eb10090 error:0
    Mar 31 12:39:33 localhost kernel: chromium[3954]: segfault at 336f41100019 ip 00007f3c68ea4f44 sp 00007fff2eb120d0 error 4 in chromium[7f3c675d4000+535e000]
    Mar 31 12:39:36 localhost kernel: chromium[3964]: segfault at 3cbf7ade94c8 ip 00007f3c68eb892d sp 00007fff2eb0f9b0 error 4 in chromium[7f3c675d4000+535e000]
    Mar 31 12:39:39 localhost kernel: chromium[3974]: segfault at 21386a114618 ip 00007f3c68b5994e sp 00007fff2eb10990 error 4 in chromium[7f3c675d4000+535e000]
    Mar 31 12:41:39 localhost systemd-coredump[4014]: Core too large, core will not be stored.
    Mar 31 12:41:39 localhost systemd-coredump[4014]: Process 2445 (firefox) dumped core.
    dmesg
    [ 2613.072555] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 2708.304598] fuse init (API version 7.22)
    [ 9735.567941] sd_festival[2074]: segfault at 2d0 ip 00007f39797181a1 sp 00007fffa4a23620 error 4 in libpthread-2.19.so[7f397970b000+18000]
    [10475.945708] hda-intel 0000:00:1b.0: Unstable LPIB (130816 >= 8192); disabling LPIB delay counting
    [11723.649327] perf samples too long (2504 > 2500), lowering kernel.perf_event_max_sample_rate to 50100
    [13905.253065] chromium[3933]: segfault at 7 ip 00007f3c68d85850 sp 00007fff2eb122e8 error 4 in chromium[7f3c675d4000+535e000]
    [13909.634254] traps: chromium[3944] trap int3 ip:7f3c69039db1 sp:7fff2eb10090 error:0
    [13913.730004] chromium[3954]: segfault at 336f41100019 ip 00007f3c68ea4f44 sp 00007fff2eb120d0 error 4 in chromium[7f3c675d4000+535e000]
    [13915.862660] chromium[3964]: segfault at 3cbf7ade94c8 ip 00007f3c68eb892d sp 00007fff2eb0f9b0 error 4 in chromium[7f3c675d4000+535e000]
    [13919.066996] chromium[3974]: segfault at 21386a114618 ip 00007f3c68b5994e sp 00007fff2eb10990 error 4 in chromium[7f3c675d4000+535e000]
    [14215.534298] chromium[977]: segfault at 2000000000 ip 0000002000000000 sp 00007fff692bfa08 error 14
    [14217.307167] systemd-journald[111]: Failed to write entry (26 items, 386401146 bytes) despite vacuuming, ignoring: Argument list too long
    [14509.223324] chromium[4025]: segfault at da8c6900018 ip 00007f3c68e5b320 sp 00007fff2eb12e50 error 4 in chromium[7f3c675d4000+535e000]
    [14519.290360] chromium[4121]: segfault at 18 ip 00007f3c68e5b320 sp 00007fff2eb12390 error 4 in chromium[7f3c675d4000+535e000]
    [14604.753564] chromium[4151]: segfault at 2cbeb1c39c98 ip 00007f3c68d8f048 sp 00007fff2eb12710 error 4 in chromium[7f3c675d4000+535e000]
    [16026.958004] chromium[4099]: segfault at 35a580a2dd38 ip 00007fc7d938f0f0 sp 00007fff1da1bcb8 error 4 in libdrm_intel.so.1.0.0[7fc7d9387000+1f000]
    [16027.994823] systemd-journald[111]: Deleted empty journal /var/log/journal/234c2db5e4bf46a8bb2f0fb78faa84fa/[email protected]00000000000.journal (8392704 bytes).
    [16028.263903] systemd-journald[111]: Failed to write entry (26 items, 297673596 bytes) despite vacuuming, ignoring: Argument list too long
    [16043.277605] chromium[4274]: segfault at 1e3883f586c0 ip 000029973f143167 sp 00007fff2eb11f18 error 4
    lshw -c video
    *-display
    description: VGA compatible controller
    product: 2nd Generation Core Processor Family Integrated Graphics Controller
    vendor: Intel Corporation
    physical id: 2
    bus info: pci@0000:00:02.0
    version: 09
    width: 64 bits
    clock: 33MHz
    capabilities: msi pm vga_controller bus_master cap_list rom
    configuration: driver=i915 latency=0
    resources: irq:48 memory:f5000000-f53fffff memory:e0000000-efffffff ioport:e000(size=64)
    vainfo
    libva info: VA-API version 0.35.0
    libva info: va_getDriverName() returns 0
    libva info: Trying to open /usr/lib/dri/i965_drv_video.so
    libva info: Found init function __vaDriverInit_0_35
    libva info: va_openDriver() returns 0
    vainfo: VA-API version: 0.35 (libva 1.3.0)
    vainfo: Driver version: Intel i965 driver - 1.3.0
    vainfo: Supported profile and entrypoints
    VAProfileMPEG2Simple : VAEntrypointVLD
    VAProfileMPEG2Main : VAEntrypointVLD
    VAProfileH264ConstrainedBaseline: VAEntrypointVLD
    VAProfileH264ConstrainedBaseline: VAEntrypointEncSlice
    VAProfileH264Main : VAEntrypointVLD
    VAProfileH264Main : VAEntrypointEncSlice
    VAProfileH264High : VAEntrypointVLD
    VAProfileH264High : VAEntrypointEncSlice
    VAProfileVC1Simple : VAEntrypointVLD
    VAProfileVC1Main : VAEntrypointVLD
    VAProfileVC1Advanced : VAEntrypointVLD
    VAProfileNone : VAEntrypointVideoProc

    Mar 30 20:27:09 localhost kernel: [drm] stuck on render ring
    Mar 30 20:27:09 localhost kernel: [drm] stuck on blitter ring
    Mar 30 20:27:09 localhost kernel: [drm] GPU crash dump saved to /sys/class/drm/card0/error
    Mar 30 20:27:09 localhost kernel: [drm] GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.
    Mar 30 20:27:09 localhost kernel: [drm] Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel
    Mar 30 20:27:09 localhost kernel: [drm] drm/i915 developers can then reassign to the right component if it's not a kernel issue.
    Mar 30 20:27:09 localhost kernel: [drm] The gpu crash dump is required to analyze gpu hangs, so please always attach it.
    Looks like a driver / software problem to me, i suggest you follow the advice above and register a bugreport.
    Check you pacman log for recent updates for the kernel , mesa and xf86-video-intel .
    Either of them could be the cause.

  • [Solved] Trouble with WPA/WPA2 and wireless connections (ath9k)

    Hi, I'm having some issues with my Arch install. Right now I'm posting this from Windows so I don't have precise logs, but I mostly remember the issue so bare with me.
    I'm using ath9k with my Bigfoot Killer 1202 card (not sure what the exact model is), and I can't connect to my university's WPA/WPA2 access point. Using wpa_supplicant I get the error "4-way handshake failed - pre-shared key may be incorrect".
    So after some digging I found that I can get it to authenticate with nohwcrypt=1, but when I rmmod ath9k && modprobe ath9k nohwcrypt=1 it enumerates itself as wlan0 (instead of wlp3s0, which is what I get from booting up).
    Then I made the file /etc/modprobe.d/ath9k with the contents "options ath9k nohwcrypt=1" but it seems to still not want to connect until I rmmod && modprobe manually.
    Can someone point me in the right direction on how to fix this issue? I haven't used Arch in a few years and a lot of things have changed, and so far it seems nothing works as I expect it to. Also, how do I get my wifi card to enumerate as the same device no matter when I load ath9k? I don't care if it's called wlan0 or wlp3s0, I just want it to stay the same.
    Edit: Additional Info
    lspci
    03:00.0 Network controller: Qualcomm Atheros AR9462 Wireless Network Adapter (rev 01)
    cat /sys/module/ath9k/parameters/nohwcrypt
    [root@huxley pobegam]# cat /sys/module/ath9k/parameters/nohwcrypt
    0
    (so I guess it isn't loading from ath9k.conf on boot after all?)
    wpa_supplicant output
    <3>CTRL-EVENT-SCAN-RESULTS
    <3>WPS-AP-AVAILABLE
    <3>CTRL-EVENT-SCAN-RESULTS
    <3>WPS-AP-AVAILABLE
    <3>CTRL-EVENT-SSID-REENABLED id=0 ssid="Student"
    <3>Trying to associate with 00:19:30:6b:1b:a2 (SSID='Student' freq=2412 MHz)
    <3>Association request to the driver failed
    <3>Associated with 00:19:30:6b:1b:a2
    <4>WPA: Failed to set PTK to the driver (alg=2 keylen=32 bssid=00:19:30:6b:1b:a2)
    <3>CTRL-EVENT-DISCONNECTED bssid=00:19:30:6b:1b:a2 reason=1 locally_generated=1
    <3>WPA: 4-Way Handshake failed - pre-shared key may be incorrect
    <3>CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Student" auth_failures=2 duration=20
    <3>CTRL-EVENT-SCAN-RESULTS
    <3>WPS-AP-AVAILABLE
    wpa_supplicant configuration file
    [root@huxley wpa_supplicant]# cat sunyit.conf
    ctrl_interface=/var/run/wpa_supplicant
    update_config=1
    network={
    scan_ssid=1
    ssid="Student"
    proto=WPA
    key_mgmt=WPA-PSK
    pairwise=TKIP
    group=TKIP
    priority=1
    psk="Wireless@SUNYIT"
    Last edited by Pobega (2013-10-02 03:55:51)

    Update: It seems to work ONLY when I rmmod && modprobe; if I force nohwcrypt=1 at boot it doesn't seem to work. Seems kind of odd... Wonder if this is a kernel issue?
    Edit: Also updated with dmesg (because I'm an idiot and forgot to include it)
    [ 2.802118] hub 3-1:1.0: USB hub found
    [ 2.802210] hub 3-1:1.0: 6 ports detected
    [ 2.876377] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 2.876380] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:90:f5:ea:54:ff
    [ 2.876382] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 2.876418] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
    [ 2.876688] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 2.876697] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.908262] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 2.913682] [drm] Memory usable by graphics device = 2048M
    [ 2.913687] checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
    [ 2.913688] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 2.913702] Console: switching to colour dummy device 80x25
    [ 2.913836] i915 0000:00:02.0: setting latency timer to 64
    [ 2.948473] i915 0000:00:02.0: irq 47 for MSI/MSI-X
    [ 2.948482] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.948483] [drm] Driver supports precise vblank timestamp query.
    [ 2.948547] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.032964] hub 4-1:1.0: USB hub found
    [ 3.033016] hub 4-1:1.0: 8 ports detected
    [ 3.038244] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3.169633] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    [ 3.221450] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
    [ 3.237256] fbcon: inteldrmfb (fb0) is primary device
    [ 3.271526] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    [ 3.271623] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 3.491212] Switched to clocksource tsc
    [ 4.027317] psmouse serio2: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x126c00, board id: 2439, fw id: 1215751
    [ 4.066270] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input7
    [ 4.477837] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 4.967580] Console: switching to colour frame buffer device 240x67
    [ 4.977758] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 4.977761] i915 0000:00:02.0: registered panic notifier
    [ 4.978457] acpi device:45: registered as cooling_device8
    [ 4.978479] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 4.978579] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input8
    [ 4.978690] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 4.978877] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
    [ 4.979210] snd_hda_intel 0000:00:03.0: irq 49 for MSI/MSI-X
    [ 4.989927] hda_codec: invalid CONNECT_LIST verb 5[1]:0
    [ 4.989974] hda_codec: invalid CONNECT_LIST verb 6[1]:0
    [ 4.990029] hda_codec: invalid CONNECT_LIST verb 7[1]:0
    [ 4.991935] input: HDA Intel MID HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
    [ 4.992031] input: HDA Intel MID HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10
    [ 4.992087] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
    [ 4.994100] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
    [ 4.994171] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13
    [ 6.977361] wlan0: authenticate with 00:1d:45:cd:c1:c2
    [ 6.987213] wlan0: send auth to 00:1d:45:cd:c1:c2 (try 1/3)
    [ 6.988904] wlan0: authenticated
    [ 6.989040] ath9k 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [ 6.989044] ath9k 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    [ 6.989046] ath9k 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    [ 6.990123] wlan0: associate with 00:1d:45:cd:c1:c2 (try 1/3)
    [ 6.993437] wlan0: RX AssocResp from 00:1d:45:cd:c1:c2 (capab=0x431 status=0 aid=9)
    [ 6.993577] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 6.993624] wlan0: associated
    [ 6.998736] wlan0: deauthenticating from 00:1d:45:cd:c1:c2 by local choice (reason=1)
    [ 7.002835] cfg80211: Calling CRDA for country: US
    [ 24.197672] wlan0: authenticate with 00:1d:45:cd:c1:c2
    [ 24.207666] wlan0: send auth to 00:1d:45:cd:c1:c2 (try 1/3)
    [ 24.209338] wlan0: authenticated
    [ 24.209468] ath9k 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [ 24.209472] ath9k 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    [ 24.209474] ath9k 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    [ 24.210593] wlan0: associate with 00:1d:45:cd:c1:c2 (try 1/3)
    [ 24.213338] wlan0: RX AssocResp from 00:1d:45:cd:c1:c2 (capab=0x31 status=0 aid=9)
    [ 24.213481] wlan0: associated
    [ 24.221396] wlan0: deauthenticating from 00:1d:45:cd:c1:c2 by local choice (reason=1)
    [ 24.225880] cfg80211: Calling CRDA to update world regulatory domain
    [ 50.045002] wlan0: authenticate with 00:19:30:6b:1b:a2
    [ 50.054957] wlan0: send auth to 00:19:30:6b:1b:a2 (try 1/3)
    [ 50.056639] wlan0: authenticated
    [ 50.056775] ath9k 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [ 50.056779] ath9k 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    [ 50.056781] ath9k 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    [ 50.057899] wlan0: associate with 00:19:30:6b:1b:a2 (try 1/3)
    [ 50.061270] wlan0: RX AssocResp from 00:19:30:6b:1b:a2 (capab=0x431 status=0 aid=89)
    [ 50.061426] wlan0: associated
    [ 50.073874] wlan0: deauthenticating from 00:19:30:6b:1b:a2 by local choice (reason=1)
    [ 50.078661] cfg80211: Calling CRDA to update world regulatory domain
    [ 75.892318] wlan0: authenticate with 00:1d:45:cd:c1:c2
    [ 75.902267] wlan0: send auth to 00:1d:45:cd:c1:c2 (try 1/3)
    [ 75.904108] wlan0: authenticated
    [ 75.904254] ath9k 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [ 75.904256] ath9k 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    [ 75.904257] ath9k 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    [ 75.905145] wlan0: associate with 00:1d:45:cd:c1:c2 (try 1/3)
    [ 75.908344] wlan0: RX AssocResp from 00:1d:45:cd:c1:c2 (capab=0x401 status=17 aid=0)
    [ 75.908348] wlan0: 00:1d:45:cd:c1:c2 denied association (code=17)
    [ 75.918844] wlan0: deauthenticating from 00:1d:45:cd:c1:c2 by local choice (reason=3)
    [ 86.045293] wlan0: authenticate with 00:19:30:6b:1b:52
    [ 86.059226] wlan0: send auth to 00:19:30:6b:1b:52 (try 1/3)
    [ 86.061328] wlan0: authenticated
    [ 86.061475] ath9k 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [ 86.061477] ath9k 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    [ 86.061478] ath9k 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    [ 86.064853] wlan0: associate with 00:19:30:6b:1b:52 (try 1/3)
    [ 86.169949] wlan0: associate with 00:19:30:6b:1b:52 (try 2/3)
    [ 86.179194] wlan0: RX AssocResp from 00:19:30:6b:1b:52 (capab=0x431 status=0 aid=22)
    [ 86.179323] wlan0: associated
    [ 89.123073] wlan0: deauthenticated from 00:19:30:6b:1b:52 (Reason: 4)
    [ 89.147287] cfg80211: Calling CRDA for country: US
    [ 105.770381] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None
    [ 105.770386] e1000e 0000:00:19.0 eth0: 10/100 speed: disabling TSO
    [ 105.770418] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 114.898216] wlan0: authenticate with 00:19:30:6b:1b:a2
    [ 114.912130] wlan0: send auth to 00:19:30:6b:1b:a2 (try 1/3)
    [ 114.914102] wlan0: authenticated
    [ 114.914235] ath9k 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [ 114.914239] ath9k 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    [ 114.914241] ath9k 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    [ 114.914348] wlan0: associate with 00:19:30:6b:1b:a2 (try 1/3)
    [ 114.916916] wlan0: RX AssocResp from 00:19:30:6b:1b:a2 (capab=0x401 status=17 aid=0)
    [ 114.916920] wlan0: 00:19:30:6b:1b:a2 denied association (code=17)
    [ 114.937999] wlan0: deauthenticating from 00:19:30:6b:1b:a2 by local choice (reason=3)
    [ 125.064495] wlan0: authenticate with 00:19:30:6b:1b:52
    [ 125.078431] wlan0: send auth to 00:19:30:6b:1b:52 (try 1/3)
    [ 125.081945] wlan0: authenticated
    [ 125.082083] ath9k 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
    [ 125.082094] ath9k 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
    [ 125.082095] ath9k 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
    [ 125.084061] wlan0: associate with 00:19:30:6b:1b:52 (try 1/3)
    [ 125.098558] wlan0: RX AssocResp from 00:19:30:6b:1b:52 (capab=0x431 status=0 aid=22)
    [ 125.098683] wlan0: associated
    [ 127.937457] wlan0: deauthenticated from 00:19:30:6b:1b:52 (Reason: 4)
    [ 127.959914] cfg80211: Calling CRDA to update world regulatory domain
    Edit: I ended up solving my problem -- the issue I was running into was that ath9k was baked into my initrd without nohwcrypt=1. I opted to `mkinitcpio` again without MODULES='ath9k' -- alternatively, you could add a modprobe.d file to FILES= to get it to work, but I just figured this is simpler.
    Last edited by Pobega (2013-10-02 03:57:27)

Maybe you are looking for

  • How do I download an OS (Lion) for a used-IMac that's had a complete memory wipe?

    I just recently bought a used-Imac (only 5 months old) from a friend of mine which he did a complete memory wipe on the computer. Operating System and all. He had Mountain Lion which is the operating system the computer is asking me to reinstall but

  • Can't open file on external hard drive?

    Hi, I'm using an external hard drive for mac backup and also to store photo files.  I copied some photo files to the drive about two weeks ago and their icon appears, but when I want to open them, I get an error message: "The alias "..." can't be ope

  • Don't Want Mail App as a Default app

    If I am answering an email on yahoo or hotmail or gmail and I click a "mailto" link, Mail pops up as the default app as opposed to me being able to respond inside whatever I am presently using. How do I keep this from happenning? Thanks for the help

  • Update InDesign Server CC not possible

    Hi, I'm using an InDesign Server CC in Version 9.0 with Windows Server When i will update to 9.2 or 9.2.2 i got error message: This patch is not suitable for you. Looking over the menu "Help" of the product to check for updates to get a list of avail

  • Lock front panel until the event case for this event completes

    A Dynamic Event is a filtered event? Is this why "Lock front panel until the event case for this event completes" is not shown on Edit Event window dialog? I use Dynamic Event so I can subvi the event structure. I need stop my app from locking the FP