Systemd? why?

i installed systemd with initscripts for arch.
i improve my boot just a little and something like rc.local.service don't work.
my question is: why systemd for a fast distribution like archlinux?

mrmylanman wrote:
Just to throw some additional information in here:
systemd will be officially supported soon (see http://mailman.archlinux.org/pipermail/ … 2803.html), and may even become the default.
Not sure if anyone knew that or not, but I'd say this lends more "credibility" to it, in my opinion.  I also have had nothing but pleasant experiences using it.
Yeah i read that, which was what made me wanting to vent and ask and discuss it again.
tomegun wrote:
PReP wrote:
1: - on demand activation of services (e.g. you really don't need cups running all the time)
   My take on this, is that it is better to not run too many services in the first place,
   even if you "feel" like you need this and that.
   For the few that you use very rarely, i feel it very easy to just start it myself.
   In this case, instead of "running cups all the time", one would run the system to check when to run this or that - all the time instead.
I don't really get your point here. With systemd you get all the benefit of not running any unneeded daemons, but at the same time you never have to start daemons manually when needed... Why would you rather manually start cups when you need it instead of having it start by itself only when needed?
2: - almost anything is a unit, meaning it can be a dependency (e.g. any sysfs path, device, filesystem path)
   What are the biggest benifit of this in practice, for a fine-tuned maching not running too many services?
The simpler your setup, the smaller the benefit of course. That said, the benefit would be that you can start a daemon when a certain device is plugged in (e.g. bluez when a bluetooth adapter appears or cups when a printer is connected), or when a certain file appears, etc.
This is obviously not something for everyone, but for early boot (think rc.sysinit) this kind of control is very useful, and allows us to remove some hacks that we currently have.
3: - automounting of any device on first access with fsck pre-mount (how often do you really need /boot mounted?)
   For me, all the normal drives are mounted in fstab, to be there all the time anyways,
   and others, like my usb or cd'drives, i really do prefer to mount them myself at need,
   most usb drives has a long wake-up time, so it is quite annoying to have it re-mounted when accessed,
   and it takes quite a bit of time,
Systemd is only meant to control devices in /etc/fstab, typically your usb devices would be controlled by udisks, so that is sort of a different discussion. It might be worth pointing out that systemd would not "re-mount on access", the fs is fsck'ed and mounted on first access and stays mounted after that. Examples of why this might be useful is, as Dave mentioned, fs'es that are rarely used (/boot), but also fs'es that are always mounted might benefit from automounting. In order to speed up my boot I automount my /home. This means that systemd will start fscking/mounting it as soon as it can, but it will not wait for /home to be available before starting kdm (or any other service). Rather, if and when kdm tries to access /home it will just wait until the directory becomes available.
4; - daemon supervision
   This i cannot comment, since i do not have much knowledge on the subject,
   what are supervised, besides from the previously noted dep-check, and what are the benifits?
This (along with the point below) is the most important feature of systemd, imho. The point is that with systemd an administrator can know the state of the system, which is not really possible with sysvinit. You can find out if a daemon is running, stopped or crashed, and you know which processes belong to which daemon. Even if you have several instances of the same daemon, and it's children have double-forked (so a simple "ps aux" tells you nothing). Once we have this, we can make policies of what to do in given scenarios. Restarting crashing daemons, etc. As of the next version of systemd we'll also have (optional) watchdog support. I.e., if a daemon hangs without crashing, it will be restarted, and if systemd itself hangs  the computer will be rebooted.
5: - fine grained control of services -- niceness, oom_adj_score, scheduling policy, fd 0,1,2 redirections, syslog facility/prio, security limits...
   Are these really properties that we cannot already control without systemd as a system-swiss-army-knife?
Everything can be controlled in the individual rc script now. However, especially in the case of security sensitive settings, getting it right is very difficult so it either not done, or it is done wrongly. In systemd's unit file, you just specifiy what you want, and systemd itself will take care of all the fiddly details to get it right (and if there are bugs, they will be fixed in one place that benefit all daemons, on all distros).
Finally, the boot-time discussion also feels a bit unmotivated,
again, not booting every service under the sun already,
and computer-speed increasing alleviates this.
I believe that boot-time can never be fast enough, and with systemd we have the opportunity to improve it a lot. Imagine the embedded case of switching on a phone / TV. You don't want to wait around for several seconds before you can use it. The fact that we accept long waits when it comes to computers is just sad imho.
While systemd already improves speed somewhat (or a lot, depending on who you ask), there are still lots of cases to improve, so I am very optimistic about this. The difference between systemd and sysvinit is that in sysvinit we don't have the architecture in place to start optimizing, and we don't have contributors who focus on this.
The booting time is the thing that bothers me most to be hearing about repetively as a reason for systemd, even if that might not be it's larger drive.
The boot times _are_ fast already, when one deals carefully with what one runs or loads,
shaving,. say, 1-10 to perhaps even 20 seconds for booting off (if going extreme), what would one have done in those few seconds that was so important?
For me, it feels like taking one, or three sips on my coffe or not, before getting to business,
it is not something that hinders me from completing my work, those few seconds,
and a stable system is not meant to be booted often at all.
Even booting as often as once a day, 20 seconds a day is not a critical lose of time.
I boot in about 8 seconds after bios and grub has done their thing, and my mothers much older machine does it in 15 perhaps,
it was a long time ago boot time felt annyoing in my opinion.
The other virtues you meantion, they do sound like good things, certainly,
but as it stands now, having followed the systemd mailing list, and arch-dev-mail discussions, and threads here on arch,
i still don't see any great benifits from what i read people discussing/saying/reporting.
Most often, it is about why something that has already worked well, does not work that easily, with systemd.
And in the systemd mailing list, many replies to things not working seems to end with stuff like:
"Well, we won't support that no more/that is not supported no more on fedora, other distros will probably follow suit",
Why all the fuss?, do we really need to repair things?
I will deal with systemd when i have too, i just do not think it fits into either KISS,, or linux principle,
And i hope Arch can be on systemd and still feel Arch, not just turning into "a distro like the others only with pacman".
Systemd gives me this feeling of slowly loosing the control i have gotten with linux, over,
say, windows-systems and their "services".
But, i think i will save some of my arguments until we have seen where systemd takes us, in linux,
I just hope people stay positively/constructively critical and thinks things over closely
(Oh i do find it hard explaining my thoughts on this in words)
Last edited by PReP (2012-04-15 16:46:23)

Similar Messages

  • Systemd: why am I waiting for wicd/mysqld?

    Recently I moved from init scripts to systemd. The available guide ensured a smooth transition.
    Nobody got harmed in the process.
    But: booting is slower since then. As can be seen below, I'm waiting quite some time for the mysqld and wicd daemons.
    ➜ systemd-analyze blame
    17482ms mysqld.service
    10968ms wicd.service
    5786ms gdm.service
    4176ms colord.service
    3768ms systemd-logind.service
    1109ms systemd-vconsole-setup.service
    801ms systemd-remount-fs.service
    761ms systemd-udevd.service
    742ms sys-kernel-debug.mount
    723ms console-kit-log-system-start.service
    719ms dev-mqueue.mount
    706ms systemd-binfmt.service
    659ms rc-local.service
    640ms dev-hugepages.mount
    596ms systemd-user-sessions.service
    590ms proc-sys-fs-binfmt_misc.mount
    548ms systemd-udev-trigger.service
    397ms accounts-daemon.service
    308ms polkit.service
    246ms systemd-sysctl.service
    243ms systemd-tmpfiles-setup.service
    186ms udisks.service
    107ms upower.service
    86ms console-kit-daemon.service
    61ms rtkit-daemon.service
    22ms udisks2.service
    18ms home.mount
    13ms tmp.mount
    1ms sys-fs-fuse-connections.mount
    This seems odd to me. Since systemd starts services in parallel and is capable of starting them 'on the fly' when needed, why should I wait for them at boot?
    Is there a way to start stuff like `mysqld.service` and `wicd.service` later? For example, after `gdm.service` is done, allowing me to sign in and do stuff?
    As suggested by the guide I made sure all services are started at boot by running
    systemctl enable <service-name>
    for every service in my former DEAMONS array.
    Last edited by A.J.Rouvoet (2012-11-07 22:53:50)

    lothar_m wrote:
    in my machine netcfg really takes some time too.
    $systemd-analyze blame
    16072ms netcfg.service
    9595ms i2prouter.service
    4164ms postgresql.service
    2331ms udisks2.service
    2010ms systemd-vconsole-setup.service
    1896ms systemd-logind.service
    Off topic: Nice Blackadder Quote you have as a signature ;-)

  • Hacking systemd and encrypted volumes

    I am slowly migrating my system over to partitions encrypted with dm-crypt/LUKS. I am working on /var now. I would like to have the keyfile for /var created each time during boot based off my specific hardware and stored to /tmp (the exact same keyfile would be created each time since my hardware will not be changing). /var would automatically unlock from this keyfile. The idea is that, unless someone has my login credentials they will not be able to read /var while my computer is on. If someone tries to read the hard drive in another computer, they will never find the keyfile. And if the thief is smart enough to know what's going on, they will have a hard time figuring out how the keyfile is created.
    So, I'm thinking I need a boot order as follows:
    Mount / and /tmp
    Create keyfile
    Mount /var
    Delete keyfile from /tmp
    Continue with rest of boot
    Is it possible to hack systemd to do this? Any tips on how to do it? I can write a shell script to create the file and mount /var (since /etc/fstab would have already been read) but I'm not sure how to make it run at the right time in systemd.

    Why would someone steal your hard drive and not your computer? Hard drives aren't that valuable. And if they stole your computer, and your root wasn't encrypted, they would be able to figure out how to decrypt your /var fairly easily. If your root is encrypted, then any old keyfile would work, as they couldn't access it unless they decrypted your root. So your scheme would only work in the odd scenario where a person steals your hard drive and not your computer. Taking out your hard drive would take a decent amount of time; it wouldn't just be a snatch and grab. So if a thief is going to take that much time to steal your hard drive only (leaving your computer behind), then they would probably have enough time to use a livecd to check if your hard drive is encrypted, and how. If your root is encrypted, they might do the evil maid attack. And if a person invests THAT much time into stealing your data, they would probably check to see if they could decrypt the rest of your data before they yanked your drives and ran.
    Honestly, I don't think your scheme would secure your system any more than a basic full disk encryption would. There is a far better chance of an attack coming from the net than someone trying to break your encryption. Your encryption can't stop those attacks.

  • Weird startup trouble - system not properly initializing.

    Hi guys, I'd appreciate any help you can give.
    The trouble is that the system isn't properly starting up. I haven't changed anything since it last booted properly except for a pacman -Syu system upgrade.
    http://imageshack.com/a/img36/4375/0dse.jpg
    I tried fixing the "dirty bit" in /dev/sdb1 (my boot partition), but it has since come back. How am I supposed to check systemctl logs if I don't have a working system?? Why, systemd, why?
    Anyway, what should I do to diagnose the problem?
    -- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --

    cernel wrote:Well, this is embarrassing. Sort of. It turns out that my filesystem was filled to capacity (although df -h returned only 90% usage). I'm still not quite sure why my system would break down with a single partition being filled to a mere 90%; would you care to enlighten me?
    There seem to be a number of possibilities. If you search the forums, you can follow up the leads which match the possibilities on your system e.g. it seems to depend on file system, maybe blocksize, various fs settings/tunables, etc. 
    As a side note, journalctl apparently doesn't work on a live USB under those circumstances.
    What error did you get? And did you direct it at the journal? Or did you try to chroot?
    Last edited by cfr (2013-11-09 04:05:25)

  • System always auto-suspends when the lid is closed

    Hello,
    I am trying to prevent my laptop (a System76 Lemur Ultra 3) from suspending when the lid is closed.  No matter what I change in the configuration, the laptop always suspends when the lid is closed.  The output of journalctl is as follows after this happens:
    Feb 21 04:35:32 hostname systemd-logind[196]: Lid closed.
    Feb 21 04:35:32 hostname systemd-logind[196]: Suspending...
    Feb 21 04:35:32 hostname systemd[1]: Starting Sleep.
    Feb 21 04:35:32 hostname systemd[1]: Reached target Sleep.
    Feb 21 04:35:32 hostname systemd[1]: Starting Suspend...
    Feb 21 04:35:33 hostname systemd-sleep[2001]: Suspending system...
    Feb 21 04:35:33 hostname kernel: PM: Syncing filesystems ... done.
    Feb 21 04:35:33 hostname kernel: PM: Preparing system for mem sleep
    Feb 21 04:35:43 hostname kernel: Freezing user space processes ... (elapsed 0.06 seconds) done.
    Feb 21 04:35:43 hostname kernel: Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Feb 21 04:35:43 hostname systemd[1]: Time has been changed
    Feb 21 04:35:43 hostname systemd[1]: systemd-tmpfiles-clean.timer: time change, recalculating next elapse.
    Feb 21 04:35:43 hostname systemd-logind[196]: Lid opened.
    Feb 21 04:35:43 hostname acpid[190]: client 1812[0:100] has disconnected
    Feb 21 04:35:43 hostname kernel: PM: Entering mem sleep
    Feb 21 04:35:43 hostname kernel: Suspending console(s) (use no_console_suspend to debug)
    Feb 21 04:35:43 hostname kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Feb 21 04:35:43 hostname kernel: sd 0:0:0:0: [sda] Stopping disk
    Feb 21 04:35:43 hostname kernel: PM: suspend of devices complete after 1092.547 msecs
    Feb 21 04:35:43 hostname kernel: PM: late suspend of devices complete after 0.556 msecs
    Feb 21 04:35:43 hostname kernel: jme 0000:03:00.0: wake-up capability enabled by ACPI
    Feb 21 04:35:43 hostname kernel: ehci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
    Feb 21 04:35:43 hostname kernel: ehci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
    Feb 21 04:35:43 hostname kernel: PM: noirq suspend of devices complete after 66.095 msecs
    Feb 21 04:35:43 hostname kernel: ACPI: Preparing to enter system sleep state S3
    Feb 21 04:35:43 hostname kernel: PM: Saving platform NVS memory
    Feb 21 04:35:43 hostname kernel: Disabling non-boot CPUs ...
    Feb 21 04:35:43 hostname kernel: smpboot: CPU 1 is now offline
    Feb 21 04:35:43 hostname kernel: smpboot: CPU 2 is now offline
    Feb 21 04:35:43 hostname kernel: smpboot: CPU 3 is now offline
    Feb 21 04:35:43 hostname kernel: smpboot: CPU 4 is now offline
    Feb 21 04:35:43 hostname kernel: smpboot: CPU 5 is now offline
    Feb 21 04:35:43 hostname kernel: smpboot: CPU 6 is now offline
    Feb 21 04:35:43 hostname kernel: smpboot: CPU 7 is now offline
    Feb 21 04:35:43 hostname kernel: Extended CMOS year: 2000
    Feb 21 04:35:43 hostname kernel: ACPI: Low-level resume complete
    Feb 21 04:35:43 hostname kernel: PM: Restoring platform NVS memory
    Feb 21 04:35:43 hostname kernel: Extended CMOS year: 2000
    Feb 21 04:35:43 hostname kernel: Enabling non-boot CPUs ...
    Feb 21 04:35:43 hostname systemd-sleep[2001]: System resumed.
    Feb 21 04:35:43 hostname kernel: smpboot: Booting Node 0 Processor 1 APIC 0x2
    Feb 21 04:35:43 hostname kernel: CPU1 is up
    Feb 21 04:35:43 hostname kernel: smpboot: Booting Node 0 Processor 2 APIC 0x4
    Feb 21 04:35:43 hostname kernel: CPU2 is up
    Feb 21 04:35:43 hostname kernel: smpboot: Booting Node 0 Processor 3 APIC 0x6
    Feb 21 04:35:43 hostname kernel: CPU3 is up
    Feb 21 04:35:43 hostname kernel: smpboot: Booting Node 0 Processor 4 APIC 0x1
    Feb 21 04:35:43 hostname kernel: CPU4 is up
    Feb 21 04:35:43 hostname kernel: smpboot: Booting Node 0 Processor 5 APIC 0x3
    Feb 21 04:35:43 hostname kernel: CPU5 is up
    Feb 21 04:35:43 hostname kernel: smpboot: Booting Node 0 Processor 6 APIC 0x5
    Feb 21 04:35:43 hostname kernel: CPU6 is up
    Feb 21 04:35:43 hostname kernel: smpboot: Booting Node 0 Processor 7 APIC 0x7
    Feb 21 04:35:43 hostname kernel: CPU7 is up
    Feb 21 04:35:43 hostname kernel: ACPI: Waking up from system sleep state S3
    Feb 21 04:35:43 hostname kernel: ehci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
    Feb 21 04:35:43 hostname kernel: ehci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
    Feb 21 04:35:43 hostname kernel: PM: noirq resume of devices complete after 133.251 msecs
    Feb 21 04:35:43 hostname kernel: PM: early resume of devices complete after 0.425 msecs
    The first thing I did was to disable systemd's acpi features by setting /etc/systemd/logind.conf as follows:
    # This file is part of systemd.
    # systemd is free software; you can redistribute it and/or modify it
    # under the terms of the GNU Lesser General Public License as published by
    # the Free Software Foundation; either version 2.1 of the License, or
    # (at your option) any later version.
    # See logind.conf(5) for details
    [Login]
    #NAutoVTs=6
    #ReserveVT=6
    #KillUserProcesses=no
    #KillOnlyUsers=
    #KillExcludeUsers=root
    #Controllers=
    #ResetControllers=cpu
    #InhibitDelayMaxSec=5
    HandlePowerKey=ignore
    HandleSuspendKey=ignore
    HandleHibernateKey=ignore
    HandleLidSwitch=ignore
    #PowerKeyIgnoreInhibited=no
    #SuspendKeyIgnoreInhibited=no
    #HibernateKeyIgnoreInhibited=no
    #LidSwitchIgnoreInhibited=yes
    IdleAction=suspend
    IdleActionSec=45min
    However, the behavior was the same as before.  I also tried setting
    LidSwitchIgnoreInhibited=no
    but after reading man 5 logind.conf it seems that this is unnecessary (and it had no effect when I tried it).
    acpid is also installed but I have commented out the contents of /etc/acpi/handler.sh as well as all the scripts in /etc/acpi/actions.  I noticed that there is also a UPower daemon which was installed as a dependency and thought that it might be triggering the suspend.  I tried setting
    IgnoreLid=true
    in /etc/UPower/UPower.conf but this also had no effect.
    systemctl list-units has the following output:
    UNIT LOAD ACTIVE SUB DESCRIPTION
    proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point
    sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1b.0/sound/card0
    sys-devices-pci0000:00-0000:00:1c.2-0000:02:00.0-net-wlan0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0/net/wlan0
    sys-devices-pci0000:00-0000:00:1c.3-0000:03:00.0-net-eth0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1c.3/0000:03:00.0/net/eth0
    sys-devices-pci0000:00-0000:00:1d.0-usb2-2\x2d1-2\x2d1.2-2\x2d1.2.1-2\x2d1.2.1.1-2\x2d1.2.1.1.1-2\x2d1.2.1.1.1:1.2-sound-card1.device loaded active plugged 0819
    sys-devices-pci0000:00-0000:00:1d.0-usb2-2\x2d1-2\x2d1.2-2\x2d1.2.1-2\x2d1.2.1.3.device loaded active plugged Deskjet_5400_series
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device loaded active plugged TSSTcorp_CDDVDW_SN-208AB
    sys-devices-platform-serial8250-tty-ttyS0.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS0
    sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
    sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
    sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
    sys-module-configfs.device loaded active plugged /sys/module/configfs
    sys-subsystem-net-devices-eth0.device loaded active plugged /sys/subsystem/net/devices/eth0
    sys-subsystem-net-devices-wlan0.device loaded active plugged /sys/subsystem/net/devices/wlan0
    -.mount loaded active mounted /
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File System
    media-usbhd\x2dsda1.mount loaded active mounted /media/usbhd-sda1
    sys-kernel-config.mount loaded active mounted Configuration File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted Temporary Directory
    cups.path loaded active waiting CUPS Printer Service Spool
    systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch
    systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch
    acpid.service loaded active running ACPI event daemon
    atd.service loaded active running ATD daemon
    cronie.service loaded active running Periodic Command Scheduler
    cups.service loaded active running CUPS Printing Service
    dbus.service loaded active running D-Bus System Message Bus
    [email protected] loaded active running Getty on tty1
    laptop-mode.service loaded active exited Laptop Mode Tools
    polkit.service loaded active running Authorization Manager
    postfix.service loaded active running Postfix Mail Transport Agent
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-modules-load.service loaded active exited Load Kernel Modules
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-tmpfiles-setup.service loaded active exited Recreate Volatile Files and Directories
    systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-user-sessions.service loaded active exited Permit User Sessions
    systemd-vconsole-setup.service loaded active exited Setup Virtual Console
    upower.service loaded active running Daemon for power management
    wicd.service loaded active running Wicd a wireless and wired network manager for Linux
    acpid.socket loaded active listening ACPID Listen Socket
    cups.socket loaded active running CUPS Printing Service Sockets
    dbus.socket loaded active running D-Bus System Message Bus Socket
    dmeventd.socket loaded active listening Device-mapper event daemon FIFOs
    lvmetad.socket loaded active listening LVM2 metadata daemon socket
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-udevd-control.socket loaded active listening udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User
    network.target loaded active active Network
    printer.target loaded active active Printer
    remote-fs.target loaded active active Remote File Systems
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    suspend.target loaded active active Suspend
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    74 loaded units listed. Pass --all to see loaded but inactive units, too.
    To show all installed unit files use 'systemctl list-unit-files'.
    Any ideas on what might be causing the system to suspend when the lid is closed would be appreciated.
    Thanks
    Last edited by Superposition (2013-02-21 15:48:06)

    qinohe wrote:You don't have to disable acpi!
    Since you made the complete switch to systemd, why not let systemd handle this kind of events?
    I was referring to the suggestion of setting acpi=off on the kernel line.  systemd can only run a few preset actions on events like lid close (e.g. suspend, poweroff, ignore, etc.).  I need to run custom scripts.  Also, for some reason I still do not fully understand, it was not working properly.  The log in my original post seems to show that it was initiating the suspend.
    qinohe wrote:
    progandy wrote:Yes, it is easier, but my laptop should react differently depending on the power source. With AC power lid-switch locks the screen, in battery mode it suspends. That is impossible with systemd.
    Yes you need something like laptop-mode-tools for that, I know systemd will not do that, for now.
    But that is not the issue here!, the issue here is that the llid-switch-button' shouldn't be used at all.
    For as far as possible I would still recommend systemd to handle your events!, but it's your decision finally!
    You need acpid for that not laptop-mode-tools.  This is exactly what apcid is for --- running user scripts on ACPI events.
    Anyway, I finally have this fixed though I still have no idea what the problem was.  I ran out of ideas on how to fix it and #archlinux didn't know either so I went the painful but sure route.  I did full reinstall and reinstalled all programs.  logind was still behaving as this point (not ignoring it's logind.conf file as it seemed to be before the reinstall) after this so I concluded that the packages installed were not the problem at least with their default configs.  After that, I gradually restored the config files I cared about while testing to see if logind still worked correctly.  Contrary, to what I expected it never broke and I was able to restore all modified configs and get correct behavior.
    I suspect there was some old out of date config file somewhere that was causing the problem but it's hard to say which one it was.  I could probably figure it out with a bit more experimentation but have already spent enough time fixing this...
    In case anyone else needs a similar configuration, the relevant files are as follows.  This sets up the system to lock whenever systemd executes a suspend action.  It also sets up acpid to suspend on lid close.
    Make sure you have installed acpid and enabled it to run at startup.
    /etc/systemd/logind.conf
    # This file is part of systemd.
    # systemd is free software; you can redistribute it and/or modify it
    # under the terms of the GNU Lesser General Public License as published by
    # the Free Software Foundation; either version 2.1 of the License, or
    # (at your option) any later version.
    # See logind.conf(5) for details
    [Login]
    /etc/systemd/logind.conf
    #NAutoVTs=6
    #ReserveVT=6
    #KillUserProcesses=no
    #KillOnlyUsers=
    #KillExcludeUsers=root
    #Controllers=
    #ResetControllers=cpu
    #InhibitDelayMaxSec=5
    HandlePowerKey=ignore
    HandleSuspendKey=ignore
    HandleHibernateKey=ignore
    HandleLidSwitch=ignore
    #PowerKeyIgnoreInhibited=no
    #SuspendKeyIgnoreInhibited=no
    #HibernateKeyIgnoreInhibited=no
    #LidSwitchIgnoreInhibited=yes
    #IdleAction=ignore
    #IdleActionSec=30min
    /etc/acpi/handler.sh
    #!/bin/bash
    # Default acpi script that takes an entry for all actions
    case "$1" in
    button/power)
    case "$2" in
    PBTN|PWRF)
    logger 'PowerButton pressed'
    /usr/bin/systemctl poweroff
    logger "ACPI action undefined: $2"
    esac
    button/sleep)
    case "$2" in
    SLPB|SBTN)
    logger 'SleepButton pressed'
    /usr/bin/systemctl suspend
    logger "ACPI action undefined: $2"
    esac
    ac_adapter)
    case "$2" in
    AC|ACAD|ADP0)
    case "$4" in
    00000000)
    logger 'AC unpluged'
    /usr/sbin/laptop_mode auto
    00000001)
    logger 'AC pluged'
    /usr/sbin/laptop_mode auto
    esac
    logger "ACPI action undefined: $2"
    esac
    battery)
    case "$2" in
    BAT0)
    case "$4" in
    00000000)
    logger 'Battery online'
    /usr/sbin/laptop_mode auto
    00000001)
    logger 'Battery offline'
    /usr/sbin/laptop_mode auto
    esac
    CPU0)
    *) logger "ACPI action undefined: $2" ;;
    esac
    button/lid)
    case "$3" in
    close)
    logger 'LID closed'
    /usr/sbin/laptop_mode auto
    if [ $(cat /sys/class/power_supply/ADP0/online) -eq 0 ]; then
    /usr/bin/systemctl suspend
    fi
    open)
    logger 'LID opened'
    /usr/sbin/laptop_mode auto
    logger "ACPI action undefined: $3"
    esac
    logger "ACPI group/action undefined: $1 / $2"
    esac
    # vim:set ts=4 sw=4 ft=sh et:
    Last edited by Superposition (2013-02-23 23:15:54)

  • Why are systemd startup scripts under /usr/lib and not /etc? [SOLVED]

    Just out of curiosity: why are systemd configuration files (startup scripts, or whatever they are called) in /usr/lib/systemd/system/ and not somewhere under /etc?
    After all, they are configuration files and not libraries.
    It may simply be my lack of knowledge of the standard linux filesystem layout, so please enlighten me.
    Last edited by louic (2015-04-09 09:12:11)

    https://wiki.archlinux.org/index.php/Sy … unit_files

  • Trying to figure out why ports are open for systemd processes

    Output of my "netstat -nlp"
    [root@server ~]# netstat -nlp
    Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2159/sshd
    tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 2060/mysqld
    tcp 0 0 0.0.0.0:5355 0.0.0.0:* LISTEN 2168/systemd-resolv
    tcp6 0 0 :::80 :::* LISTEN 4460/nginx: master
    tcp6 0 0 :::22 :::* LISTEN 2159/sshd
    tcp6 0 0 :::443 :::* LISTEN 4460/nginx: master
    tcp6 0 0 :::5355 :::* LISTEN 2168/systemd-resolv
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 IP4:68 0.0.0.0:* 2078/systemd-networ
    udp 0 0 127.0.0.1:123 0.0.0.0:* 4491/ntpd
    udp 0 0 0.0.0.0:5355 0.0.0.0:* 2168/systemd-resolv
    udp6 0 0 ::1:123 :::* 4491/ntpd
    udp6 0 0 :::5355 :::* 2168/systemd-resolv
    raw6 0 0 :::58 :::* 7 2078/systemd-networ
    Why are ports 5355, 58, and 68 being listened to/open ?
    Please let me know if any additional information is needed, it is the latest version or arch linux and fully updated as of this post.

    68 is for BOOTP/DHCP. Why it needs so many open is beyond me - dhcpcd just has the one global 68 open for any amount of interfaces.
    The other two ports don't look like anything network setup related should have open.
    I would file a ticket with systemd upstream.

  • [SOLVED] Why doesn't this systemd sleep script work as expected?

    Hey all,
    After having a service file to restart an application (that outputs text to the root window for DWM's statusbar) that kept failing numerous times, I decided to go back to the good old scripts to manage things. I already have one in use for my powersaving scripts, that looks like this:
    #!/bin/sh
    case $1/$2 in
    pre/*)
    /usr/bin/powersave false ;;
    post/*)
    if cat /sys/class/power_supply/BAT1/status | grep Discharging > /d$
    then
    /usr/bin/powersave true
    else
    /usr/bin/powersave false
    fi
    esac
    I based the new script on it, which looks like this:
    #!/bin/sh
    case $1/$2 in
    pre/*)
    /usr/bin/killall dwmst
    post/*)
    /usr/bin/sleep 3 && /usr/bin/dwmst &
    esac
    But it's not working after suspend; my application is not launched. When I run the script from the terminal, it does work as expected. Here's the output of journalctl:
    nov 22 15:05:48 edge systemd-sleep[7405]: /usr/lib/systemd/system-sleep/dwmst.sh exited with exit status 1.
    What is wrong here?
    EDIT 23-12-2013: I went back to a systemd service file.
    Last edited by Unia (2013-12-23 00:04:40)

    If you test it by putting some things in there that print to a file or the journal or something, do they show up?  I'm just wondering if the formatting is somehow screwed up (which it doesn't appear to be), or if it might be some kind of a race between the things run by /usr/bin/powersave and the things it writes to.

  • [S]Systemd can't start Load Kernel Modules after upgrade to Linux 4.0

    After upgrading from linux 3.19.3-3 to 4.0.1-1 I've been having a bit of an issue. At that same time I upgraded readline (6.3.006-1 → 6.3.008-1), linux-firmware (20150206.17657c3-1 → 20150410.ec89525-1), nvidia (349.16-1 → 349.16-2) , wpa_suplican (2.4-1 → 1:2.3-1), and  arpack (3.1.5-1 → 3.2.0-1). There may be some typos there since I'm copying by hand. Normally this wouldn't be much of a problem because I have been, priory to a few weeks ago, really good about back ups and would just roll my OS back 15 minutes. But things like that tend to fly out the window when the semester gets heavy. My last snapshot was on May 22nd, which I could still use, but would rather not. Also, it seems like a good idea to try to actual fix things for a change.
    [edit] I should mention that this upgrade was run April 30th.[/edit]
    When I finished booting the system after the upgrade, I got an error message during boot “systemd[1]: Failed to start Load Kernel Modules.” When it finished booting I run “dmesg -l err” to confirm that I'm not having a bad day dream or something. I'm also still seeing the errors that I described in this thread. Don't know if the two are related. I also noticed, when I was logging in, that it said that my stystem was still using the old kernel. Indeed, according to “uname -r” I'm still using 3.19.3-3-ARCH.
    The closest thing to experience I have with this is when I forget to mount /boot before upgrading linux, so I made sure /boot was mounted and rand “sudo pacman -S linux” to reinstall, but this didn't help. Just to check I ran “ls /lib/modules” and see the directorys “4.0.1-1-ARCH” and “extramodules-4.0-ARCH” as I would expect after a succesful upgrade of the kernel.
    Running “systemctl –failed, shows that in addition to systemd-modules-load.service, lm_sensors.service has also failed. I somehow expect lm_sensors depends on systemd-modules-load. I tried “systemctl restart systemd-modules-load”, but was rewarded with a message telling me that it failed. The “journalctl -xe” log has the lines
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'sg': Function not implemented
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'nfs': Function not implemented
    Looking at the Wiki for Systemd under troubleshooting it actually has an example of trying to work through this exact issue. Following that I tried
    journalctl _PID=1799
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'sg': Function not implemented
    systemd[1]: system-modules-load[1799]: Failed to look up alias 'nfs': Function not implemented
    which I already mentioned. At this point that bit of the Wiki stopped being useful.
    Looking up on Google Failed to look up alias 'nfs': Function not implemented returned this thread from two years ago. Running “lsmod |grep sg” or $lsmod |grep nfs” returns nothing, but it also returns nothing on this laptop I'm using as well, so I don't imagine that is useful. Also, “# grep nfs /lib/modules/4.0.1-1-ARCH/modules.alias” returns a “Nosuch file or directory” error.
    Searching for something on 'sg' turned up https://bbs.archlinux.org/viewtopic.php?id=165361, which was also not useful.
    As a sort of last resort I tried https://wiki.archlinux.org/index.php/Do … the_kernel
    I reboot and boot into my fallback installation, running 3.19.3-3, mount the partition with my main Arch on it, and arch-chroot into it.
    I downgraded linux, and nvidia, exited chroot, and rebooted hoping to the Great Bacon that I didn't do anything too damaging. After all, my back ups are more than a week out of date.
    This worked. I'm still getting those annyoing (they are only annoying right?) error messages I mentioned earlier. My system seems fine, if somewhat out of date.
    Still, the question remains, “why did that happen, and how do I actually fix it?”
    [edit2=solution]
    There were two problems. First, my grub.cfg entry was pointing to the wrong UUID. I fixed this by regenerating it. Then I noticed the UUID in the grub menu itself (during the boot prosses) did not match what was in grub.cfg. To fix this I reinstalled grub.
    Last edited by nstgc (2015-05-05 12:07:30)

    Well, I took snapshots, not back ups but they work well enough for this, and rsynced /boot/ to where it use to be, moved/renamed the subvolume boot, and commented out the appropriate line in fstab. I also deleted that other /boot from before. I unmount /boot, and regenerate my grub.cfg. If my machine still boots, I'll try for an upgrade.
    grub.cfg now looks like
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    font="/arch/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    echo 'Loading Linux linux ...'
    linux /arch/boot/vmlinuz-linux root=UUID=3873d8ba-9472-4d92-ab0d-e94574bd0eae rw rootflags=subvol=arch quiet
    echo 'Loading initial ramdisk ...'
    initrd /arch/boot/intel-ucode.img /arch/boot/initramfs-linux.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    echo 'Loading Linux linux ...'
    linux /arch/boot/vmlinuz-linux root=UUID=3873d8ba-9472-4d92-ab0d-e94574bd0eae rw rootflags=subvol=arch quiet
    echo 'Loading initial ramdisk ...'
    initrd /arch/boot/intel-ucode.img /arch/boot/initramfs-linux.img
    menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-3873d8ba-9472-4d92-ab0d-e94574bd0eae' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod part_msdos
    insmod part_msdos
    insmod btrfs
    set root='hd4,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    else
    search --no-floppy --fs-uuid --set=root 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    fi
    echo 'Loading Linux linux ...'
    linux /arch/boot/vmlinuz-linux root=UUID=3873d8ba-9472-4d92-ab0d-e94574bd0eae rw rootflags=subvol=arch quiet
    echo 'Loading initial ramdisk ...'
    initrd /arch/boot/intel-ucode.img /arch/boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows Vista (loader) (on /dev/sdd2)' --class windows --class os $menuentry_id_option 'osprober-chain-30F403F0F403B75E' {
    insmod part_gpt
    insmod ntfs
    set root='hd3,gpt2'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt2 --hint-efi=hd3,gpt2 --hint-baremetal=ahci3,gpt2 30F403F0F403B75E
    else
    search --no-floppy --fs-uuid --set=root 30F403F0F403B75E
    fi
    chainloader +1
    menuentry 'Windows Vista (loader) (on /dev/sdd4)' --class windows --class os $menuentry_id_option 'osprober-chain-FE2648382647EFE7' {
    insmod part_gpt
    insmod ntfs
    set root='hd3,gpt4'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt4 --hint-efi=hd3,gpt4 --hint-baremetal=ahci3,gpt4 FE2648382647EFE7
    else
    search --no-floppy --fs-uuid --set=root FE2648382647EFE7
    fi
    chainloader +1
    menuentry 'Arch (on /dev/sdd5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd' {
    insmod part_gpt
    insmod ext2
    set root='hd3,gpt5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt5 --hint-efi=hd3,gpt5 --hint-baremetal=ahci3,gpt5 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    else
    search --no-floppy --fs-uuid --set=root 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    fi
    linux /boot/vmlinuz-linux root=/dev/sdd5
    initrd /boot/initramfs-linux.img
    submenu 'Advanced options for Arch (on /dev/sdd5)' $menuentry_id_option 'osprober-gnulinux-advanced-832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd' {
    menuentry 'Arch (on /dev/sdd5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd' {
    insmod part_gpt
    insmod ext2
    set root='hd3,gpt5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd3,gpt5 --hint-efi=hd3,gpt5 --hint-baremetal=ahci3,gpt5 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    else
    search --no-floppy --fs-uuid --set=root 832bcc8d-836e-4b4e-8d9c-0a19f5bcf7dd
    fi
    linux /boot/vmlinuz-linux root=/dev/sdd5
    initrd /boot/initramfs-linux.img
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
    search --fs-uuid --no-floppy --set=root --hint-bios=hd4,msdos1 --hint-efi=hd4,msdos1 --hint-baremetal=ahci4,msdos1 --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2 --hint-bios=hd5,msdos4 --hint-efi=hd5,msdos4 --hint-baremetal=ahci5,msdos4 3873d8ba-9472-4d92-ab0d-e94574bd0eae
    linux16 /arch/boot/memtest86+/memtest.bin
    fi
    ### END /etc/grub.d/60_memtest86+ ###
    It seems as if the lines you mentioned, Scimmia, have changed. I'll take that as a good sign.
    [edit] System still boots. Trying for the upgrade.
    [edit2] Still can't use Linux 4.0. I'm getting the same errors as before.
    [edit3] Successfully downgraded.
    [edit4] I looked through /etc/mkinitcpio.conf and there isn't anything in there that isn't in my laptop's. I don't know if this will help, but here is the output of "pacman -Q"
    a52dec 0.7.4-8
    aalib 1.4rc5-10
    abs 2.4.4-2
    accountsservice 0.6.40-1
    acl 2.2.52-2
    adobe-source-han-sans-jp-fonts 1.002-1
    adwaita-icon-theme 3.16.0-1
    alsa-lib 1.0.29-1
    alsa-plugins 1.0.29-2
    alsa-utils 1.0.29-1
    alsi 0.4.7-1
    arch-install-scripts 15-1
    arch-wiki-docs 20150219-1
    arch-wiki-lite 20150219-2
    archlinux-keyring 20150212-1
    arpack 3.2.0-1
    aspell 0.60.6.1-2
    asunder 2.7-1
    at-spi2-atk 2.16.0-1
    at-spi2-core 2.16.0-1
    atk 2.16.0-1
    atkmm 2.22.7-1
    attr 2.4.47-1
    autoconf 2.69-2
    automake 1.15-1
    avahi 0.6.31-15
    awesome 3.5.6-1
    bash 4.3.033-1
    bash-completion 2.1-5
    bc 1.06.95-1
    bcache-tools 1.0.8-1
    bigpkg 0.4.0-2
    binutils 2.25-2
    bison 3.0.4-1
    blas 3.5.0-1
    bluez 5.30-1
    bluez-libs 5.30-1
    bonnie++ 1.97-1
    boost 1.58.0-1
    boost-libs 1.58.0-1
    btrfs-progs 3.19.1-1
    bullet 2.82-1
    bzip2 1.0.6-5
    ca-certificates 20150402-1
    ca-certificates-cacert 20140824-2
    ca-certificates-mozilla 3.18-3
    ca-certificates-utils 20150402-1
    cabextract 1.4-3
    cairo 1.14.2-1
    cairo-clock 0.3.4-4
    cairo-dock 3.4.1-1
    cairo-dock-plug-ins 3.4.1-1
    cairomm 1.10.0-3
    calibre 2.27.0-1
    cantarell-fonts 0.0.16-2
    caribou 0.4.18.1-1
    cddb-py 1.4-7
    cdparanoia 10.2-5
    cdrdao 1.2.3-7
    cdrtools 3.01a28-1
    celt 0.11.3-2
    cfv 1.18.3-6
    cheese 3.16.1-1
    chmlib 0.40-4
    chromaprint 1.1-2
    chromium 42.0.2311.135-1
    chromium-pepper-flash 1:17.0.0.169-3
    cifs-utils 6.4-1
    cinnamon-desktop 2.4.2-1
    cinnamon-translations 2.4.4-1
    clementine 1.2.3-5
    clucene 2.3.3.4-8
    clutter 1.22.0-2
    clutter-gst2 2.0.14-1
    clutter-gtk 1.6.0-2
    cmus 2.6.0-4
    cogl 1.20.0-1
    colord 1.2.9-2
    colord-gtk 0.1.26-2
    compositeproto 0.4.2-3
    confuse 2.7-3
    coreutils 8.23-1
    cracklib 2.9.4-1
    cryptsetup 1.6.6-1
    cups 2.0.2-4
    cups-filters 1.0.68-1
    cups-pk-helper 0.2.5-1
    curl 7.42.0-1
    damageproto 1.2.1-3
    db 5.3.28-2
    dbus 1.8.16-2
    dbus-glib 0.102-2
    dconf 0.24.0-1
    desktop-file-utils 0.22-1
    device-mapper 2.02.116-1
    dhclient 4.3.2-1
    dhcpcd 6.8.1-1
    dia 0.97.3-1
    dialog 1:1.2_20150225-1
    dictd 1.12.1-4
    diffutils 3.3-2
    ding-libs 0.4.0-3
    djvulibre 3.5.27-1
    dnssec-anchors 20150403-1
    dotconf 1.3-4
    dri2proto 2.8-2
    dri3proto 1.0-1
    dvd+rw-tools 7.1-5
    dvdisaster 0.72.6-1
    e2fsprogs 1.42.12-2
    ecryptfs-utils 106-1
    ed 1.11-1
    efl 1.13.2-1
    elementary 1.13.2-1
    elfutils 0.161-3
    enca 1.16-1
    enchant 1.6.0-5
    enlightenment 0.19.4-1
    evas_generic_loaders 1.13.2-1
    evince 3.16.0-1
    exempi 2.2.2-1
    exfat-utils 1.1.1-1
    exif-py 1.2.0-1
    exiv2 0.24-1
    expac 4-3
    expat 2.1.0-4
    extcalc 0.9.3_1-3
    faac 1.28-5
    faad2 2.7-4
    fakeroot 1.20.2-1
    fbreader 0.99.4-4
    ffmpeg 1:2.6.2-1
    fftw 3.3.4-1
    file 5.22-1
    file-roller 3.16.1-1
    filesystem 2015.02-1
    findutils 4.4.2-6
    firefox 37.0.2-1
    fixesproto 5.0-3
    flac 1.3.1-1
    flashplugin 11.2.202.457-1
    flex 2.5.39-1
    fltk 1.3.3-4
    fluidsynth 1.1.6-4
    fontconfig 2.11.1-1
    fontsproto 2.1.3-1
    foomatic-db 3:20150308-1
    foomatic-db-engine 3:20150308-1
    freetype2 2.5.5-1
    fribidi 0.19.6-2
    fsarchiver 0.6.19-1
    fuse 2.9.3-2
    fuse-exfat 1.1.0-1
    gawk 4.1.2-1
    gc 7.4.2-2
    gcc-fortran 4.9.2-4
    gcc-libs-multilib 4.9.2-4
    gcc-multilib 4.9.2-4
    gconf 3.2.6-3
    gcr 3.15.92-1
    gd 2.1.1-2
    gdb 7.9-1
    gdbm 1.11-1
    gdk-pixbuf2 2.31.3-1
    geany 1.24.1-1
    gemrb 0.8.2-1
    geoclue 0.12.99-2
    geoclue2 2.2.0-2
    geocode-glib 3.16.0-1
    gettext 0.19.4-1
    ghostscript 9.16-1
    giflib 5.1.1-1
    git 2.3.7-1
    gjs 1.43.3-1
    glew 1.12.0-1
    glib-networking 2.44.0-2
    glib2 2.44.0-1
    glibc 2.21-3
    glibmm 2.44.0-1
    glproto 1.4.17-1
    glu 9.0.0-3
    gmime 2.6.20-2
    gmp 6.0.0-2
    gnome-bluetooth 3.16.1-1
    gnome-color-manager 3.16.0-1
    gnome-control-center 3.16.1-2
    gnome-desktop 1:3.16.1-1
    gnome-dictionary 3.16.1-1
    gnome-disk-utility 3.16.0-1
    gnome-menus 3.13.3-1
    gnome-online-accounts 3.16.0-2
    gnome-session 3.16.0-1
    gnome-settings-daemon 3.16.1-1
    gnome-shell 3.16.1-2
    gnome-shell-extensions 3.16.1-1
    gnome-system-monitor 3.16.0-1
    gnome-themes-standard 3.16.0-1
    gnome-tweak-tool 3.16.1-1
    gnome-video-effects 0.4.1-1
    gnupg 2.1.3-3
    gnuplot 5.0.0-2
    gnutls 3.4.0-1
    gobject-introspection 1.44.0-1
    gobject-introspection-runtime 1.44.0-1
    google-chrome 42.0.2311.135-1
    gparted 0.22.0-1
    gpgme 1.5.4-1
    gpm 1.20.7-4
    graphite 1:1.2.4-1
    grep 2.21-2
    grilo 0.2.12-1
    groff 1.22.3-3
    grsync 1.2.5-1
    grub 1:2.02.beta2-5
    gsettings-desktop-schemas 3.16.1-1
    gsfonts 20150122-1
    gsm 1.0.13-8
    gssproxy 0.4.1-1
    gst-libav 1.4.5-1
    gst-plugins-bad 1.4.5-2
    gst-plugins-base 1.4.5-1
    gst-plugins-base-libs 1.4.5-1
    gst-plugins-good 1.4.5-2
    gst-plugins-ugly 1.4.5-2
    gstreamer 1.4.5-1
    gstreamer0.10 0.10.36-4
    gstreamer0.10-base 0.10.36-3
    gstreamer0.10-base-plugins 0.10.36-3
    gstreamer0.10-good 0.10.31-6
    gstreamer0.10-good-plugins 0.10.31-6
    gstreamer0.10-python 0.10.22-2
    gstreamer0.10-ugly 0.10.19-14
    gstreamer0.10-ugly-plugins 0.10.19-14
    gthumb 3.4.0-1
    gtk-update-icon-cache 2.24.27-1
    gtk2 2.24.27-1
    gtk3 3.16.2-1
    gtkmm 2.24.4-1
    gtkmm3 3.16.0-1
    guile 2.0.11-2
    gvfs 1.24.1-1
    gvfs-mtp 1.24.1-1
    gzip 1.6-1
    hal-info 0.20091130-2
    harfbuzz 0.9.40-2
    harfbuzz-icu 0.9.40-2
    haveged 1.9.1-2
    hdparm 9.45-1
    hdsentinel 0.8-2
    help2man 1.46.4-1
    hicolor-icon-theme 0.13-1
    hplip 3.15.4-1
    hspell 1.2-2
    htmlcxx 0.85-4
    htop 1.0.3-2
    hunspell 1.3.3-1
    hwids 20150129-1
    hwinfo 21.10.1.1-1
    hwloc 1.10.1-1
    hyphen 2.8.8-1
    i3-wm 4.10.2-1
    i3lock 2.6-1
    i3status 2.9-1
    i7z 0.27.2.git1-1
    iana-etc 2.30-4
    icedtea-web 1.5.2-1
    icu 55.1-1
    imagemagick 6.9.1.0-1
    imagewriter 1.10.1420800585.134a9b3-1
    imlib2 1.4.7-1
    inetutils 1.9.2-2
    innoextract 1.4-0
    inputproto 2.3.1-1
    intel-tbb 4.3_20150209-1
    intel-ucode 20150121-1
    inxi 2.2.19-1
    iproute2 3.19.0-1
    iptables 1.4.21-3
    iputils 20121221-3
    ipython 3.1.0-1
    iso-codes 3.57-1
    jack 0.124.1-3
    jansson 2.7-1
    jasper 1.900.1-13
    java-environment-common 2-2
    java-runtime-common 2-2
    jdk7-openjdk 7.u79_2.5.5-1
    jfsutils 1.1.15-4
    jmtpfs 0.5-1
    jre7-openjdk 7.u79_2.5.5-1
    jre7-openjdk-headless 7.u79_2.5.5-1
    js 24.2.0-1
    js17 17.0.0-1
    json-c 0.12-2
    json-glib 1.0.2-1
    jsoncpp 1.4.4-1
    julia 2:0.3.7-1
    julia-docs 2:0.3.7-1
    kbd 2.0.2-1
    kbproto 1.0.7-1
    keyutils 1.5.9-1
    kmod 20-1
    krb5 1.13.1-1
    kvirc 4.2.0-4
    lame 3.99.5-2
    lapack 3.5.0-1
    lcms 1.19-5
    lcms2 2.6-1
    ldb 1.1.20-1
    ldns 1.6.17-2
    less 471-1
    lgogdownloader-git 20150310-1
    lib32-acl 2.2.52-2
    lib32-alsa-lib 1.0.29-1
    lib32-alsa-plugins 1.0.29-2
    lib32-atk 2.16.0-1
    lib32-attr 2.4.47-1
    lib32-bzip2 1.0.6-2
    lib32-cairo 1.14.2-1
    lib32-curl 7.41.0-1
    lib32-db 5.3.28-2
    lib32-e2fsprogs 1.42.12-1
    lib32-elfutils 0.161-2
    lib32-expat 2.1.0-2
    lib32-fakeroot 1.20.2-1
    lib32-flac 1.3.1-1
    lib32-flashplugin 11.2.202.457-1
    lib32-fontconfig 2.11.1-1
    lib32-freetype2 2.5.5-1
    lib32-gcc-libs 4.9.2-4
    lib32-gdk-pixbuf2 2.31.3-2
    lib32-gettext 0.19.4-1
    lib32-giflib 5.1.1-1
    lib32-glew 1.12.0-1
    lib32-glib2 2.44.0-1
    lib32-glibc 2.21-2
    lib32-glu 9.0.0-2
    lib32-gmp 6.0.0-1
    lib32-gnutls 3.4.0-2
    lib32-gsm 1.0.13-9
    lib32-gtk2 2.24.27-1
    lib32-harfbuzz 0.9.40-2
    lib32-icu 55.1-1
    lib32-jack 0.124.1-1
    lib32-json-c 0.12-1
    lib32-keyutils 1.5.9-1
    lib32-krb5 1.13.1-1
    lib32-lcms2 2.6-1
    lib32-libaio 0.3.110-1
    lib32-libasyncns 0.8-7
    lib32-libcanberra 0.30-4
    lib32-libcap 2.24-1
    lib32-libcl 1.1-1
    lib32-libcups 2.0.2-2
    lib32-libdbus 1.8.16-1
    lib32-libdrm 2.4.60-1
    lib32-libffi 3.2.1-1
    lib32-libgcrypt 1.6.3-1
    lib32-libgpg-error 1.18-1
    lib32-libice 1.0.9-1
    lib32-libidn 1.30-1
    lib32-libjpeg-turbo 1.4.0-1
    lib32-libldap 2.4.40-1
    lib32-libltdl 2.4.5-1
    lib32-libnl 3.2.25-1
    lib32-libogg 1.3.2-1
    lib32-libpcap 1.6.2-1
    lib32-libpciaccess 0.13.4-1
    lib32-libpng 1.6.16-1
    lib32-libpulse 6.0-1
    lib32-libsamplerate 0.1.8-2
    lib32-libsm 1.2.2-1
    lib32-libsndfile 1.0.25-3
    lib32-libssh2 1.5.0-1
    lib32-libtasn1 4.4-1
    lib32-libtiff 4.0.3-3
    lib32-libtxc_dxtn 1.0.1-5
    lib32-libusb 1.0.19-1
    lib32-libvorbis 1.3.5-1
    lib32-libx11 1.6.3-1
    lib32-libxau 1.0.8-1
    lib32-libxcb 1.11-1
    lib32-libxcomposite 0.4.4-2
    lib32-libxcursor 1.1.14-1
    lib32-libxdamage 1.1.4-2
    lib32-libxdmcp 1.1.2-1
    lib32-libxext 1.3.3-1
    lib32-libxfixes 5.0.1-1
    lib32-libxft 2.3.2-1
    lib32-libxi 1.7.4-1
    lib32-libxinerama 1.1.3-1
    lib32-libxml2 2.9.2-1
    lib32-libxmu 1.1.2-1
    lib32-libxrandr 1.4.2-1
    lib32-libxrender 0.9.8-1
    lib32-libxshmfence 1.2-1
    lib32-libxslt 1.1.28-2
    lib32-libxt 1.1.4-1
    lib32-libxtst 1.2.2-1
    lib32-libxxf86vm 1.1.4-1
    lib32-llvm-libs 3.6.0-1
    lib32-mesa 10.5.4-1
    lib32-mpg123 1.22.1-1
    lib32-ncurses 5.9-3
    lib32-nettle 3.1.1-1
    lib32-nspr 4.10.8-1
    lib32-nss 3.18-1
    lib32-nvidia-libgl 349.16-1
    lib32-nvidia-utils 349.16-1
    lib32-openal 1.16.0-1
    lib32-openssl 1.0.2.a-1
    lib32-p11-kit 0.23.1-2
    lib32-pango 1.36.8-1
    lib32-pcre 8.36-1
    lib32-pixman 0.32.6-1
    lib32-portaudio 19_20140130-1
    lib32-readline 6.3.008-1
    lib32-sdl 1.2.15-6
    lib32-soundtouch 1.8.0-1
    lib32-sqlite 3.8.9-1
    lib32-systemd 219-1
    lib32-tdb 1.3.4-1
    lib32-util-linux 2.26.1-1
    lib32-v4l-utils 1.6.0-1
    lib32-wayland 1.7.0-1
    lib32-wxgtk 3.0.2-4
    lib32-xz 5.2.1-1
    lib32-zlib 1.2.8-1
    libabw 0.1.1-1
    libaio 0.3.110-1
    libao 1.2.0-1
    libarchive 3.1.2-8
    libart-lgpl 2.3.21-3
    libass 0.12.1-1
    libassuan 2.2.0-1
    libasyncns 0.8-5
    libatasmart 0.19-3
    libatomic_ops 7.4.2-1
    libavc1394 0.5.4-2
    libbluray 0.8.0-1
    libbsd 0.7.0-1
    libcaca 0.99.beta18-2
    libcanberra 0.30-5
    libcanberra-pulse 0.30-5
    libcap 2.24-2
    libcap-ng 0.7.4-1
    libcddb 1.3.2-4
    libcdio 0.93-1
    libcdio-paranoia 10.2+0.93+1-1
    libcdr 0.1.1-2
    libcl 1.1-4
    libcroco 0.6.8-2
    libcue 1.4.0-4
    libcups 2.0.2-4
    libdaemon 0.14-3
    libdatrie 0.2.8-1
    libdbus 1.8.16-2
    libdca 0.0.5-4
    libdrm 2.4.60-2
    libdv 1.0.0-6
    libdvbpsi 1:1.1.2-1
    libdvdcss 1.3.0-1
    libdvdnav 5.0.2-1
    libdvdread 5.0.1-1
    libe-book 0.1.2-2
    libebml 1.3.1-1
    libedit 20150325_3.1-1
    libepoxy 1.2-2
    libetonyek 0.1.1-1
    libev 4.19-1
    libevdev 1.4.2-1
    libevent 2.0.22-1
    libexif 0.6.21-2
    libffi 3.2.1-1
    libfontenc 1.1.3-1
    libftdi-compat 0.20-1
    libgcrypt 1.6.3-2
    libgcrypt15 1.5.4-4
    libgdm 3.16.1.1-1
    libgee 0.18.0-1
    libglade 2.6.4-5
    libgme 0.6.0-3
    libgnome-keyring 3.12.0-2
    libgnomekbd 3.6.0-2
    libgpg-error 1.19-1
    libgpod 0.8.3-4
    libgssglue 0.4-2
    libgsystem 2015.1-1
    libgtop 2.30.0-1
    libgusb 0.2.4-1
    libgweather 3.16.1-1
    libgxps 0.2.2-3
    libibus 1.5.10-1
    libical 1.0.1-2
    libice 1.0.9-1
    libid3tag 0.15.1b-8
    libidn 1.30-1
    libiec61883 1.2.0-4
    libimobiledevice 1.2.0-1
    libinput 0.14.1-1
    libirman 0.4.5-4
    libjpeg-turbo 1.4.0-1
    libkate 0.4.1-5
    libksba 1.3.3-1
    liblastfm 1.0.9-1
    libldap 2.4.40-2
    liblqr 0.4.2-1
    libmaa 1.3.2-2
    libmad 0.15.1b-7
    libmatroska 1.4.2-1
    libmediainfo 0.7.73-1
    libmikmod 3.3.7-1
    libmm-glib 1.4.6-1
    libmms 0.6.4-1
    libmng 2.0.2-3
    libmodplug 0.8.8.5-1
    libmp4v2 2.0.0-3
    libmpc 1.0.3-1
    libmpcdec 1.2.6-4
    libmpeg2 0.5.1-5
    libmspub 0.1.2-2
    libmtp 1.1.8-1
    libmwaw 0.3.4-1
    libmygpo-qt 1.0.8-1
    libndp 1.4-1
    libnewt 0.52.18-2
    libnl 3.2.25-1
    libnm-glib 1.0.0-2
    libnotify 0.7.6-1
    liboauth 1.0.3-1
    libodfgen 0.1.3-1
    libofa 0.9.3-5
    libogg 1.3.2-1
    libomxil-bellagio 0.9.3-1
    libpagemaker 0.0.2-1
    libpaper 1.1.24-7
    libpcap 1.6.2-1
    libpciaccess 0.13.4-1
    libpipeline 1.4.0-1
    libplist 1.12-1
    libpng 1.6.16-1
    libproxy 0.4.11-5
    libpulse 6.0-1
    libpwquality 1.2.3-1
    libquvi 0.9.4-3
    libquvi-scripts 0.9.20131130-2
    libqzeitgeist 0.8.0-4
    libraw 0.16.0-3
    libraw1394 2.1.0-2
    libreoffice-fresh 4.4.2-1
    librevenge 0.0.2-1
    librpcsecgss 0.19-8
    librsvg 1:2.40.9-1
    libsamplerate 0.1.8-3
    libsasl 2.1.26-7
    libseccomp 2.2.0-1
    libsecret 0.18-1
    libshout 1:2.3.1-2
    libsidplay 1.36.59-6
    libsigc++ 2.4.1-1
    libsigsegv 2.10-2
    libsm 1.2.2-2
    libsndfile 1.0.25-3
    libsodium 1.0.2-1
    libsoup 2.50.0-1
    libspectre 0.2.7-2
    libsrtp 15.1c9bd90-3
    libssh 0.6.5-1
    libssh2 1.5.0-1
    libsystemd 219-6
    libtar 1.2.20-2
    libtasn1 4.4-1
    libteam 1.14-2
    libthai 0.1.21-1
    libtheora 1.1.1-3
    libtiff 4.0.3-5
    libtiger 0.3.4-4
    libtirpc 0.2.5-1
    libtool 2.4.6-1
    libtxc_dxtn 1.0.1-6
    libunibreak 1.1-1
    libunistring 0.9.5-1
    libunwind 1.1-2
    libupnp 1.6.19-1
    libusb 1.0.19-1
    libusb-compat 0.1.5-1
    libusbmuxd 1.0.10-1
    libutempter 1.1.6-2
    libutil-linux 2.26.1-3
    libva 1.5.1-1
    libvdpau 1.1-1
    libvisio 0.1.1-2
    libvisual 0.4.0-5
    libvorbis 1.3.5-1
    libvpx 1.4.0-2
    libwacom 0.11-1
    libwbclient 4.2.1-1
    libwebp 0.4.3-1
    libwmf 0.2.8.4-12
    libwpd 0.10.0-1
    libwpg 0.3.0-1
    libwps 0.3.1-1
    libx11 1.6.3-1
    libx264 2:144.20150223-1
    libx86 1.1-4
    libx86emu 1.1.23.1-1
    libxau 1.0.8-2
    libxaw 1.0.13-1
    libxcb 1.11-1
    libxcomposite 0.4.4-2
    libxcursor 1.1.14-2
    libxdamage 1.1.4-2
    libxdg-basedir 1.2.0-3
    libxdmcp 1.1.2-1
    libxext 1.3.3-1
    libxfixes 5.0.1-1
    libxfont 1.5.1-1
    libxft 2.3.2-1
    libxi 1.7.4-1
    libxinerama 1.1.3-2
    libxkbcommon 0.5.0-1
    libxkbcommon-x11 0.5.0-1
    libxkbfile 1.0.9-1
    libxklavier 5.4-1
    libxml2 2.9.2-2
    libxmu 1.1.2-1
    libxp 1.0.3-1
    libxpm 3.5.11-1
    libxrandr 1.4.2-2
    libxrender 0.9.9-1
    libxshmfence 1.2-1
    libxslt 1.1.28-3
    libxss 1.2.2-2
    libxt 1.1.5-1
    libxtst 1.2.2-1
    libxv 1.0.10-1
    libxvmc 1.0.9-1
    libxxf86dga 1.1.4-1
    libxxf86vm 1.1.4-1
    libyaml 0.1.6-1
    libzen 0.4.31-1
    libzip 0.11.2-1
    licenses 20140629-1
    links 2.9-1
    linux 3.19.3-3
    linux-api-headers 3.18.5-1
    linux-firmware 20150410.ec89525-1
    lirc 1:0.9.2.a-1
    llvm-libs 3.6.0-5
    lm_sensors 3.3.5-1
    logrotate 3.8.9-1
    lpsolve 5.5.2.0-3
    lrzip 0.621-1
    lua 5.2.4-1
    lua-bitop 1.0.2-5
    lua-expat 1.3.0-1
    lua-lgi 0.8.0-2
    lua-socket 3.0rc1-4
    lua51 5.1.5-4
    luajit 2.0.3-3
    lvm2 2.02.116-1
    lxdream 0.9.1-3
    lz4 128-1
    lzo 2.09-1
    m4 1.4.17-1
    make 4.1-1
    man-db 2.7.1-1
    man-pages 3.83-1
    mcomix 1.01-1
    mcpp 2.7.2-5
    mdadm 3.3.2-1
    memtest86+ 5.01-1
    mencoder 37379-3
    mesa 10.5.4-1
    metamorphose2 0.8.3-2
    mime-types 9-1
    minitube 2.4-1
    mjpegtools 2.1.0-1
    mkinitcpio 18-2
    mkinitcpio-busybox 1.21.1-2
    mkvtoolnix-cli 7.8.0-3
    mobile-broadband-provider-info 20120614-2
    morituri-git 0.2.3.r3.gb1d685f-1
    mozilla-common 1.4-4
    mpfr 3.1.2.p11-1
    mpg123 1.22.1-1
    mplayer 37379-3
    mtdev 1.1.5-1
    mutagen 1.28-1
    mutter 3.16.1.1-1
    ncurses 5.9-7
    nemo 2.4.5-1
    neon 0.30.1-1
    net-snmp 5.7.3-1
    netctl 1.10-2
    nettle 3.1.1-1
    network-manager-applet 1.0.0-2
    networkmanager 1.0.0-2
    nfs-utils 1.3.2-6
    nfsidmap 0.26-1
    nm-connection-editor 1.0.0-2
    npth 1.2-1
    nspr 4.10.8-1
    nss 3.18-3
    ntfs-3g 2015.3.14-1
    nvidia 349.16-1
    nvidia-libgl 349.16-1
    nvidia-utils 349.16-1
    ogmtools 1.5-5
    openal 1.16.0-1
    opencore-amr 0.1.3-2
    openjpeg 1.5.2-1
    openmpi 1.8.4-1
    openresolv 3.6.1-1
    openssh 6.8p1-2
    openssl 1.0.2.a-1
    opus 1.1-1
    orc 0.4.23-1
    os-prober 1.64-1
    p11-kit 0.23.1-2
    p7zip 9.38.1-3
    package-query 1.5-2
    pacman 4.2.1-1
    pacman-mirrorlist 20150315-1
    pacmatic 20150126-1
    pam 1.1.8-5
    pambase 20130928-1
    pango 1.36.8-1
    pangomm 2.36.0-1
    par2cmdline-tbb 20141125-1
    parallel 20150322-1
    parted 3.2-2
    patch 2.7.5-1
    pciutils 3.3.1-1
    pcmciautils 018-7
    pcre 8.36-2
    pcsx2-git 1.3.1.r978.1aebca3-1
    perl 5.20.2-1
    perl-clone 0.37-2
    perl-data-dump 1.22-1
    perl-dbi 1.633-1
    perl-encode-locale 1.04-1
    perl-error 0.17023-1
    perl-file-basedir 0.07-1
    perl-file-listing 6.04-2
    perl-file-which 1.09-4
    perl-html-parser 3.71-3
    perl-html-tagset 3.20-4
    perl-http-cookies 6.01-2
    perl-http-daemon 6.01-2
    perl-http-date 6.02-2
    perl-http-message 6.06-2
    perl-http-negotiate 6.01-2
    perl-ipc-system-simple 1.25-1
    perl-libwww 6.08-1
    perl-locale-gettext 1.05-11
    perl-lwp-mediatypes 6.02-2
    perl-net-http 6.07-1
    perl-uri 1.67-1
    perl-www-robotrules 6.02-2
    perl-xml-libxml 2.0121-1
    perl-xml-namespacesupport 1.11-3
    perl-xml-sax 0.99-4
    perl-xml-sax-base 1.08-3
    phonon-qt4 4.8.3-1
    phonon-qt4-gstreamer 4.8.2-1
    phoronix-test-suite 5.6.0-1
    php 5.6.8-2
    pinentry 0.9.1-1
    pixman 0.32.6-1
    pkg-config 0.28-2
    pkgfile 15-1
    pms 1.90.1-1
    podofo 0.9.3-1
    polkit 0.112-2
    poppler 0.32.0-1
    poppler-glib 0.32.0-1
    poppler-qt5 0.32.0-1
    popt 1.16-7
    portaudio 19_20140130-1
    presentproto 1.0-1
    printproto 1.0.5-3
    procps-ng 3.3.10-2
    protobuf 2.6.1-1
    psmisc 22.21-2
    pth 2.0.7-5
    pulseaudio 6.0-1
    pulseaudio-alsa 2-3
    pv 1.6.0-1
    pygobject-devel 3.16.1-1
    pygobject2-devel 2.28.6-11
    pygtk 2.24.0-5
    pyqt4-common 4.11.3-4
    pyqt5-common 5.4.1-2
    python 3.4.3-2
    python-dateutil 2.4.1-1
    python-dbus 1.2.0-4
    python-dbus-common 1.2.0-4
    python-gmpy2 2.0.5-2
    python-gobject 3.16.1-1
    python-html2text 2015.4.14-1
    python-matplotlib 1.4.3-2
    python-mpmath 0.19-1
    python-nose 1.3.6-1
    python-numexpr 2.4.3-1
    python-numpy 1.9.2-2
    python-pandas 0.16.0-2
    python-pygments 2.0.2-2
    python-pyparsing 2.0.3-1
    python-pyqt4 4.11.3-4
    python-pyqt5 5.4.1-2
    python-pytz 2015.2-1
    python-pyzmq 14.5.0-2
    python-scipy 0.15.1-2
    python-setuptools 1:15.2-1
    python-sip 4.16.7-1
    python-six 1.9.0-1
    python-sympy 0.7.6-2
    python-tornado 4.1.0-2
    python-xdg 0.25-2
    python2 2.7.9-1
    python2-apsw 3.8.9-1
    python2-atspi 2.16.0-1
    python2-beaker 1.7.0-1
    python2-cairo 1.10.0-2
    python2-chardet 2.3.0-1
    python2-cherrypy 3.6.0-1
    python2-cssselect 0.9.1-2
    python2-cssutils 1.0-2
    python2-dateutil 2.4.1-1
    python2-dbus 1.2.0-4
    python2-dnspython 1.12.0-1
    python2-gobject 3.16.1-1
    python2-gobject2 2.28.6-11
    python2-html5lib 0.999-5
    python2-lxml 3.4.4-1
    python2-mako 1.0.1-1
    python2-markupsafe 0.23-2
    python2-mechanize 0.2.5-4
    python2-netifaces 0.10.4-1
    python2-pillow 2.8.1-1
    python2-psutil 2.2.1-2
    python2-pycdio 0.20-3
    python2-pygments 2.0.2-2
    python2-pyqt5 5.4.1-2
    python2-setuptools 1:15.2-1
    python2-sip 4.16.7-1
    python2-six 1.9.0-1
    python2-xdg 0.25-2
    qca 2.0.3-5
    qca-ossl 2.0.0-7
    qjson 0.8.1-3
    qpdf 5.1.2-1
    qt4 4.8.6-5
    qt5-base 5.4.1-4
    qt5-declarative 5.4.1-4
    qt5-location 5.4.1-4
    qt5-script 5.4.1-4
    qt5-sensors 5.4.1-4
    qt5-svg 5.4.1-4
    qt5-tools 5.4.1-4
    qt5-translations 5.4.1-4
    qt5-webchannel 5.4.1-4
    qt5-webkit 5.4.1-4
    qt5-xmlpatterns 5.4.1-4
    qtchooser 48-1
    qtwebkit 2.3.4-1
    randrproto 1.4.1-1
    raptor 2.0.15-2
    rasqal 1:0.9.32-1
    readline 6.3.008-1
    recode 3.6-8
    recordproto 1.14.2-2
    redland 1:1.0.17-2
    reflector 2014.11-1
    reiserfsprogs 3.6.24-1
    renderproto 0.11.1-3
    resourceproto 1.2.0-3
    rest 0.7.93-1
    rhash 1.3.3-1
    rng-tools 5-3
    rpcbind 0.2.3-1
    rsync 3.1.1-2
    rtkit 0.11-5
    rtmpdump 20140918-2
    ruby 2.2.2-1
    s-nail 14.8.0-1
    sbc 1.3-1
    schroedinger 1.0.11-2
    scrnsaverproto 1.2.2-2
    sdcv 0.4.2-8
    sdl 1.2.15-7
    sdl_image 1.2.12-3
    sdl_mixer 1.2.12-4
    sdl_net 1.2.8-2
    sdl_ttf 2.0.11-3
    sed 4.2.2-3
    sg3_utils 1.40-1
    shadow 4.2.1-3
    shared-color-targets 0.1.5-1
    shared-mime-info 1.4-1
    sip 4.16.7-1
    slang 2.3.0-1
    smartmontools 6.3-2
    smbclient 4.2.1-1
    smpeg 0.4.5-1
    snappy 1.1.1-1
    sound-theme-freedesktop 0.8-2
    soundtouch 1.8.0-1
    spandsp 0.0.6-1
    speech-dispatcher 0.8.1-1
    speedtest-cli 0.3.1-1
    speex 1.2rc2-1
    speexdsp 1.2rc3-1
    spotify 0.9.17.1-1
    spotify-gnome-git 20141010-1
    sqlite 3.8.9-1
    startup-notification 0.12-4
    steam 1.0.0.49-3
    sudo 1.8.13-1
    suitesparse 4.4.4-1
    sysfsutils 2.1.0-9
    systemd 219-6
    systemd-sysvcompat 219-6
    t1lib 5.1.2-5
    taglib 1.9.1-1
    talloc 2.1.2-1
    tar 1.28-1
    tdb 1.3.4-1
    telepathy-glib 0.24.1-1
    telepathy-logger 0.8.1-1
    telepathy-mission-control 5.16.3-1
    terminology 0.8.0-1
    tevent 0.9.24-1
    texinfo 5.2-3
    texlive-bin 2014.34260-7
    texlive-core 2014.36709-1
    texlive-langchinese 2014.35921-1
    texlive-langcjk 2014.0-1
    texlive-langjapanese 2014.36466-1
    texlive-langkorean 2014.36573-1
    texlive-latexextra 2014.36706-1
    texlive-pictures 2014.36605-1
    texlive-science 2014.36659-1
    texmaker 4.4.1-1
    thin-provisioning-tools 0.4.1-1
    thunderbird 31.6.0-2
    tinyxml 2.6.2-3
    tmux 1.9_a-2
    totem-plparser 3.10.4-1
    transmission-gtk 2.84-1
    tsmuxer 1.10.6-14
    ttf-dejavu 2.34-2
    ttf-ms-fonts 2.0-10
    tzdata 2015d-1
    udisks2 2.1.5-1
    unrar 1:5.2.7-1
    unzip 6.0-10
    upower 0.99.2-2
    usbutils 008-1
    util-linux 2.26.1-3
    v4l-utils 1.6.2-1
    vi 1:050325-4
    videoproto 2.3.2-1
    vim 7.4.712-1
    vim-latexsuite 20130126-2
    vim-runtime 7.4.712-1
    vlc 2.2.1-2
    vte-common 0.40.0-2
    vte3 0.40.0-2
    wavpack 4.70.0-2
    wayland 1.7.0-1
    webkit2gtk 2.8.1-1
    webkitgtk 2.4.8-2
    webrtc-audio-processing 0.1-2
    wesnoth 1.12.2-2
    wesnoth-data 1.12.2-1
    wget 1.16.3-1
    which 2.21-1
    wildmidi 0.3.8-1
    wine 1.7.42-2
    winetricks 20141130-1
    wireless_tools 30.pre9-1
    wpa_supplicant 1:2.3-1
    wxgtk 3.0.2-4
    wxgtk2.8 2.8.12.1-3
    wxpython 3.0.2.0-1
    wxpython2.8 2.8.12.1-1
    x265 1.6-1
    xboxdrv 0.8.5-3
    xcb-proto 1.11-1
    xcb-util 0.4.0-1
    xcb-util-cursor 0.1.2-1
    xcb-util-image 0.4.0-1
    xcb-util-keysyms 0.4.0-1
    xcb-util-renderutil 0.3.9-1
    xcb-util-wm 0.4.1-1
    xdg-su 1.2.3-1
    xdg-utils 1.1.0.git20150323-1
    xdiskusage 1.51-1
    xextproto 7.3.0-1
    xf86-input-evdev 2.9.2-1
    xf86dgaproto 2.1-3
    xf86driproto 2.1.1-3
    xf86vidmodeproto 2.3.1-3
    xfsprogs 3.2.2-1
    xineramaproto 1.2.1-3
    xkeyboard-config 2.14-1
    xorg-appres 1.0.4-1
    xorg-bdftopcf 1.0.5-1
    xorg-font-util 1.3.1-1
    xorg-font-utils 7.6-4
    xorg-fonts-alias 1.0.3-1
    xorg-fonts-encodings 1.0.4-4
    xorg-fonts-misc 1.0.3-3
    xorg-iceauth 1.0.7-1
    xorg-mkfontdir 1.0.7-2
    xorg-mkfontscale 1.1.2-1
    xorg-server 1.17.1-5
    xorg-server-common 1.17.1-5
    xorg-server-devel 1.17.1-5
    xorg-server-utils 7.6-4
    xorg-sessreg 1.1.0-1
    xorg-setxkbmap 1.3.1-1
    xorg-util-macros 1.19.0-1
    xorg-xauth 1.0.9-1
    xorg-xbacklight 1.2.1-1
    xorg-xcmsdb 1.0.5-1
    xorg-xgamma 1.0.6-1
    xorg-xhost 1.0.7-1
    xorg-xinit 1.3.4-2
    xorg-xinput 1.6.1-1
    xorg-xkbcomp 1.3.0-1
    xorg-xmessage 1.0.4-2
    xorg-xmodmap 1.0.9-1
    xorg-xrandr 1.4.3-1
    xorg-xrdb 1.1.0-1
    xorg-xrefresh 1.0.5-1
    xorg-xset 1.2.3-1
    xorg-xsetroot 1.1.1-2
    xproto 7.0.27-1
    xscreensaver 5.32-1
    xvidcore 1.3.3-1
    xz 5.2.1-1
    yajl 2.1.0-1
    yaourt 1.5-1
    zenity 3.14.0-1
    zeromq 4.0.5-1
    zita-alsa-pcmi 0.2.0-2
    zita-resampler 1.3.0-3
    zlib 1.2.8-3
    zvbi 0.2.35-1
    zziplib 0.13.62-2
    [edit5] My /etc/modules-load.d directory is empty by the way, and "sudo /usr/lib/systemd/systemd-modules-load" returns nothing. Note, this is all while running Linux 3.19, but I believe it should demonstrate that I don't have any special modules running. Or so I believe.
    Last edited by nstgc (2015-05-04 13:16:09)

  • [SOLVED] Archlinux crashed - how to find out why?

    Hi,
    just few minutes ago my archlinux crashed.
    It freezed for something like 5 seconds and then restarted. It's first time in my life I see linux crashes so badly.
    Are there any logs I could check to find the reason why my machine crashed? It's a fresh install because I repartitioned my HDD and installed arch two days ago. Hardware wasn't changed and previous installation was running fine for more than a year. OK, there were some minor issues but it never crashed this way.
    What is different in my current installation is I'm using nouveau driver for my graphics card instead of proprietary nvidia driver.
    Running applications I remember:
    -firefox
    -thunderbird
    -rhythmbox
    -rtorrent (NEW thing, I wans't using it before. But I also doubt it had any influence on what happend)
    Linux t61 3.17.2-1-ARCH #1 SMP PREEMPT Thu Oct 30 20:49:39 CET 2014 x86_64 GNU/Linux
    It seems like there was nothing logged for last boot
    journalctl -b -1
    gives
    -- Logs begin at sob 2014-11-15 21:26:17 CET, end at nie 2014-11-16 21:24:18 CET. --
    lis 16 15:55:05 t61 systemd-journal[126]: Runtime journal is using 8.0M (max allowed 149.8M, trying to leave 224.7M free of 1.4G available → current limit 149.8M).
    lis 16 15:55:06 t61 systemd-journal[126]: Permanent journal is using 24.0M (max allowed 3.9G, trying to leave 4.0G free of 25.3G available → current limit 3.9G).
    lis 16 15:55:07 t61 systemd-journal[126]: Time spent on flushing to /var is 1.064229s for 2 entries.
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys cpuset
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys cpu
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys cpuacct
    lis 16 15:55:07 t61 kernel: Linux version 3.17.2-1-ARCH (builduser@thomas) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Oct 30 20:49:39 CET 2014
    lis 16 15:55:07 t61 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=ea5c6a7b-1f73-4527-b99c-29920084bd42 rw quiet
    lis 16 15:55:07 t61 kernel: e820: BIOS-provided physical RAM map:
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000beeaffff] usable
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000beeb0000-0x00000000beecbfff] ACPI data
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000beecc000-0x00000000beefffff] ACPI NVS
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000bef00000-0x00000000beffffff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    lis 16 15:55:07 t61 kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    lis 16 15:55:07 t61 kernel: NX (Execute Disable) protection: active
    lis 16 15:55:07 t61 kernel: SMBIOS 2.4 present.
    lis 16 15:55:07 t61 kernel: DMI: LENOVO 7664R6G/7664R6G, BIOS 7LETD0WW (2.30 ) 02/27/2012
    lis 16 15:55:07 t61 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    lis 16 15:55:07 t61 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    lis 16 15:55:07 t61 kernel: AGP: No AGP bridge found
    lis 16 15:55:07 t61 kernel: e820: last_pfn = 0xbeeb0 max_arch_pfn = 0x400000000
    lis 16 15:55:07 t61 kernel: MTRR default type: uncachable
    lis 16 15:55:07 t61 kernel: MTRR fixed ranges enabled:
    lis 16 15:55:07 t61 kernel: 00000-9FFFF write-back
    lis 16 15:55:07 t61 kernel: A0000-BFFFF uncachable
    lis 16 15:55:07 t61 kernel: C0000-CFFFF write-protect
    lis 16 15:55:07 t61 kernel: D0000-DFFFF uncachable
    lis 16 15:55:07 t61 kernel: E0000-FFFFF write-protect
    lis 16 15:55:07 t61 kernel: MTRR variable ranges enabled:
    lis 16 15:55:07 t61 kernel: 0 base 0BF000000 mask FFF000000 uncachable
    lis 16 15:55:07 t61 kernel: 1 base 000000000 mask F80000000 write-back
    lis 16 15:55:07 t61 kernel: 2 base 080000000 mask FC0000000 write-back
    lis 16 15:55:07 t61 kernel: 3 base 0BEF00000 mask FFFF00000 uncachable
    lis 16 15:55:07 t61 kernel: 4 disabled
    lis 16 15:55:07 t61 kernel: 5 disabled
    lis 16 15:55:07 t61 kernel: 6 disabled
    lis 16 15:55:07 t61 kernel: 7 disabled
    lis 16 15:55:07 t61 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    lis 16 15:55:07 t61 kernel: found SMP MP-table at [mem 0x000f68f0-0x000f68ff] mapped at [ffff8800000f68f0]
    lis 16 15:55:07 t61 kernel: Scanning 1 areas for low memory corruption
    lis 16 15:55:07 t61 kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    lis 16 15:55:07 t61 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    lis 16 15:55:07 t61 kernel: [mem 0x00000000-0x000fffff] page 4k
    lis 16 15:55:07 t61 kernel: BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    lis 16 15:55:07 t61 kernel: BRK [0x01b30000, 0x01b30fff] PGTABLE
    lis 16 15:55:07 t61 kernel: BRK [0x01b31000, 0x01b31fff] PGTABLE
    lis 16 15:55:07 t61 kernel: init_memory_mapping: [mem 0xbec00000-0xbedfffff]
    lis 16 15:55:07 t61 kernel: [mem 0xbec00000-0xbedfffff] page 2M
    lis 16 15:55:07 t61 kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    lis 16 15:55:07 t61 kernel: init_memory_mapping: [mem 0xbc000000-0xbebfffff]
    lis 16 15:55:07 t61 kernel: [mem 0xbc000000-0xbebfffff] page 2M
    lis 16 15:55:07 t61 kernel: init_memory_mapping: [mem 0x80000000-0xbbffffff]
    lis 16 15:55:07 t61 kernel: [mem 0x80000000-0xbbffffff] page 2M
    lis 16 15:55:07 t61 kernel: init_memory_mapping: [mem 0x00100000-0x7fffffff]
    lis 16 15:55:07 t61 kernel: [mem 0x00100000-0x001fffff] page 4k
    lis 16 15:55:07 t61 kernel: [mem 0x00200000-0x7fffffff] page 2M
    lis 16 15:55:07 t61 kernel: init_memory_mapping: [mem 0xbee00000-0xbeeaffff]
    lis 16 15:55:07 t61 kernel: [mem 0xbee00000-0xbeeaffff] page 4k
    lis 16 15:55:07 t61 kernel: BRK [0x01b33000, 0x01b33fff] PGTABLE
    lis 16 15:55:07 t61 kernel: RAMDISK: [mem 0x3798a000-0x37cbcfff]
    lis 16 15:55:07 t61 kernel: ACPI: Early table checksum verification disabled
    lis 16 15:55:07 t61 kernel: ACPI: RSDP 0x00000000000F68C0 000024 (v02 LENOVO)
    lis 16 15:55:07 t61 kernel: ACPI: XSDT 0x00000000BEEBB614 000094 (v01 LENOVO TP-7L 00002300 LTP 00000000)
    lis 16 15:55:07 t61 kernel: ACPI: FACP 0x00000000BEEBB700 0000F4 (v03 LENOVO TP-7L 00002300 LNVO 00000001)
    lis 16 15:55:07 t61 kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 64/32 (20140724/tbfadt-618)
    lis 16 15:55:07 t61 kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe1Block: 0/32 (20140724/tbfadt-618)
    lis 16 15:55:07 t61 kernel: ACPI BIOS Warning (bug): Optional FADT field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20140724/tbfadt-649)
    lis 16 15:55:07 t61 kernel: ACPI: DSDT 0x00000000BEEBBB1D 01003C (v01 LENOVO TP-7L 00002300 MSFT 03000000)
    lis 16 15:55:07 t61 kernel: ACPI: FACS 0x00000000BEEE4000 000040
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0x00000000BEEBB8B4 000269 (v01 LENOVO TP-7L 00002300 MSFT 03000000)
    lis 16 15:55:07 t61 kernel: ACPI: ECDT 0x00000000BEECBB59 000052 (v01 LENOVO TP-7L 00002300 LNVO 00000001)
    lis 16 15:55:07 t61 kernel: ACPI: TCPA 0x00000000BEECBBAB 000032 (v02 LENOVO TP-7L 00002300 LNVO 00000001)
    lis 16 15:55:07 t61 kernel: ACPI: APIC 0x00000000BEECBBDD 000068 (v01 LENOVO TP-7L 00002300 LNVO 00000001)
    lis 16 15:55:07 t61 kernel: ACPI: MCFG 0x00000000BEECBC45 00003C (v01 LENOVO TP-7L 00002300 LNVO 00000001)
    lis 16 15:55:07 t61 kernel: ACPI: HPET 0x00000000BEECBC81 000038 (v01 LENOVO TP-7L 00002300 LNVO 00000001)
    lis 16 15:55:07 t61 kernel: ACPI: SLIC 0x00000000BEECBDF0 000176 (v01 LENOVO TP-7L 00002300 LTP 00000000)
    lis 16 15:55:07 t61 kernel: ACPI: BOOT 0x00000000BEECBF66 000028 (v01 LENOVO TP-7L 00002300 LTP 00000001)
    lis 16 15:55:07 t61 kernel: ACPI: ASF! 0x00000000BEECBF8E 000072 (v16 LENOVO TP-7L 00002300 PTL 00000001)
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0x00000000BEEE26D9 00025F (v01 LENOVO TP-7L 00002300 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0x00000000BEEE2938 0000A6 (v01 LENOVO TP-7L 00002300 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0x00000000BEEE29DE 0004F7 (v01 LENOVO TP-7L 00002300 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0x00000000BEEE2ED5 0001D8 (v01 LENOVO TP-7L 00002300 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: DMI detected: Lenovo ThinkPad T61
    lis 16 15:55:07 t61 kernel: ACPI: Local APIC address 0xfee00000
    lis 16 15:55:07 t61 kernel: No NUMA configuration found
    lis 16 15:55:07 t61 kernel: Faking a node at [mem 0x0000000000000000-0x00000000beeaffff]
    lis 16 15:55:07 t61 kernel: Initmem setup node 0 [mem 0x00000000-0xbeeaffff]
    lis 16 15:55:07 t61 kernel: NODE_DATA [mem 0xbeeac000-0xbeeaffff]
    lis 16 15:55:07 t61 kernel: [ffffea0000000000-ffffea0002ffffff] PMD -> [ffff8800bb400000-ffff8800be3fffff] on node 0
    lis 16 15:55:07 t61 kernel: Zone ranges:
    lis 16 15:55:07 t61 kernel: DMA [mem 0x00001000-0x00ffffff]
    lis 16 15:55:07 t61 kernel: DMA32 [mem 0x01000000-0xffffffff]
    lis 16 15:55:07 t61 kernel: Normal empty
    lis 16 15:55:07 t61 kernel: Movable zone start for each node
    lis 16 15:55:07 t61 kernel: Early memory node ranges
    lis 16 15:55:07 t61 kernel: node 0: [mem 0x00001000-0x0009cfff]
    lis 16 15:55:07 t61 kernel: node 0: [mem 0x00100000-0xbeeaffff]
    lis 16 15:55:07 t61 kernel: On node 0 totalpages: 781900
    lis 16 15:55:07 t61 kernel: DMA zone: 64 pages used for memmap
    lis 16 15:55:07 t61 kernel: DMA zone: 21 pages reserved
    lis 16 15:55:07 t61 kernel: DMA zone: 3996 pages, LIFO batch:0
    lis 16 15:55:07 t61 kernel: DMA32 zone: 12155 pages used for memmap
    lis 16 15:55:07 t61 kernel: DMA32 zone: 777904 pages, LIFO batch:31
    lis 16 15:55:07 t61 kernel: ACPI: PM-Timer IO Port: 0x1008
    lis 16 15:55:07 t61 kernel: ACPI: Local APIC address 0xfee00000
    lis 16 15:55:07 t61 kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    lis 16 15:55:07 t61 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    lis 16 15:55:07 t61 kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    lis 16 15:55:07 t61 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    lis 16 15:55:07 t61 kernel: ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    lis 16 15:55:07 t61 kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    lis 16 15:55:07 t61 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    lis 16 15:55:07 t61 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    lis 16 15:55:07 t61 kernel: ACPI: IRQ0 used by override.
    lis 16 15:55:07 t61 kernel: ACPI: IRQ9 used by override.
    lis 16 15:55:07 t61 kernel: Using ACPI (MADT) for SMP configuration information
    lis 16 15:55:07 t61 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    lis 16 15:55:07 t61 kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    lis 16 15:55:07 t61 kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    lis 16 15:55:07 t61 kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    lis 16 15:55:07 t61 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    lis 16 15:55:07 t61 kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    lis 16 15:55:07 t61 kernel: e820: [mem 0xbf000000-0xefffffff] available for PCI devices
    lis 16 15:55:07 t61 kernel: Booting paravirtualized kernel on bare hardware
    lis 16 15:55:07 t61 kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:2 nr_node_ids:1
    lis 16 15:55:07 t61 kernel: PERCPU: Embedded 29 pages/cpu @ffff8800bea00000 s86848 r8192 d23744 u1048576
    lis 16 15:55:07 t61 kernel: pcpu-alloc: s86848 r8192 d23744 u1048576 alloc=1*2097152
    lis 16 15:55:07 t61 kernel: pcpu-alloc: [0] 0 1
    lis 16 15:55:07 t61 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 769660
    lis 16 15:55:07 t61 kernel: Policy zone: DMA32
    lis 16 15:55:07 t61 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=ea5c6a7b-1f73-4527-b99c-29920084bd42 rw quiet
    lis 16 15:55:07 t61 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    lis 16 15:55:07 t61 kernel: AGP: Checking aperture...
    lis 16 15:55:07 t61 kernel: AGP: No AGP bridge found
    lis 16 15:55:07 t61 kernel: Calgary: detecting Calgary via BIOS EBDA area
    lis 16 15:55:07 t61 kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    lis 16 15:55:07 t61 kernel: Memory: 3063108K/3127600K available (5381K kernel code, 909K rwdata, 1712K rodata, 1140K init, 1176K bss, 64492K reserved)
    lis 16 15:55:07 t61 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    lis 16 15:55:07 t61 kernel: Preemptible hierarchical RCU implementation.
    lis 16 15:55:07 t61 kernel: RCU dyntick-idle grace-period acceleration is enabled.
    lis 16 15:55:07 t61 kernel: Dump stacks of tasks blocking RCU-preempt GP.
    lis 16 15:55:07 t61 kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=2.
    lis 16 15:55:07 t61 kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    lis 16 15:55:07 t61 kernel: NR_IRQS:8448 nr_irqs:440 0
    lis 16 15:55:07 t61 kernel: Console: colour dummy device 80x25
    lis 16 15:55:07 t61 kernel: console [tty0] enabled
    lis 16 15:55:07 t61 kernel: allocated 12582912 bytes of page_cgroup
    lis 16 15:55:07 t61 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    lis 16 15:55:07 t61 kernel: hpet clockevent registered
    lis 16 15:55:07 t61 kernel: tsc: Fast TSC calibration using PIT
    lis 16 15:55:07 t61 kernel: tsc: Detected 2094.738 MHz processor
    lis 16 15:55:07 t61 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4191.03 BogoMIPS (lpj=6982460)
    lis 16 15:55:07 t61 kernel: pid_max: default: 32768 minimum: 301
    lis 16 15:55:07 t61 kernel: ACPI: Core revision 20140724
    lis 16 15:55:07 t61 kernel: ACPI: All ACPI Tables successfully acquired
    lis 16 15:55:07 t61 kernel: Security Framework initialized
    lis 16 15:55:07 t61 kernel: Yama: becoming mindful.
    lis 16 15:55:07 t61 kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    lis 16 15:55:07 t61 kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    lis 16 15:55:07 t61 kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    lis 16 15:55:07 t61 kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys memory
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys devices
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys freezer
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys net_cls
    lis 16 15:55:07 t61 kernel: Initializing cgroup subsys blkio
    lis 16 15:55:07 t61 kernel: CPU: Physical Processor ID: 0
    lis 16 15:55:07 t61 kernel: CPU: Processor Core ID: 0
    lis 16 15:55:07 t61 kernel: mce: CPU supports 6 MCE banks
    lis 16 15:55:07 t61 kernel: CPU0: Thermal monitoring enabled (TM2)
    lis 16 15:55:07 t61 kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
    lis 16 15:55:07 t61 kernel: Freeing SMP alternatives memory: 20K (ffffffff81a02000 - ffffffff81a07000)
    lis 16 15:55:07 t61 kernel: ftrace: allocating 20675 entries in 81 pages
    lis 16 15:55:07 t61 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    lis 16 15:55:07 t61 kernel: smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T8100 @ 2.10GHz (fam: 06, model: 17, stepping: 06)
    lis 16 15:55:07 t61 kernel: Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    lis 16 15:55:07 t61 kernel: ... version: 2
    lis 16 15:55:07 t61 kernel: ... bit width: 40
    lis 16 15:55:07 t61 kernel: ... generic registers: 2
    lis 16 15:55:07 t61 kernel: ... value mask: 000000ffffffffff
    lis 16 15:55:07 t61 kernel: ... max period: 000000007fffffff
    lis 16 15:55:07 t61 kernel: ... fixed-purpose events: 3
    lis 16 15:55:07 t61 kernel: ... event mask: 0000000700000003
    lis 16 15:55:07 t61 kernel: x86: Booting SMP configuration:
    lis 16 15:55:07 t61 kernel: .... node #0, CPUs: #1
    lis 16 15:55:07 t61 kernel: TSC synchronization [CPU#0 -> CPU#1]:
    lis 16 15:55:07 t61 kernel: Measured 383775 cycles TSC warp between CPUs, turning off TSC clock.
    lis 16 15:55:07 t61 kernel: tsc: Marking TSC unstable due to check_tsc_sync_source failed
    lis 16 15:55:07 t61 kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    lis 16 15:55:07 t61 kernel: x86: Booted up 1 node, 2 CPUs
    lis 16 15:55:07 t61 kernel: smpboot: Total of 2 processors activated (8382.07 BogoMIPS)
    lis 16 15:55:07 t61 kernel: devtmpfs: initialized
    lis 16 15:55:07 t61 kernel: PM: Registering ACPI NVS region [mem 0xbeecc000-0xbeefffff] (212992 bytes)
    lis 16 15:55:07 t61 kernel: pinctrl core: initialized pinctrl subsystem
    lis 16 15:55:07 t61 kernel: RTC time: 14:54:57, date: 11/16/14
    lis 16 15:55:07 t61 kernel: NET: Registered protocol family 16
    lis 16 15:55:07 t61 kernel: cpuidle: using governor ladder
    lis 16 15:55:07 t61 kernel: cpuidle: using governor menu
    lis 16 15:55:07 t61 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    lis 16 15:55:07 t61 kernel: ACPI: bus type PCI registered
    lis 16 15:55:07 t61 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    lis 16 15:55:07 t61 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    lis 16 15:55:07 t61 kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    lis 16 15:55:07 t61 kernel: PCI: Using configuration type 1 for base access
    lis 16 15:55:07 t61 kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    lis 16 15:55:07 t61 kernel: mtrr: probably your BIOS does not setup all CPUs.
    lis 16 15:55:07 t61 kernel: mtrr: corrected configuration.
    lis 16 15:55:07 t61 kernel: ACPI: Added _OSI(Module Device)
    lis 16 15:55:07 t61 kernel: ACPI: Added _OSI(Processor Device)
    lis 16 15:55:07 t61 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    lis 16 15:55:07 t61 kernel: ACPI: Added _OSI(Processor Aggregator Device)
    lis 16 15:55:07 t61 kernel: ACPI: Added _OSI(Linux)
    lis 16 15:55:07 t61 kernel: ACPI : EC: EC description table is found, configuring boot EC
    lis 16 15:55:07 t61 kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI
    lis 16 15:55:07 t61 kernel: ACPI: Dynamic OEM Table Load:
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0xFFFF8800BE40F800 0002C4 (v01 PmRef Cpu0Ist 00000100 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: Dynamic OEM Table Load:
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0xFFFF8800BA3FC000 00085E (v01 PmRef Cpu0Cst 00000100 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: Dynamic OEM Table Load:
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0xFFFF8800BA2BE800 0000C8 (v01 PmRef Cpu1Ist 00000100 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: Dynamic OEM Table Load:
    lis 16 15:55:07 t61 kernel: ACPI: SSDT 0xFFFF8800BA2BFC00 000085 (v01 PmRef Cpu1Cst 00000100 INTL 20050513)
    lis 16 15:55:07 t61 kernel: ACPI: Interpreter enabled
    lis 16 15:55:07 t61 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    lis 16 15:55:07 t61 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    lis 16 15:55:07 t61 kernel: ACPI: (supports S0 S3 S4 S5)
    lis 16 15:55:07 t61 kernel: ACPI: Using IOAPIC for interrupt routing
    lis 16 15:55:07 t61 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    lis 16 15:55:07 t61 kernel: ACPI: Power Resource [PUBS] (on)
    lis 16 15:55:07 t61 kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
    lis 16 15:55:07 t61 kernel: acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
    lis 16 15:55:07 t61 kernel: acpi IBM0079:00: ACPI dock station (docks/bays count: 3)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
    lis 16 15:55:07 t61 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    lis 16 15:55:07 t61 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    lis 16 15:55:07 t61 kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
    lis 16 15:55:07 t61 kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    lis 16 15:55:07 t61 kernel: PCI host bridge to bus 0000:00
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [mem 0xbf000000-0xfebfffff]
    lis 16 15:55:07 t61 kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
    lis 16 15:55:07 t61 kernel: pci 0000:00:00.0: [8086:2a00] type 00 class 0x060000
    lis 16 15:55:07 t61 kernel: pci 0000:00:01.0: [8086:2a01] type 01 class 0x060400
    lis 16 15:55:07 t61 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    lis 16 15:55:07 t61 kernel: pci 0000:00:19.0: [8086:1049] type 00 class 0x020000
    lis 16 15:55:07 t61 kernel: pci 0000:00:19.0: reg 0x10: [mem 0xfe200000-0xfe21ffff]
    lis 16 15:55:07 t61 kernel: pci 0000:00:19.0: reg 0x14: [mem 0xfe225000-0xfe225fff]
    lis 16 15:55:07 t61 kernel: pci 0000:00:19.0: reg 0x18: [io 0x1840-0x185f]
    lis 16 15:55:07 t61 kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    lis 16 15:55:07 t61 kernel: pci 0000:00:19.0: System wakeup disabled by ACPI
    lis 16 15:55:07 t61 kernel: pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.0: reg 0x20: [io 0x1860-0x187f]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.1: [8086:2835] type 00 class 0x0c0300
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.1: reg 0x20: [io 0x1880-0x189f]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.1: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xfe226c00-0xfe226fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1a.7: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
    lis 16 15:55:08 t61 kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfe220000-0xfe223fff 64bit]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: [8086:2841] type 01 class 0x060400
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: [8086:2843] type 01 class 0x060400
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: [8086:2845] type 01 class 0x060400
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: [8086:2847] type 01 class 0x060400
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.0: reg 0x20: [io 0x18a0-0x18bf]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.1: reg 0x20: [io 0x18c0-0x18df]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.2: reg 0x20: [io 0x18e0-0x18ff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfe227000-0xfe2273ff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: System wakeup disabled by ACPI
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.0: [8086:2811] type 00 class 0x060100
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.0: can't claim BAR 13 [io 0x1000-0x107f]: address conflict with ACPI CPU throttle [io 0x1010-0x1015]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 1600 (mask 007f)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 15e0 (mask 000f)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 1680 (mask 001f)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: [8086:2850] type 00 class 0x01018a
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: reg 0x20: [io 0x1830-0x183f]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: [8086:2829] type 00 class 0x010601
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: reg 0x10: [io 0x1c48-0x1c4f]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: reg 0x14: [io 0x1c1c-0x1c1f]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: reg 0x18: [io 0x1c40-0x1c47]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x1c18-0x1c1b]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: reg 0x20: [io 0x1c20-0x1c3f]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfe226000-0xfe2267ff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.2: PME# supported from D3hot
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.3: [8086:283e] type 00 class 0x0c0500
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfe227400-0xfe2274ff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.3: reg 0x20: [io 0x1c60-0x1c7f]
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: [10de:0429] type 00 class 0x030000
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd6000000-0xd6ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xd4000000-0xd5ffffff 64bit]
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: reg 0x24: [io 0x2000-0x207f]
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: bridge window [mem 0xd4000000-0xd6ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: bridge window [mem 0xfc000000-0xfdffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: bridge window [mem 0xf8000000-0xf80fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:03:00.0: [8086:4230] type 00 class 0x028000
    lis 16 15:55:08 t61 kernel: pci 0000:03:00.0: reg 0x10: [mem 0xdf2fe000-0xdf2fffff 64bit]
    lis 16 15:55:08 t61 kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: bridge window [mem 0xdc100000-0xdf2fffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: bridge window [mem 0xdfd00000-0xdfdfffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: bridge window [io 0x5000-0x5fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: bridge window [mem 0xd8000000-0xd9ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: bridge window [mem 0xdfa00000-0xdfafffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: bridge window [io 0x6000-0x6fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: bridge window [mem 0xd0000000-0xd1ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: bridge window [mem 0xdf700000-0xdf7fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: bridge window [io 0x7000-0x7fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: bridge window [mem 0xcc000000-0xcdffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: bridge window [mem 0xdf400000-0xdf4fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: [1180:0476] type 02 class 0x060700
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: reg 0x10: [mem 0xf8100000-0xf8100fff]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: supports D1 D2
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.1: [1180:0832] type 00 class 0x0c0010
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.1: reg 0x10: [mem 0xf8101000-0xf81017ff]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.1: supports D1 D2
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [io 0x8000-0xbfff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0xf8100000-0xfbffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0xf4000000-0xf7ffffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0xbf000000-0xfebfffff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0xfed40000-0xfed4bfff] (subtractive decode)
    lis 16 15:55:08 t61 kernel: pci_bus 0000:16: busn_res: can not insert [bus 16-ff] under [bus 15-18] (conflicts with (null) [bus 15-18])
    lis 16 15:55:08 t61 kernel: pci_bus 0000:16: busn_res: [bus 16-ff] end is updated to 17
    lis 16 15:55:08 t61 kernel: acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    lis 16 15:55:08 t61 kernel: ACPI: Enabled 3 GPEs in block 00 to 1F
    lis 16 15:55:08 t61 kernel: ACPI : EC: GPE = 0x12, I/O: command/status = 0x66, data = 0x62
    lis 16 15:55:08 t61 kernel: vgaarb: setting as boot device: PCI:0000:01:00.0
    lis 16 15:55:08 t61 kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    lis 16 15:55:08 t61 kernel: vgaarb: loaded
    lis 16 15:55:08 t61 kernel: vgaarb: bridge control possible 0000:01:00.0
    lis 16 15:55:08 t61 kernel: PCI: Using ACPI for IRQ routing
    lis 16 15:55:08 t61 kernel: PCI: pci_cache_line_size set to 64 bytes
    lis 16 15:55:08 t61 kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    lis 16 15:55:08 t61 kernel: e820: reserve RAM buffer [mem 0xbeeb0000-0xbfffffff]
    lis 16 15:55:08 t61 kernel: NetLabel: Initializing
    lis 16 15:55:08 t61 kernel: NetLabel: domain hash size = 128
    lis 16 15:55:08 t61 kernel: NetLabel: protocols = UNLABELED CIPSOv4
    lis 16 15:55:08 t61 kernel: NetLabel: unlabeled traffic allowed by default
    lis 16 15:55:08 t61 kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    lis 16 15:55:08 t61 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    lis 16 15:55:08 t61 kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    lis 16 15:55:08 t61 kernel: Switched to clocksource hpet
    lis 16 15:55:08 t61 kernel: pnp: PnP ACPI init
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0x00100000-0xbeffffff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    lis 16 15:55:08 t61 kernel: system 00:01: [io 0x164e-0x164f] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [io 0x1000-0x107f] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [io 0x1180-0x11bf] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [io 0x0800-0x080f] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [io 0x15e0-0x15ef] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [io 0x1600-0x165f] could not be reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [mem 0xf0000000-0xf3ffffff] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    lis 16 15:55:08 t61 kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    lis 16 15:55:08 t61 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    lis 16 15:55:08 t61 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    lis 16 15:55:08 t61 kernel: pnp 00:04: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
    lis 16 15:55:08 t61 kernel: pnp 00:05: Plug and Play ACPI device, IDs ATM1200 PNP0c31 (active)
    lis 16 15:55:08 t61 kernel: pnp: PnP ACPI: found 6 devices
    lis 16 15:55:08 t61 kernel: pci 0000:00:1f.0: BAR 13: [io 0x1000-0x107f] has bogus alignment
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: BAR 6: no space for [mem size 0x00020000 pref]
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00020000 pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: bridge window [mem 0xd4000000-0xd6ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: bridge window [mem 0xfc000000-0xfdffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.0: bridge window [mem 0xf8000000-0xf80fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: bridge window [mem 0xdc100000-0xdf2fffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.1: bridge window [mem 0xdfd00000-0xdfdfffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: bridge window [io 0x5000-0x5fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: bridge window [mem 0xd8000000-0xd9ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.2: bridge window [mem 0xdfa00000-0xdfafffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: bridge window [io 0x6000-0x6fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: bridge window [mem 0xd0000000-0xd1ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.3: bridge window [mem 0xdf700000-0xdf7fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: bridge window [io 0x7000-0x7fff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: bridge window [mem 0xcc000000-0xcdffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1c.4: bridge window [mem 0xdf400000-0xdf4fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: BAR 15: assigned [mem 0xf4000000-0xf7ffffff pref]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: BAR 16: assigned [mem 0xc0000000-0xc3ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: BAR 13: assigned [io 0x8000-0x80ff]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: BAR 14: assigned [io 0x8400-0x84ff]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: CardBus bridge to [bus 16-17]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: bridge window [io 0x8000-0x80ff]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: bridge window [io 0x8400-0x84ff]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: bridge window [mem 0xf4000000-0xf7ffffff pref]
    lis 16 15:55:08 t61 kernel: pci 0000:15:00.0: bridge window [mem 0xc0000000-0xc3ffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [io 0x8000-0xbfff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0xf8100000-0xfbffffff]
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: bridge window [mem 0xf4000000-0xf7ffffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 11 [mem 0xbf000000-0xfebfffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:00: resource 12 [mem 0xfed40000-0xfed4bfff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:01: resource 1 [mem 0xd4000000-0xd6ffffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:02: resource 1 [mem 0xfc000000-0xfdffffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf80fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:03: resource 0 [io 0x4000-0x4fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:03: resource 1 [mem 0xdc100000-0xdf2fffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:03: resource 2 [mem 0xdfd00000-0xdfdfffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:04: resource 0 [io 0x5000-0x5fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:04: resource 1 [mem 0xd8000000-0xd9ffffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:04: resource 2 [mem 0xdfa00000-0xdfafffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:05: resource 0 [io 0x6000-0x6fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:05: resource 1 [mem 0xd0000000-0xd1ffffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:05: resource 2 [mem 0xdf700000-0xdf7fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:0d: resource 0 [io 0x7000-0x7fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:0d: resource 1 [mem 0xcc000000-0xcdffffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:0d: resource 2 [mem 0xdf400000-0xdf4fffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 0 [io 0x8000-0xbfff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 1 [mem 0xf8100000-0xfbffffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 2 [mem 0xf4000000-0xf7ffffff 64bit pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 4 [io 0x0000-0x0cf7]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 5 [io 0x0d00-0xffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 6 [mem 0x000a0000-0x000bffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 7 [mem 0x000d0000-0x000d3fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 8 [mem 0x000d4000-0x000d7fff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 9 [mem 0x000d8000-0x000dbfff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 10 [mem 0x000dc000-0x000dffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 11 [mem 0xbf000000-0xfebfffff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:15: resource 12 [mem 0xfed40000-0xfed4bfff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:16: resource 0 [io 0x8000-0x80ff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:16: resource 1 [io 0x8400-0x84ff]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:16: resource 2 [mem 0xf4000000-0xf7ffffff pref]
    lis 16 15:55:08 t61 kernel: pci_bus 0000:16: resource 3 [mem 0xc0000000-0xc3ffffff]
    lis 16 15:55:08 t61 kernel: NET: Registered protocol family 2
    lis 16 15:55:08 t61 kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    lis 16 15:55:08 t61 kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    lis 16 15:55:08 t61 kernel: TCP: Hash tables configured (established 32768 bind 32768)
    lis 16 15:55:08 t61 kernel: TCP: reno registered
    lis 16 15:55:08 t61 kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    lis 16 15:55:08 t61 kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    lis 16 15:55:08 t61 kernel: NET: Registered protocol family 1
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: Video device with shadowed ROM
    lis 16 15:55:08 t61 kernel: PCI: CLS mismatch (64 != 32), using 64 bytes
    lis 16 15:55:08 t61 kernel: Unpacking initramfs...
    lis 16 15:55:08 t61 kernel: Freeing initrd memory: 3276K (ffff88003798a000 - ffff880037cbd000)
    lis 16 15:55:08 t61 kernel: Simple Boot Flag at 0x35 set to 0x1
    lis 16 15:55:08 t61 kernel: microcode: CPU0 sig=0x10676, pf=0x80, revision=0x60f
    lis 16 15:55:08 t61 kernel: microcode: CPU1 sig=0x10676, pf=0x80, revision=0x60f
    lis 16 15:55:08 t61 kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    lis 16 15:55:08 t61 kernel: Scanning for low memory corruption every 60 seconds
    lis 16 15:55:08 t61 kernel: futex hash table entries: 512 (order: 3, 32768 bytes)
    lis 16 15:55:08 t61 kernel: Initialise system trusted keyring
    lis 16 15:55:08 t61 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    lis 16 15:55:08 t61 kernel: zpool: loaded
    lis 16 15:55:08 t61 kernel: zbud: loaded
    lis 16 15:55:08 t61 kernel: VFS: Disk quotas dquot_6.5.2
    lis 16 15:55:08 t61 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    lis 16 15:55:08 t61 kernel: msgmni has been set to 5989
    lis 16 15:55:08 t61 kernel: Key type big_key registered
    lis 16 15:55:08 t61 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    lis 16 15:55:08 t61 kernel: io scheduler noop registered
    lis 16 15:55:08 t61 kernel: io scheduler deadline registered
    lis 16 15:55:08 t61 kernel: io scheduler cfq registered (default)
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:01.0: irq 24 for MSI/MSI-X
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.0: irq 25 for MSI/MSI-X
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.1: irq 26 for MSI/MSI-X
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.2: irq 27 for MSI/MSI-X
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.3: irq 28 for MSI/MSI-X
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.4: irq 29 for MSI/MSI-X
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    lis 16 15:55:08 t61 kernel: pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    lis 16 15:55:08 t61 kernel: pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    lis 16 15:55:08 t61 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    lis 16 15:55:08 t61 kernel: pciehp: Using ACPI for slot detection.
    lis 16 15:55:08 t61 kernel: pciehp 0000:00:1c.3:pcie04: Slot #5 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
    lis 16 15:55:08 t61 kernel: pciehp 0000:00:1c.3:pcie04: Timeout on hotplug command 0x00000000 (issued 1333 msec ago)
    lis 16 15:55:08 t61 kernel: pciehp 0000:00:1c.3:pcie04: service driver pciehp loaded
    lis 16 15:55:08 t61 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    lis 16 15:55:08 t61 kernel: vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    lis 16 15:55:08 t61 kernel: vesafb: scrolling: redraw
    lis 16 15:55:08 t61 kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    lis 16 15:55:08 t61 kernel: vesafb: framebuffer at 0xd5000000, mapped to 0xffffc90004780000, using 5120k, total 5120k
    lis 16 15:55:08 t61 kernel: Console: switching to colour frame buffer device 160x64
    lis 16 15:55:08 t61 kernel: fb0: VESA VGA frame buffer device
    lis 16 15:55:08 t61 kernel: intel_idle: does not run on family 6 model 23
    lis 16 15:55:08 t61 kernel: GHES: HEST is not enabled!
    lis 16 15:55:08 t61 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    lis 16 15:55:08 t61 kernel: Linux agpgart interface v0.103
    lis 16 15:55:08 t61 kernel: rtc_cmos 00:02: RTC can wake from S4
    lis 16 15:55:08 t61 kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    lis 16 15:55:08 t61 kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    lis 16 15:55:08 t61 kernel: ledtrig-cpu: registered to indicate activity on CPUs
    lis 16 15:55:08 t61 kernel: TCP: cubic registered
    lis 16 15:55:08 t61 kernel: NET: Registered protocol family 10
    lis 16 15:55:08 t61 kernel: NET: Registered protocol family 17
    lis 16 15:55:08 t61 kernel: Loading compiled-in X.509 certificates
    lis 16 15:55:08 t61 kernel: registered taskstats version 1
    lis 16 15:55:08 t61 kernel: Magic number: 6:608:940
    lis 16 15:55:08 t61 kernel: pci_express 0000:00:1c.3:pcie08: hash matches
    lis 16 15:55:08 t61 kernel: rtc_cmos 00:02: setting system clock to 2014-11-16 14:54:59 UTC (1416149699)
    lis 16 15:55:08 t61 kernel: PM: Hibernation image not present or could not be loaded.
    lis 16 15:55:08 t61 kernel: Freeing unused kernel memory: 1140K (ffffffff818e5000 - ffffffff81a02000)
    lis 16 15:55:08 t61 kernel: Write protecting the kernel read-only data: 8192k
    lis 16 15:55:08 t61 kernel: Freeing unused kernel memory: 752K (ffff880001544000 - ffff880001600000)
    lis 16 15:55:08 t61 kernel: Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    lis 16 15:55:08 t61 kernel: random: systemd-tmpfile urandom read with 3 bits of entropy available
    lis 16 15:55:08 t61 kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    lis 16 15:55:08 t61 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    lis 16 15:55:08 t61 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    lis 16 15:55:08 t61 kernel: ACPI: bus type USB registered
    lis 16 15:55:08 t61 kernel: usbcore: registered new interface driver usbfs
    lis 16 15:55:08 t61 kernel: usbcore: registered new interface driver hub
    lis 16 15:55:08 t61 kernel: usbcore: registered new device driver usb
    lis 16 15:55:08 t61 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    lis 16 15:55:08 t61 kernel: uhci_hcd: USB Universal Host Controller Interface driver
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001860
    lis 16 15:55:08 t61 kernel: hub 1-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 1-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: ehci-pci: EHCI PCI platform driver
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001880
    lis 16 15:55:08 t61 kernel: hub 2-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 2-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 3
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.0: irq 16, io base 0x000018a0
    lis 16 15:55:08 t61 kernel: hub 3-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 3-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 4
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.1: irq 17, io base 0x000018c0
    lis 16 15:55:08 t61 kernel: hub 4-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 4-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 5
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
    lis 16 15:55:08 t61 kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018e0
    lis 16 15:55:08 t61 kernel: hub 5-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 5-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 6
    lis 16 15:55:08 t61 kernel: SCSI subsystem initialized
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1a.7: irq 22, io mem 0xfe226c00
    lis 16 15:55:08 t61 kernel: pci 0000:00:1e.0: enabling device (0005 -> 0007)
    lis 16 15:55:08 t61 kernel: libata version 3.00 loaded.
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    lis 16 15:55:08 t61 kernel: hub 6-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 6-0:1.0: 4 ports detected
    lis 16 15:55:08 t61 kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    lis 16 15:55:08 t61 kernel: hub 1-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 1-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: firewire_ohci 0000:15:00.1: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    lis 16 15:55:08 t61 kernel: hub 2-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 2-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: ata_piix 0000:00:1f.1: version 2.13
    lis 16 15:55:08 t61 kernel: scsi host0: ata_piix
    lis 16 15:55:08 t61 kernel: scsi host1: ata_piix
    lis 16 15:55:08 t61 kernel: ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1830 irq 14
    lis 16 15:55:08 t61 kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1838 irq 15
    lis 16 15:55:08 t61 kernel: ahci 0000:00:1f.2: version 3.0
    lis 16 15:55:08 t61 kernel: ahci 0000:00:1f.2: irq 30 for MSI/MSI-X
    lis 16 15:55:08 t61 kernel: ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 1.5 Gbps 0x1 impl SATA mode
    lis 16 15:55:08 t61 kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc
    lis 16 15:55:08 t61 kernel: ata2: port disabled--ignoring
    lis 16 15:55:08 t61 kernel: scsi host2: ahci
    lis 16 15:55:08 t61 kernel: scsi host3: ahci
    lis 16 15:55:08 t61 kernel: scsi host4: ahci
    lis 16 15:55:08 t61 kernel: ata3: SATA max UDMA/133 abar m2048@0xfe226000 port 0xfe226100 irq 30
    lis 16 15:55:08 t61 kernel: ata4: DUMMY
    lis 16 15:55:08 t61 kernel: ata5: DUMMY
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 7
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1d.7: debug port 1
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1d.7: irq 19, io mem 0xfe227000
    lis 16 15:55:08 t61 kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    lis 16 15:55:08 t61 kernel: hub 7-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 7-0:1.0: 6 ports detected
    lis 16 15:55:08 t61 kernel: hub 3-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 3-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: hub 4-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 4-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: hub 5-0:1.0: USB hub found
    lis 16 15:55:08 t61 kernel: hub 5-0:1.0: 2 ports detected
    lis 16 15:55:08 t61 kernel: ata1.00: ATAPI: HL-DT-ST DVDRAM GSA-U10N, 1.05, max UDMA/33
    lis 16 15:55:08 t61 kernel: ata1.00: configured for UDMA/33
    lis 16 15:55:08 t61 kernel: scsi 0:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-U10N 1.05 PQ: 0 ANSI: 5
    lis 16 15:55:08 t61 kernel: ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    lis 16 15:55:08 t61 kernel: ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    lis 16 15:55:08 t61 kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    lis 16 15:55:08 t61 kernel: ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    lis 16 15:55:08 t61 kernel: ata3.00: ATA-8: WDC WD3200BEVT-00A23T0, 01.01A01, max UDMA/133
    lis 16 15:55:08 t61 kernel: ata3.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    lis 16 15:55:08 t61 kernel: ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    lis 16 15:55:08 t61 kernel: ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    lis 16 15:55:08 t61 kernel: ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    lis 16 15:55:08 t61 kernel: ata3.00: configured for UDMA/133
    lis 16 15:55:08 t61 kernel: scsi 2:0:0:0: Direct-Access ATA WDC WD3200BEVT-0 1A01 PQ: 0 ANSI: 5
    lis 16 15:55:08 t61 kernel: sr 0:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    lis 16 15:55:08 t61 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    lis 16 15:55:08 t61 kernel: sr 0:0:0:0: Attached scsi CD-ROM sr0
    lis 16 15:55:08 t61 kernel: sd 2:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    lis 16 15:55:08 t61 kernel: sd 2:0:0:0: [sda] Write Protect is off
    lis 16 15:55:08 t61 kernel: sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    lis 16 15:55:08 t61 kernel: sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    lis 16 15:55:08 t61 kernel: sda: sda1 sda2 sda3
    lis 16 15:55:08 t61 kernel: sd 2:0:0:0: [sda] Attached SCSI disk
    lis 16 15:55:08 t61 kernel: firewire_core 0000:15:00.1: created device fw0: GUID 00061b032a56ecc5, S400
    lis 16 15:55:08 t61 kernel: usb 1-1: new full-speed USB device number 2 using uhci_hcd
    lis 16 15:55:08 t61 kernel: usb 1-2: new full-speed USB device number 3 using uhci_hcd
    lis 16 15:55:08 t61 kernel: usb 2-1: new low-speed USB device number 2 using uhci_hcd
    lis 16 15:55:08 t61 kernel: hidraw: raw HID events driver (C) Jiri Kosina
    lis 16 15:55:08 t61 kernel: usbcore: registered new interface driver usbhid
    lis 16 15:55:08 t61 kernel: usbhid: USB HID core driver
    lis 16 15:55:08 t61 kernel: input: Microsoft Microsoft Optical Mouse with Tilt Wheel as /devices/pci0000:00/0000:00:1a.1/usb2/2-1/2-1:1.0/0003:045E:00D1.0001/input/input2
    lis 16 15:55:08 t61 kernel: hid-generic 0003:045E:00D1.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Microsoft Optical Mouse with Tilt Wheel] on usb-0000:00:1a.1-1/input0
    lis 16 15:55:08 t61 kernel: floppy0: no floppy controllers found
    lis 16 15:55:08 t61 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    lis 16 15:55:08 t61 kernel: random: nonblocking pool is initialized
    lis 16 15:55:08 t61 kernel: fuse init (API version 7.23)
    lis 16 15:55:08 t61 kernel: EXT4-fs (sda1): re-mounted. Opts: data=ordered
    lis 16 15:55:08 t61 systemd-journal[126]: Journal started
    lis 16 15:55:06 t61 systemd-modules-load[124]: Inserted module 'fuse'
    lis 16 15:55:07 t61 systemd-udevd[151]: starting version 217
    lis 16 15:55:09 t61 kernel: Monitor-Mwait will be used to enter C-1 state
    lis 16 15:55:09 t61 kernel: Monitor-Mwait will be used to enter C-2 state
    lis 16 15:55:09 t61 kernel: Monitor-Mwait will be used to enter C-3 state
    lis 16 15:55:09 t61 kernel: ACPI: acpi_idle registered with cpuidle
    lis 16 15:55:09 t61 kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x3203, rev-id 9)
    lis 16 15:55:09 t61 kernel: ACPI: Video Device [VID1] (multi-head: yes rom: no post: no)
    lis 16 15:55:09 t61 kernel: acpi device:06: registered as cooling_device2
    lis 16 15:55:09 t61 kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:01/input/input3
    lis 16 15:55:09 t61 kernel: tpm_tis 00:05: TPM is disabled/deactivated (0x6)
    lis 16 15:55:09 t61 kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
    lis 16 15:55:09 t61 kernel: ACPI: Lid Switch [LID]
    lis 16 15:55:09 t61 kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
    lis 16 15:55:09 t61 kernel: ACPI: Sleep Button [SLPB]
    lis 16 15:55:09 t61 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
    lis 16 15:55:09 t61 kernel: ACPI: Power Button [PWRF]
    lis 16 15:55:09 t61 kernel: snd_hda_intel 0000:00:1b.0: probe_mask set to 0x1 for device 17aa:20ac
    lis 16 15:55:09 t61 kernel: snd_hda_intel 0000:00:1b.0: irq 31 for MSI/MSI-X
    lis 16 15:55:09 t61 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    lis 16 15:55:09 t61 kernel: pps_core: LinuxPPS API ver. 1 registered
    lis 16 15:55:09 t61 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    lis 16 15:55:09 t61 kernel: wmi: Mapper loaded
    lis 16 15:55:09 t61 kernel: thermal LNXTHERM:00: registered as thermal_zone0
    lis 16 15:55:09 t61 kernel: ACPI: Thermal Zone [THM0] (58 C)
    lis 16 15:55:09 t61 kernel: thermal LNXTHERM:01: registered as thermal_zone1
    lis 16 15:55:09 t61 kernel: ACPI: Thermal Zone [THM1] (60 C)
    lis 16 15:55:09 t61 kernel: ACPI: Battery Slot [BAT0] (battery present)
    lis 16 15:55:09 t61 kernel: PTP clock support registered
    lis 16 15:55:09 t61 kernel: ACPI: AC Adapter [AC] (on-line)
    lis 16 15:55:10 t61 kernel: Non-volatile memory driver v1.3
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.25
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: ThinkPad BIOS 7LETD0WW (2.30 ), EC 7KHT24WW-1.08
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: Lenovo ThinkPad T61, model 7664R6G
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: detected a 16-level brightness capable ThinkPad
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: ACPI backlight control delay disabled
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: radio switch found; radios are enabled
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    lis 16 15:55:10 t61 kernel: thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    lis 16 15:55:10 t61 kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
    lis 16 15:55:10 t61 kernel: e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    l

    If it is that bug, the fix is in 3.17.3 which is in [core] now.
    My experience is crashes like that are usually hardware instability.  Last time it happened to me it was because my RAM.  I had to underclock it to make it stable.  If the kernel update doesn't help you, you could try running a stress test like Prime95.
    http://www.mersenne.org/download/
    If your hardware is unstable it will usually crash after only 5-10 minutes.  If you can run it for multiple hours that can help rule out hardware.

  • Hibernate not working but why

    I have followed the wiki and added "resume=/dev/sda2" to my kernel paramteters. (sda2 being my swap partition). I have added the 'resume' hook to mkinitcpio.conf, and also regenerated it with "mkinitcpio -p linux" as outlined in the wiki page on suspend/hibernate.
    When i run 'systemctl hibernate' it appears to actually go into hibernation, but then when i turn it on again it boots from scratch.
    Oddly I notice that in dmesg it shows my kernel parameters but 'resume=/dev/sda2' is missing ! I don't understand why/how, and I even got rid of all other boot entires with uefibootmgr and double checked which the current one was, and it shows right there that the current one does have 'resume' appended to the kernel parameters, yet in dmesg it's missing ! If that's unclear what I mean is
    from efibootmgr (note #0006 which is current and first in boot order, has the resume paramter added):
    [root@hostname user]# efibootmgr -v
    BootCurrent: 0006
    Timeout: 2 seconds
    BootOrder: 0006,0001,0002,0003
    Boot0000* Arch HD(1,800,100000,b75635ad-ec31-4cac-ad80-25584831f818)File(\vmlinuz-linux)r.o.o.t.=./.d.e.v./.s.d.a.3. .r.w. .i.n.i.t.r.d.=./.i.n.t.e.l.-.u.c.o.d.e...i.m.g. .i.n.i.t.r.d.=./.i.n.i.t.r.a.m.f.s.-.l.i.n.u.x...i.m.g.
    Boot0001* UEFI:CD/DVD Drive BIOS(81,0,00)
    Boot0002* UEFI:Removable Device BIOS(82,0,00)
    Boot0003* UEFI:Network Device BIOS(83,0,00)
    Boot0004* UEFI:Removable Device BIOS(82,0,00)
    Boot0005* UEFI:Network Device BIOS(83,0,00)
    Boot0006* ArchLinux HD(1,800,100000,b75635ad-ec31-4cac-ad80-25584831f818)File(\vmlinuz-linux)r.o.o.t.=./.d.e.v./.s.d.a.3. .r.w. .r.e.s.u.m.e.=./.d.e.v./.s.d.a.2. .i.n.i.t.r.d.=./.i.n.t.e.l.-.u.c.o.d.e...i.m.g. .i.n.i.t.r.d.=.i.n.i.t.r.a.m.f.s.-.l.i.n.u.x...i.m.g.
    [root@hostname user]#
    from boot log (what happened to the resume parameter??):
    Dec 29 06:37:41 hostname kernel: Command line: root=/dev/sda3 rw initrd=/intel-ucode.img initrd=/initramfs-linux.img
    Looking in logs I see some potentially relevant sections
    this is log from trying to resume from hibernate, it looks like it detect the suspend data but then overwrites it??
    Dec 29 06:20:54 hostname swapon[244]: swapon: /dev/sda2: software suspend data detected. Rewriting the swap signature.
    Dec 29 06:20:54 hostname swapon[245]: swapon: /dev/sda2: software suspend data detected. Rewriting the swap signature.
    Dec 29 06:20:54 hostname swapon[244]: swapon: /dev/sda2: swapon failed: Device or resource busy
    Dec 29 06:20:54 hostname systemd[1]: Activated swap Swap Partition.
    Dec 29 06:20:54 hostname systemd[1]: Activated swap /dev/disk/by-uuid/ac0bdb8c-fdaa-47ab-ae2b-7c808075f5a5.
    Dec 29 06:20:54 hostname systemd[1]: dev-sda2.swap swap process exited, code=exited status=255
    Dec 29 06:20:54 hostname systemd[1]: Unit dev-sda2.swap entered failed state.
    Dec 29 06:20:54 hostname kernel: Adding 8388604k swap on /dev/sda2. Priority:-1 extents:1 across:8388604k FS
    Dec 29 06:20:54 hostname systemd[1]: Starting Swap.
    Dec 29 06:20:54 hostname systemd[1]: Reached target Swap.
    and lastly in the log I see multiple instances of this which seems like it could be related:
    Dec 29 06:37:42 hostname kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    how can I make this computer resume properly from hibernation? (PS - suspend to ram works properly)
    thanks
    edit: latest boot from attempted hibernate has slightly differnt log message:
    systemd[1]: Started Load/Save RF Kill Switch Status of rfkill0.
    Dec 29 13:20:53 hostname kernel: media: Linux media interface: v0.10
    Dec 29 13:20:53 hostname kernel: Linux video capture interface: v2.00
    Dec 29 13:20:53 hostname swapon[249]: swapon: /dev/sda2: software suspend data detected. Rewriting the swap signature.
    Dec 29 13:20:53 hostname swapon[253]: swapon: /dev/sda2: software suspend data detected. Rewriting the swap signature.
    Dec 29 13:20:53 hostname kernel: Adding 8388604k swap on /dev/sda2. Priority:-1 extents:1 across:8388604k FS
    Dec 29 13:20:53 hostname systemd[1]: Activated swap Swap Partition.
    Dec 29 13:20:53 hostname systemd[1]: Activated swap /dev/disk/by-uuid/ac0bdb8c-fdaa-47ab-ae2b-7c808075f5a5.
    Dec 29 13:20:53 hostname systemd[1]: Starting Swap.
    Dec 29 13:20:53 hostname systemd[1]: Reached target Swap.
    Dec 29 13:20:53 hostname swapon[253]: swapon: /dev/disk/by-uuid/ac0bdb8c-fdaa-47ab-ae2b-7c808075f5a5: swapon failed: Device or resource busy
    Dec 29 13:20:53 hostname systemd[1]: dev-disk-by\x2duuid-ac0bdb8c\x2dfdaa\x2d47ab\x2dae2b\x2d7c808075f5a5.swap swap process exited, code=exited
    Dec 29 13:20:53 hostname systemd[1]: Unit dev-disk-by\x2duuid-ac0bdb8c\x2dfdaa\x2d47ab\x2dae2b\x2d7c808075f5a5.swap entered failed state.
    Dec 29 13:20:53 hostname systemd-fsck[247]: fsck.fat 3.0.27 (2014-11-12)
    edit 2: full dmesg when powering on after hibernate
    [ 0.000000] CPU0 microcode updated early to revision 0x1c, date = 2014-07-03
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.17.6-1-ARCH (builduser@foutrelis) (gcc version 4.9.2 (GCC) ) #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014
    [ 0.000000] Command line: root=/dev/sda3 rw initrd=/intel-ucode.img initrd=/initramfs-linux.img
    [ 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-0x000000000009dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c9d32fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c9d33000-0x00000000c9d39fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000c9d3a000-0x00000000ca566fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca567000-0x00000000ca7cffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ca7d0000-0x00000000d993afff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000d993b000-0x00000000d9b42fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000d9b43000-0x00000000d9e80fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000d9e81000-0x00000000dab49fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000dab4a000-0x00000000daffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000dbc00000-0x00000000dfdfffff] 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-0x000000021f1fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by American Megatrends
    [ 0.000000] efi: ACPI 2.0=0xdab08000 ACPI=0xdab08000 SMBIOS=0xdaf58318
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000007000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000007000-0x0000000000058000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
    [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000059000-0x000000000009e000) (0MB)
    [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f4f000) (15MB)
    [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000001f4f000-0x000000007fbff000) (2012MB)
    [ 0.000000] efi: mem09: type=2, attr=0xf, range=[0x000000007fbff000-0x0000000080000000) (4MB)
    [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000080000000-0x00000000c67ef000) (1127MB)
    [ 0.000000] efi: mem11: type=2, attr=0xf, range=[0x00000000c67ef000-0x00000000c68ef000) (1MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x00000000c68ef000-0x00000000c7de4000) (20MB)
    [ 0.000000] efi: mem13: type=1, attr=0xf, range=[0x00000000c7de4000-0x00000000c9d33000) (31MB)
    [ 0.000000] efi: mem14: type=10, attr=0xf, range=[0x00000000c9d33000-0x00000000c9d3a000) (0MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x00000000c9d3a000-0x00000000c9e8e000) (1MB)
    [ 0.000000] efi: mem16: type=3, attr=0xf, range=[0x00000000c9e8e000-0x00000000ca527000) (6MB)
    [ 0.000000] efi: mem17: type=4, attr=0xf, range=[0x00000000ca527000-0x00000000ca544000) (0MB)
    [ 0.000000] efi: mem18: type=3, attr=0xf, range=[0x00000000ca544000-0x00000000ca55e000) (0MB)
    [ 0.000000] efi: mem19: type=4, attr=0xf, range=[0x00000000ca55e000-0x00000000ca567000) (0MB)
    [ 0.000000] efi: mem20: type=6, attr=0x800000000000000f, range=[0x00000000ca567000-0x00000000ca7d0000) (2MB)
    [ 0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000ca7d0000-0x00000000ca7df000) (0MB)
    [ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000ca7df000-0x00000000ca7ec000) (0MB)
    [ 0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000ca7ec000-0x00000000ca7ee000) (0MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000ca7ee000-0x00000000d7509000) (205MB)
    [ 0.000000] efi: mem25: type=4, attr=0xf, range=[0x00000000d7509000-0x00000000d757c000) (0MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x00000000d757c000-0x00000000d757d000) (0MB)
    [ 0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000d757d000-0x00000000d758d000) (0MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x00000000d758d000-0x00000000d759d000) (0MB)
    [ 0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000d759d000-0x00000000d75f5000) (0MB)
    [ 0.000000] efi: mem30: type=7, attr=0xf, range=[0x00000000d75f5000-0x00000000d75fd000) (0MB)
    [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x00000000d75fd000-0x00000000d7621000) (0MB)
    [ 0.000000] efi: mem32: type=7, attr=0xf, range=[0x00000000d7621000-0x00000000d7629000) (0MB)
    [ 0.000000] efi: mem33: type=4, attr=0xf, range=[0x00000000d7629000-0x00000000d7676000) (0MB)
    [ 0.000000] efi: mem34: type=7, attr=0xf, range=[0x00000000d7676000-0x00000000d7677000) (0MB)
    [ 0.000000] efi: mem35: type=4, attr=0xf, range=[0x00000000d7677000-0x00000000d8cec000) (22MB)
    [ 0.000000] efi: mem36: type=7, attr=0xf, range=[0x00000000d8cec000-0x00000000d9676000) (9MB)
    [ 0.000000] efi: mem37: type=3, attr=0xf, range=[0x00000000d9676000-0x00000000d993b000) (2MB)
    [ 0.000000] efi: mem38: type=0, attr=0xf, range=[0x00000000d993b000-0x00000000d9ad9000) (1MB)
    [ 0.000000] efi: mem39: type=0, attr=0xf, range=[0x00000000d9ad9000-0x00000000d9b43000) (0MB)
    [ 0.000000] efi: mem40: type=7, attr=0xf, range=[0x00000000d9b43000-0x00000000d9e81000) (3MB)
    [ 0.000000] efi: mem41: type=10, attr=0xf, range=[0x00000000d9e81000-0x00000000dab2b000) (12MB)
    [ 0.000000] efi: mem42: type=10, attr=0xf, range=[0x00000000dab2b000-0x00000000dab35000) (0MB)
    [ 0.000000] efi: mem43: type=10, attr=0xf, range=[0x00000000dab35000-0x00000000dab4a000) (0MB)
    [ 0.000000] efi: mem44: type=6, attr=0x800000000000000f, range=[0x00000000dab4a000-0x00000000dae81000) (3MB)
    [ 0.000000] efi: mem45: type=6, attr=0x800000000000000f, range=[0x00000000dae81000-0x00000000daeb8000) (0MB)
    [ 0.000000] efi: mem46: type=6, attr=0x800000000000000f, range=[0x00000000daeb8000-0x00000000daeba000) (0MB)
    [ 0.000000] efi: mem47: type=6, attr=0x800000000000000f, range=[0x00000000daeba000-0x00000000daf5a000) (0MB)
    [ 0.000000] efi: mem48: type=5, attr=0x800000000000000f, range=[0x00000000daf5a000-0x00000000daf7b000) (0MB)
    [ 0.000000] efi: mem49: type=5, attr=0x800000000000000f, range=[0x00000000daf7b000-0x00000000dafff000) (0MB)
    [ 0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000dafff000-0x00000000db000000) (0MB)
    [ 0.000000] efi: mem51: type=7, attr=0xf, range=[0x0000000100000000-0x000000021f200000) (4594MB)
    [ 0.000000] efi: mem52: type=0, attr=0x8000000000000000, range=[0x00000000dbc00000-0x00000000dfe00000) (66MB)
    [ 0.000000] efi: mem53: type=11, attr=0x8000000000000001, range=[0x00000000f8000000-0x00000000fc000000) (64MB)
    [ 0.000000] efi: mem54: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem55: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
    [ 0.000000] efi: mem56: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem57: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem58: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: ASUSTeK COMPUTER INC. X555LA/X555LA, BIOS X555LA.308 08/14/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 = 0x21f200 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7E00000000 write-back
    [ 0.000000] 1 base 0200000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable
    [ 0.000000] 3 base 00DC000000 mask 7FFC000000 uncachable
    [ 0.000000] 4 base 00DBC00000 mask 7FFFC00000 uncachable
    [ 0.000000] 5 base 021F800000 mask 7FFF800000 uncachable
    [ 0.000000] 6 base 021F400000 mask 7FFFC00000 uncachable
    [ 0.000000] 7 base 021F200000 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 0xdbc00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 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 [0x01b2b000, 0x01b2bfff] PGTABLE
    [ 0.000000] BRK [0x01b2c000, 0x01b2cfff] PGTABLE
    [ 0.000000] BRK [0x01b2d000, 0x01b2dfff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x21f000000-0x21f1fffff]
    [ 0.000000] [mem 0x21f000000-0x21f1fffff] page 2M
    [ 0.000000] BRK [0x01b2e000, 0x01b2efff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x21c000000-0x21effffff]
    [ 0.000000] [mem 0x21c000000-0x21effffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x21bffffff]
    [ 0.000000] [mem 0x200000000-0x21bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xc9d32fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0xbfffffff] page 1G
    [ 0.000000] [mem 0xc0000000-0xc9bfffff] page 2M
    [ 0.000000] [mem 0xc9c00000-0xc9d32fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xc9d3a000-0xca566fff]
    [ 0.000000] [mem 0xc9d3a000-0xc9dfffff] page 4k
    [ 0.000000] [mem 0xc9e00000-0xca3fffff] page 2M
    [ 0.000000] [mem 0xca400000-0xca566fff] page 4k
    [ 0.000000] BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xca7d0000-0xd993afff]
    [ 0.000000] [mem 0xca7d0000-0xca7fffff] page 4k
    [ 0.000000] [mem 0xca800000-0xd97fffff] page 2M
    [ 0.000000] [mem 0xd9800000-0xd993afff] page 4k
    [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xd9b43000-0xd9e80fff]
    [ 0.000000] [mem 0xd9b43000-0xd9bfffff] page 4k
    [ 0.000000] [mem 0xd9c00000-0xd9dfffff] page 2M
    [ 0.000000] [mem 0xd9e00000-0xd9e80fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
    [ 0.000000] [mem 0xdafff000-0xdaffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x7fbff000-0x7fffffff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000DAB08000 000024 (v02 _ASUS_)
    [ 0.000000] ACPI: XSDT 0x00000000DAB08090 0000AC (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000DAB1E0D0 00010C (v05 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000DAB08258 015E77 (v02 _ASUS_ Notebook 00000012 INTL 20120711)
    [ 0.000000] ACPI: FACS 0x00000000DAB47080 000040
    [ 0.000000] ACPI: APIC 0x00000000DAB1E1E0 000072 (v03 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000DAB1E258 000044 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: ECDT 0x00000000DAB1E2A0 0000C1 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
    [ 0.000000] ACPI: LPIT 0x00000000DAB1E368 00005C (v01 _ASUS_ Notebook 00000000 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000DAB1E3C8 000174 (v01 Intel zpoddult 00001000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000DAB1E540 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000DAB1EA80 000AD8 (v01 PmRef CpuPm 00003000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000DAB1F558 0002DE (v01 PmRef Cpu0Tst 00003000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000DAB1F838 000348 (v01 PmRef ApTst 00003000 INTL 20120711)
    [ 0.000000] ACPI: MCFG 0x00000000DAB1FB80 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 0x00000000DAB1FBC0 003072 (v01 DptfTa DptfTabl 00001000 INTL 20120711)
    [ 0.000000] ACPI: HPET 0x00000000DAB22C38 000038 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000DAB22C70 000298 (v01 SataRe SataTabl 00001000 INTL 20120711)
    [ 0.000000] ACPI: SSDT 0x00000000DAB22F08 003EE7 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    [ 0.000000] ACPI: BGRT 0x00000000DAB26DF0 000038 (v00 _ASUS_ Notebook 01072009 ASUS 00010013)
    [ 0.000000] ACPI: MSDM 0x00000000D9B41E18 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-0x000000021f1fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x21f1fffff]
    [ 0.000000] NODE_DATA [mem 0x21f1f6000-0x21f1f9fff]
    [ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880216800000-ffff88021e7fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x21f1fffff]
    [ 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-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0xc9d32fff]
    [ 0.000000] node 0: [mem 0xc9d3a000-0xca566fff]
    [ 0.000000] node 0: [mem 0xca7d0000-0xd993afff]
    [ 0.000000] node 0: [mem 0xd9b43000-0xd9e80fff]
    [ 0.000000] node 0: [mem 0xdafff000-0xdaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x21f1fffff]
    [ 0.000000] On node 0 totalpages: 2067366
    [ 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: 13865 pages used for memmap
    [ 0.000000] DMA32 zone: 887306 pages, LIFO batch:31
    [ 0.000000] Normal zone: 18376 pages used for memmap
    [ 0.000000] Normal zone: 1176064 pages, LIFO batch:31
    [ 0.000000] Reserving Intel graphics stolen memory at 0xdbe00000-0xdfdfffff
    [ 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[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[0x08] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: 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] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc9d33000-0xc9d39fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca567000-0xca7cffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xd993b000-0xd9b42fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xd9e81000-0xdab49fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdab4a000-0xdaffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdbbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdbc00000-0xdfdfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdfe00000-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 0xdfe00000-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 28 pages/cpu @ffff88021ee00000 s82752 r8192 d23744 u524288
    [ 0.000000] pcpu-alloc: s82752 r8192 d23744 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: 2035040
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda3 rw initrd=/intel-ucode.img initrd=/initramfs-linux.img
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 8020356K/8269464K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 249108K 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:728 0
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2394.523 MHz processor
    [ 0.000041] Calibrating delay loop (skipped), value calculated using timer frequency.. 4790.58 BogoMIPS (lpj=7981743)
    [ 0.000045] pid_max: default: 32768 minimum: 301
    [ 0.000053] ACPI: Core revision 20140724
    [ 0.032069] ACPI: All ACPI Tables successfully acquired
    [ 0.034172] Security Framework initialized
    [ 0.034180] Yama: becoming mindful.
    [ 0.034868] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.037036] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.037959] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.037972] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.038221] Initializing cgroup subsys memory
    [ 0.038227] Initializing cgroup subsys devices
    [ 0.038229] Initializing cgroup subsys freezer
    [ 0.038232] Initializing cgroup subsys net_cls
    [ 0.038234] Initializing cgroup subsys blkio
    [ 0.038261] CPU: Physical Processor ID: 0
    [ 0.038262] CPU: Processor Core ID: 0
    [ 0.038268] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.039494] mce: CPU supports 7 MCE banks
    [ 0.039510] CPU0: Thermal monitoring enabled (TM1)
    [ 0.039524] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    [ 0.039661] Freeing SMP alternatives memory: 20K (ffffffff819fe000 - ffffffff81a03000)
    [ 0.042020] ftrace: allocating 20687 entries in 81 pages
    [ 0.054016] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    [ 0.087050] smpboot: CPU0: Intel(R) Core(TM) i5-4210U CPU @ 1.70GHz (fam: 06, model: 45, stepping: 01)
    [ 0.087058] TSC deadline timer enabled
    [ 0.087085] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.087112] ... version: 3
    [ 0.087114] ... bit width: 48
    [ 0.087115] ... generic registers: 4
    [ 0.087116] ... value mask: 0000ffffffffffff
    [ 0.087117] ... max period: 0000ffffffffffff
    [ 0.087119] ... fixed-purpose events: 3
    [ 0.087120] ... event mask: 000000070000000f
    [ 0.107197] x86: Booting SMP configuration:
    [ 0.107199] .... node #0, CPUs: #1
    [ 0.119301] CPU1 microcode updated early to revision 0x1c, date = 2014-07-03
    [ 0.122701] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.127238] #2 #3
    [ 0.163092] x86: Booted up 1 node, 4 CPUs
    [ 0.163097] smpboot: Total of 4 processors activated (19163.35 BogoMIPS)
    [ 0.168066] devtmpfs: initialized
    [ 0.171209] PM: Registering ACPI NVS region [mem 0xc9d33000-0xc9d39fff] (28672 bytes)
    [ 0.171212] PM: Registering ACPI NVS region [mem 0xd9e81000-0xdab49fff] (13406208 bytes)
    [ 0.172446] pinctrl core: initialized pinctrl subsystem
    [ 0.172491] RTC time: 19:20:37, date: 12/29/14
    [ 0.172601] NET: Registered protocol family 16
    [ 0.172743] cpuidle: using governor ladder
    [ 0.172747] cpuidle: using governor menu
    [ 0.172784] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.172786] ACPI: bus type PCI registered
    [ 0.172788] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.172879] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.172882] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.172990] PCI: Using configuration type 1 for base access
    [ 0.184979] ACPI: Added _OSI(Module Device)
    [ 0.184982] ACPI: Added _OSI(Processor Device)
    [ 0.184984] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.184985] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.188707] ACPI : EC: EC description table is found, configuring boot EC
    [ 0.192575] ACPI: Executed 2 blocks of module-level executable AML code
    [ 0.221314] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.261486] ACPI: Dynamic OEM Table Load:
    [ 0.261495] ACPI: SSDT 0xFFFF880213120C00 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20120711)
    [ 0.275006] ACPI: Dynamic OEM Table Load:
    [ 0.275014] ACPI: SSDT 0xFFFF8802130F9000 0005AA (v01 PmRef ApIst 00003000 INTL 20120711)
    [ 0.288171] ACPI: Dynamic OEM Table Load:
    [ 0.288177] ACPI: SSDT 0xFFFF8802130F4400 000119 (v01 PmRef ApCst 00003000 INTL 20120711)
    [ 0.302383] ACPI: Interpreter enabled
    [ 0.302396] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    [ 0.302406] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    [ 0.302433] ACPI: (supports S0 S3 S4 S5)
    [ 0.302435] ACPI: Using IOAPIC for interrupt routing
    [ 0.302468] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.329296] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.329304] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.329664] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 0.329911] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 0.330481] PCI host bridge to bus 0000:00
    [ 0.330485] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.330487] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.330489] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.330492] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.330494] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.330495] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.330497] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.330499] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.330501] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.330503] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.330505] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.330507] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.330509] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.330511] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.330513] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.330515] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.330518] pci_bus 0000:00: root bus resource [mem 0xdfe00000-0xfeafffff]
    [ 0.330528] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.330651] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.330666] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
    [ 0.330674] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.330681] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.330794] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.330805] pci 0000:00:03.0: reg 0x10: [mem 0xf7e1c000-0xf7e1ffff 64bit]
    [ 0.330928] pci 0000:00:04.0: [8086:0a03] type 00 class 0x118000
    [ 0.330942] pci 0000:00:04.0: reg 0x10: [mem 0xf7e10000-0xf7e17fff 64bit]
    [ 0.331083] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.331103] pci 0000:00:14.0: reg 0x10: [mem 0xf7e00000-0xf7e0ffff 64bit]
    [ 0.331167] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.331222] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.331270] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.331292] pci 0000:00:16.0: reg 0x10: [mem 0xf7e25000-0xf7e2501f 64bit]
    [ 0.331368] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.331481] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.331498] pci 0000:00:1b.0: reg 0x10: [mem 0xf7e18000-0xf7e1bfff 64bit]
    [ 0.331571] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.331628] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.331672] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
    [ 0.331744] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.331801] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.331845] pci 0000:00:1c.2: [8086:9c14] type 01 class 0x060400
    [ 0.331920] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.331977] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.332021] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.332095] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.332152] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.332205] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.332228] pci 0000:00:1d.0: reg 0x10: [mem 0xf7e23000-0xf7e233ff]
    [ 0.332324] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.332398] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.332447] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.332651] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
    [ 0.332668] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    [ 0.332676] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    [ 0.332684] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    [ 0.332692] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    [ 0.332700] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.332708] pci 0000:00:1f.2: reg 0x24: [mem 0xf7e22000-0xf7e227ff]
    [ 0.332747] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.332839] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.332854] pci 0000:00:1f.3: reg 0x10: [mem 0xf7e21000-0xf7e210ff 64bit]
    [ 0.332876] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.332986] pci 0000:00:1f.6: [8086:9c24] type 00 class 0x118000
    [ 0.333019] pci 0000:00:1f.6: reg 0x10: [mem 0xf7e20000-0xf7e20fff 64bit]
    [ 0.333304] acpiphp: Slot [1] registered
    [ 0.333310] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.333424] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.333444] pci 0000:02:00.0: reg 0x10: [io 0xe000-0xe0ff]
    [ 0.333475] pci 0000:02:00.0: reg 0x18: [mem 0xf7d04000-0xf7d04fff 64bit]
    [ 0.333494] pci 0000:02:00.0: reg 0x20: [mem 0xf7d00000-0xf7d03fff 64bit]
    [ 0.333594] pci 0000:02:00.0: supports D1 D2
    [ 0.333596] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.333635] pci 0000:02:00.0: System wakeup disabled by ACPI
    [ 0.338150] pci 0000:00:1c.2: PCI bridge to [bus 02]
    [ 0.338154] pci 0000:00:1c.2: bridge window [io 0xe000-0xefff]
    [ 0.338158] pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
    [ 0.338298] pci 0000:03:00.0: [14e4:4365] type 00 class 0x028000
    [ 0.338327] pci 0000:03:00.0: reg 0x10: [mem 0xf7c00000-0xf7c07fff 64bit]
    [ 0.338475] pci 0000:03:00.0: supports D1 D2
    [ 0.338477] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.338515] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.344844] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 0.344849] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.344874] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.345917] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 12) *0, disabled.
    [ 0.345974] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.346025] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.346077] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.346128] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.346179] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.346230] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.346280] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.346651] ACPI: Enabled 4 GPEs in block 00 to 7F
    [ 0.346746] ACPI : EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    [ 0.346876] vgaarb: setting as boot device: PCI:0000:00:02.0
    [ 0.346879] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.346883] vgaarb: loaded
    [ 0.346885] vgaarb: bridge control possible 0000:00:02.0
    [ 0.346989] PCI: Using ACPI for IRQ routing
    [ 0.348469] PCI: pci_cache_line_size set to 64 bytes
    [ 0.348520] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.348522] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    [ 0.348523] e820: reserve RAM buffer [mem 0xc9d33000-0xcbffffff]
    [ 0.348525] e820: reserve RAM buffer [mem 0xca567000-0xcbffffff]
    [ 0.348527] e820: reserve RAM buffer [mem 0xd993b000-0xdbffffff]
    [ 0.348529] e820: reserve RAM buffer [mem 0xd9e81000-0xdbffffff]
    [ 0.348531] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
    [ 0.348533] e820: reserve RAM buffer [mem 0x21f200000-0x21fffffff]
    [ 0.348654] NetLabel: Initializing
    [ 0.348656] NetLabel: domain hash size = 128
    [ 0.348657] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.348671] NetLabel: unlabeled traffic allowed by default
    [ 0.348698] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.348705] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.350736] Switched to clocksource hpet
    [ 0.356782] pnp: PnP ACPI init
    [ 0.356904] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.356909] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.357164] system 00:01: [io 0x0680-0x069f] has been reserved
    [ 0.357167] system 00:01: [io 0xffff] has been reserved
    [ 0.357169] system 00:01: [io 0xffff] has been reserved
    [ 0.357171] system 00:01: [io 0xffff] has been reserved
    [ 0.357173] system 00:01: [io 0x1c00-0x1cfe] has been reserved
    [ 0.357175] system 00:01: [io 0x1d00-0x1dfe] has been reserved
    [ 0.357179] system 00:01: [io 0x1e00-0x1efe] has been reserved
    [ 0.357181] system 00:01: [io 0x1f00-0x1ffe] has been reserved
    [ 0.357183] system 00:01: [io 0x1800-0x18fe] could not be reserved
    [ 0.357185] system 00:01: [io 0x164e-0x164f] has been reserved
    [ 0.357189] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.357223] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.357283] system 00:03: [io 0x1854-0x1857] has been reserved
    [ 0.357286] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.357345] system 00:04: [io 0x04d0-0x04d1] has been reserved
    [ 0.357348] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.357387] system 00:05: [io 0x0240-0x0259] has been reserved
    [ 0.357389] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.357468] pnp 00:06: Plug and Play ACPI device, IDs ETD0108 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
    [ 0.357514] pnp 00:07: Plug and Play ACPI device, IDs ATK3001 PNP030b (active)
    [ 0.357864] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.358157] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.358159] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.358162] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.358164] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.358166] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.358169] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.358171] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.358173] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.358176] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.358178] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.358181] system 00:09: [mem 0xf7fdf000-0xf7fdffff] has been reserved
    [ 0.358183] system 00:09: [mem 0xf7fe0000-0xf7feffff] has been reserved
    [ 0.358186] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.358274] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.358649] pnp: PnP ACPI: found 11 devices
    [ 0.365341] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.365353] pci 0000:00:1c.2: PCI bridge to [bus 02]
    [ 0.365356] pci 0000:00:1c.2: bridge window [io 0xe000-0xefff]
    [ 0.365361] pci 0000:00:1c.2: bridge window [mem 0xf7d00000-0xf7dfffff]
    [ 0.365369] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 0.365374] pci 0000:00:1c.3: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.365384] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.365386] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.365388] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.365390] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.365392] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.365394] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.365396] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.365398] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.365400] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.365402] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.365404] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.365406] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.365408] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.365410] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.365412] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.365414] pci_bus 0000:00: resource 19 [mem 0xdfe00000-0xfeafffff]
    [ 0.365417] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.365419] pci_bus 0000:02: resource 1 [mem 0xf7d00000-0xf7dfffff]
    [ 0.365421] pci_bus 0000:03: resource 1 [mem 0xf7c00000-0xf7cfffff]
    [ 0.365450] NET: Registered protocol family 2
    [ 0.365697] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.365881] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.366021] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.366042] TCP: reno registered
    [ 0.366056] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.366090] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.366156] NET: Registered protocol family 1
    [ 0.366174] pci 0000:00:02.0: Video device with shadowed ROM
    [ 0.366563] PCI: CLS 64 bytes, default 64
    [ 0.366614] Unpacking initramfs...
    [ 0.449770] Freeing initrd memory: 4100K (ffff88007fbff000 - ffff880080000000)
    [ 0.449779] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.449783] software IO TLB [mem 0xd3509000-0xd7509000] (64MB) mapped at [ffff8800d3509000-ffff8800d7508fff]
    [ 0.450003] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [ 0.450057] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x1c
    [ 0.450066] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x1c
    [ 0.450076] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x1c
    [ 0.450086] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x1c
    [ 0.450138] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.450173] Scanning for low memory corruption every 60 seconds
    [ 0.450459] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.450476] Initialise system trusted keyring
    [ 0.450867] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.452457] zpool: loaded
    [ 0.452461] zbud: loaded
    [ 0.452673] VFS: Disk quotas dquot_6.5.2
    [ 0.452713] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.452853] msgmni has been set to 15742
    [ 0.452919] Key type big_key registered
    [ 0.453083] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.453127] io scheduler noop registered
    [ 0.453131] io scheduler deadline registered
    [ 0.453164] io scheduler cfq registered (default)
    [ 0.453646] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.453666] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.453708] efifb: probing for efifb
    [ 0.453729] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90004e80000, using 4128k, total 4128k
    [ 0.453730] efifb: mode is 1366x768x32, linelength=5504, pages=1
    [ 0.453731] efifb: scrolling: redraw
    [ 0.453734] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.457330] Console: switching to colour frame buffer device 170x48
    [ 0.460339] fb0: EFI VGA frame buffer device
    [ 0.460351] intel_idle: MWAIT substates: 0x11142120
    [ 0.460352] intel_idle: v0.4 model 0x45
    [ 0.460354] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.460649] GHES: HEST is not enabled!
    [ 0.460731] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.461245] Linux agpgart interface v0.103
    [ 0.461300] rtc_cmos 00:02: RTC can wake from S4
    [ 0.461435] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 0.461466] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.461481] Intel P-state driver initializing.
    [ 0.461622] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.461879] TCP: cubic registered
    [ 0.462097] NET: Registered protocol family 10
    [ 0.462569] NET: Registered protocol family 17
    [ 0.463271] Loading compiled-in X.509 certificates
    [ 0.463311] registered taskstats version 1
    [ 0.464340] Magic number: 10:504:345
    [ 0.464356] tty tty62: hash matches
    [ 0.464514] rtc_cmos 00:02: setting system clock to 2014-12-29 19:20:38 UTC (1419880838)
    [ 0.464706] PM: Hibernation image not present or could not be loaded.
    [ 0.466567] Freeing unused kernel memory: 1136K (ffffffff818e2000 - ffffffff819fe000)
    [ 0.466570] Write protecting the kernel read-only data: 8192k
    [ 0.471471] Freeing unused kernel memory: 748K (ffff880001545000 - ffff880001600000)
    [ 0.473285] Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    [ 0.486633] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.508023] sdhci: Secure Digital Host Controller Interface driver
    [ 0.508026] sdhci: Copyright(c) Pierre Ossman
    [ 0.510834] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 0.514072] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.515758] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.515802] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.515836] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.515864] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.515881] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.517357] ACPI: bus type USB registered
    [ 0.517389] usbcore: registered new interface driver usbfs
    [ 0.517404] usbcore: registered new interface driver hub
    [ 0.517574] usbcore: registered new device driver usb
    [ 0.518314] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.518386] SCSI subsystem initialized
    [ 0.518574] ehci-pci: EHCI PCI platform driver
    [ 0.518732] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.518740] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
    [ 0.518753] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.519346] libata version 3.00 loaded.
    [ 0.522645] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.522659] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7e23000
    [ 0.530907] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.531140] hub 1-0:1.0: USB hub found
    [ 0.531149] hub 1-0:1.0: 2 ports detected
    [ 0.531477] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.531485] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.531568] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.531586] xhci_hcd 0000:00:14.0: irq 40 for MSI/MSI-X
    [ 0.531793] hub 2-0:1.0: USB hub found
    [ 0.531808] hub 2-0:1.0: 9 ports detected
    [ 0.535572] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.535579] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.535837] hub 3-0:1.0: USB hub found
    [ 0.535851] hub 3-0:1.0: 4 ports detected
    [ 0.537176] ahci 0000:00:1f.2: version 3.0
    [ 0.537306] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 0.537326] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.547647] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x3 impl SATA mode
    [ 0.547654] ahci 0000:00:1f.2: flags: 64bit ncq stag led clo only pio slum part deso sadm sds apst
    [ 0.548229] scsi host0: ahci
    [ 0.548361] scsi host1: ahci
    [ 0.548475] scsi host2: ahci
    [ 0.548584] scsi host3: ahci
    [ 0.548634] ata1: SATA max UDMA/133 abar m2048@0xf7e22000 port 0xf7e22100 irq 41
    [ 0.548637] ata2: SATA max UDMA/133 abar m2048@0xf7e22000 port 0xf7e22180 irq 41
    [ 0.548638] ata3: DUMMY
    [ 0.548640] ata4: DUMMY
    [ 0.574599] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.837905] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 0.867897] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.899158] ata1.00: ATA-8: HGST HTS541010A9E680, JA0OA560, max UDMA/133
    [ 0.899163] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.900640] ata1.00: configured for UDMA/133
    [ 0.900861] scsi 0:0:0:0: Direct-Access ATA HGST HTS541010A9 A560 PQ: 0 ANSI: 5
    [ 0.962012] hub 1-1:1.0: USB hub found
    [ 0.962060] hub 1-1:1.0: 8 ports detected
    [ 1.121466] usb 2-2: new high-speed USB device number 2 using xhci_hcd
    [ 1.221514] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.223203] ata2.00: ATAPI: MATSHITADVD-RAM UJ8E2 S, 1.00, max UDMA/133
    [ 1.224701] ata2.00: configured for UDMA/133
    [ 1.228604] scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8E2 S 1.00 PQ: 0 ANSI: 5
    [ 1.243298] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.243301] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.243363] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.243366] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.243389] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.253700] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.253703] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.253878] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.303155] usb-storage 2-2:1.0: USB Mass Storage device detected
    [ 1.303269] scsi host4: usb-storage 2-2:1.0
    [ 1.303345] usbcore: registered new interface driver usb-storage
    [ 1.303657] usbcore: registered new interface driver uas
    [ 1.311280] sda: sda1 sda2 sda3
    [ 1.311768] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.451638] tsc: Refined TSC clocksource calibration: 2394.456 MHz
    [ 1.461722] usb 2-5: new high-speed USB device number 3 using xhci_hcd
    [ 1.818645] usb 2-6: new full-speed USB device number 4 using xhci_hcd
    [ 2.152280] usb 2-8: new high-speed USB device number 5 using xhci_hcd
    [ 2.307377] scsi 4:0:0:0: Direct-Access PNY USB 2.0 FD 8.07 PQ: 0 ANSI: 4
    [ 2.308404] sd 4:0:0:0: [sdb] 30949376 512-byte logical blocks: (15.8 GB/14.7 GiB)
    [ 2.309071] sd 4:0:0:0: [sdb] Write Protect is off
    [ 2.309075] sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00
    [ 2.309744] sd 4:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.312929] sdb: sdb1
    [ 2.315003] sd 4:0:0:0: [sdb] Attached SCSI removable disk
    [ 2.328694] usbcore: registered new interface driver rtsx_usb
    [ 2.392467] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
    [ 2.452719] Switched to clocksource tsc
    [ 2.481335] hidraw: raw HID events driver (C) Jiri Kosina
    [ 2.486111] usbcore: registered new interface driver usbhid
    [ 2.486114] usbhid: USB HID core driver
    [ 2.487991] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.3/input2
    [ 2.540785] input: Logitech Unifying Device. Wireless PID:4009 as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input5
    [ 2.540850] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Unifying Device. Wireless PID:4009] on usb-0000:00:1d.0-1.3:1
    [ 2.542947] input: Logitech Unifying Device. Wireless PID:2011 as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.3/1-1.3:1.2/0003:046D:C52B.0003/0003:046D:C52B.0005/input/input6
    [ 2.543001] logitech-djdevice 0003:046D:C52B.0005: input,hidraw2: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:2011] on usb-0000:00:1d.0-1.3:2
    [ 2.758105] random: nonblocking pool is initialized
    [ 3.285691] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.129036] systemd[1]: systemd 218 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    [ 4.129224] systemd[1]: Detected architecture 'x86-64'.
    [ 4.145831] systemd[1]: Set hostname to <hostname>.
    [ 5.234190] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 5.234635] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 5.234714] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 5.234728] systemd[1]: Starting Root Slice.
    [ 5.235035] systemd[1]: Created slice Root Slice.
    [ 5.235049] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 5.235148] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 5.235163] systemd[1]: Starting udev Kernel Socket.
    [ 5.235242] systemd[1]: Listening on udev Kernel Socket.
    [ 5.235251] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 5.235340] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 5.235352] systemd[1]: Starting udev Control Socket.
    [ 5.235436] systemd[1]: Listening on udev Control Socket.
    [ 5.235443] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 5.235503] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 5.235509] systemd[1]: Starting Journal Socket (/dev/log).
    [ 5.235564] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 5.235571] systemd[1]: Starting Encrypted Volumes.
    [ 5.235612] systemd[1]: Reached target Encrypted Volumes.
    [ 5.235619] systemd[1]: Expecting device dev-disk-by\x2duuid-ac0bdb8c\x2dfdaa\x2d47ab\x2dae2b\x2d7c808075f5a5.device...
    [ 5.235674] systemd[1]: Starting Remote File Systems.
    [ 5.235715] systemd[1]: Reached target Remote File Systems.
    [ 5.235723] systemd[1]: Starting System Slice.
    [ 5.235806] systemd[1]: Created slice System Slice.
    [ 5.399578] systemd[1]: Listening on Journal Audit Socket.
    [ 5.399598] systemd[1]: Expecting device dev-sda2.device...
    [ 5.399701] systemd[1]: Starting Journal Socket.
    [ 5.399807] systemd[1]: Listening on Journal Socket.
    [ 5.399838] systemd[1]: Mounting POSIX Message Queue File System...
    [ 5.400298] systemd[1]: Started File System Check on Root Device.
    [ 5.400324] systemd[1]: Starting Journal Service...
    [ 5.400764] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 5.444884] systemd[1]: Starting Load Kernel Modules...
    [ 5.445477] systemd[1]: Mounting Debug File System...
    [ 5.445951] systemd[1]: Starting Setup Virtual Console...
    [ 5.446401] systemd[1]: Expecting device dev-disk-by\x2duuid-9653\x2d2CFA.device...
    [ 5.446467] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 5.446504] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 5.446524] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 5.446644] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 5.446679] systemd[1]: Starting udev Coldplug all Devices...
    [ 5.446987] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 5.447098] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 5.447118] systemd[1]: Starting Delayed Shutdown Socket.
    [ 5.447185] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 5.447197] systemd[1]: Starting system-getty.slice.
    [ 5.447308] systemd[1]: Created slice system-getty.slice.
    [ 5.447356] systemd[1]: Mounting Huge Pages File System...
    [ 5.514285] systemd[1]: Mounting Temporary Directory...
    [ 5.600728] vboxdrv: Found 4 processor cores.
    [ 5.600871] vboxdrv: fAsync=0 offMin=0x204 offMax=0xff4
    [ 5.600922] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 5.600923] vboxdrv: Successfully loaded version 4.3.20_OSE (interface 0x001a0008).
    [ 5.611502] systemd[1]: Started Set Up Additional Binary Formats.
    [ 5.611597] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 5.612195] systemd[1]: Starting Paths.
    [ 5.612290] systemd[1]: Reached target Paths.
    [ 5.612321] systemd[1]: Starting User and Session Slice.
    [ 5.612533] systemd[1]: Created slice User and Session Slice.
    [ 5.612562] systemd[1]: Starting Slices.
    [ 5.612650] systemd[1]: Reached target Slices.
    [ 5.675764] vboxpci: IOMMU not found (not registered)
    [ 5.676279] systemd[1]: Started Load Kernel Modules.
    [ 5.676360] systemd[1]: Mounted FUSE Control File System.
    [ 5.676427] systemd[1]: Mounting Configuration File System...
    [ 5.676846] systemd[1]: Starting Apply Kernel Variables...
    [ 5.715907] systemd[1]: Started Setup Virtual Console.
    [ 5.736460] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [ 5.737538] systemd[1]: Mounted Debug File System.
    [ 5.738157] systemd[1]: Mounted POSIX Message Queue File System.
    [ 5.738735] systemd[1]: Mounted Configuration File System.
    [ 5.739335] systemd[1]: Mounted Huge Pages File System.
    [ 5.739924] systemd[1]: Mounted Temporary Directory.
    [ 5.740872] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 5.741101] systemd[1]: Started First Boot Wizard.
    [ 5.741121] systemd[1]: Started Create System Users.
    [ 5.741130] systemd[1]: Started Rebuild Dynamic Linker Cache.
    [ 5.778296] systemd[1]: Started Rebuild Hardware Database.
    [ 5.778320] systemd[1]: Starting Load/Save Random Seed...
    [ 5.812012] systemd[1]: Started udev Coldplug all Devices.
    [ 5.818152] systemd[1]: Started Create list of required static device nodes for the current kernel.
    [ 5.818261] systemd[1]: Starting Create Static Device Nodes in /dev...
    [ 5.972243] systemd[1]: Started Load/Save Random Seed.
    [ 6.349353] systemd[1]: Started Apply Kernel Variables.
    [ 6.454971] systemd[1]: Started Create Static Device Nodes in /dev.
    [ 6.455850] systemd[1]: Starting udev Kernel Device Manager...
    [ 6.456846] systemd[1]: Starting Local File Systems (Pre).
    [ 6.457527] systemd[1]: Reached target Local File Systems (Pre).
    [ 6.657321] systemd-journald[137]: File /var/log/journal/d1712251ccd74cc8aef6fb10b32fca9b/system.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 6.946476] systemd[1]: Started Journal Service.
    [ 6.969964] systemd-journald[137]: Received request to flush runtime journal from PID 1
    [ 7.930841] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input7
    [ 7.931794] ACPI: Lid Switch [LID]
    [ 7.931876] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input8
    [ 7.931882] ACPI: Sleep Button [SLPB]
    [ 7.931962] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input9
    [ 7.931966] ACPI: Power Button [PWRF]
    [ 8.107100] ACPI: AC Adapter [AC0] (on-line)
    [ 8.238818] ACPI: Battery Slot [BAT0] (battery present)
    [ 8.249956] ACPI Warning: SystemIO range 0x000000000000f040-0x000000000000f05f conflicts with OpRegion 0x000000000000f040-0x000000000000f04f (\SMB0) (20140724/utaddress-258)
    [ 8.249965] ACPI Warning: SystemIO range 0x000000000000f040-0x000000000000f05f conflicts with OpRegion 0x000000000000f040-0x000000000000f04f (\_SB_.PCI0.SBUS.SMBI) (20140724/utaddress-258)
    [ 8.249972] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.252837] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 8.254053] wmi: Mapper loaded
    [ 8.254881] thermal LNXTHERM:00: registered as thermal_zone0
    [ 8.254883] ACPI: Thermal Zone [THRM] (36 C)
    [ 8.312727] input: PC Speaker as /devices/platform/pcspkr/input/input11
    [ 8.327610] [drm] Initialized drm 1.1.0 20060810
    [ 8.406078] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [ 8.583782] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.583791] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 8.591108] r8169 0000:02:00.0: irq 43 for MSI/MSI-X
    [ 8.591324] r8169 0000:02:00.0 eth0: RTL8168g/8111g at 0xffffc90004c8e000, 38:2c:4a:24:cc:2a, XID 10900800 IRQ 43
    [ 8.591326] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 8.671584] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
    [ 8.705405] sound hdaudioC1D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 8.705410] sound hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.705412] sound hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    [ 8.705414] sound hdaudioC1D0: mono: mono_out=0x0
    [ 8.705416] sound hdaudioC1D0: inputs:
    [ 8.705418] sound hdaudioC1D0: Mic=0x1b
    [ 8.712894] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
    [ 8.843400] [drm] Memory usable by graphics device = 2048M
    [ 8.843406] checking generic (e0000000 408000) vs hw (e0000000 10000000)
    [ 8.843408] fb: switching to inteldrmfb from EFI VGA
    [ 8.843430] Console: switching to colour dummy device 80x25
    [ 8.843495] [drm] Replacing VGA console driver
    [ 8.849060] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.864374] i915 0000:00:02.0: irq 45 for MSI/MSI-X
    [ 8.864387] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 8.864389] [drm] Driver supports precise vblank timestamp query.
    [ 8.864417] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 8.904054] [drm] VBT doesn't support DRRS
    [ 8.919936] psmouse serio4: elantech: assuming hardware version 4 (with firmware version 0x381f00)
    [ 8.929809] AVX2 version of gcm_enc/dec engaged.
    [ 8.930737] fbcon: inteldrmfb (fb0) is primary device
    [ 8.934509] psmouse serio4: elantech: Synaptics capabilities query result 0x10, 0x14, 0x0e.
    [ 9.003571] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input14
    [ 9.535304] r8169 0000:02:00.0 enp2s0: renamed from eth0
    [ 9.570341] iTCO_vendor_support: vendor-support=0
    [ 9.570874] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 9.570907] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 9.571017] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 9.661818] mousedev: PS/2 mouse device common for all mice
    [ 9.680759] asus_wmi: ASUS WMI generic driver loaded
    [ 9.692793] asus_wmi: Initialization: 0x1
    [ 9.692840] asus_wmi: BIOS WMI version: 7.9
    [ 9.692909] asus_wmi: SFUN value: 0x4a0877
    [ 9.693942] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input16
    [ 9.701440] asus_wmi: Backlight controlled by ACPI video driver
    [ 9.711632] intel_rapl: Found RAPL domain package
    [ 9.711635] intel_rapl: Found RAPL domain core
    [ 9.711637] intel_rapl: Found RAPL domain uncore
    [ 9.711639] intel_rapl: Found RAPL domain dram
    [ 9.810931] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 9.810931] Disabling lock debugging due to kernel taint
    [ 9.843257] wlan0: Broadcom BCM4365 802.11 Hybrid Wireless Controller 6.30.223.248 (r487574)
    [ 9.873275] wl 0000:03:00.0 wlp3s0: renamed from wlan0
    [ 10.198799] Console: switching to colour frame buffer device 170x48
    [

    [user@hostname ~]$ cat /proc/cmdline
    root=/dev/sda3 rw initrd=/intel-ucode.img initrd=/initramfs-linux.img
    looks like it's not ... but how??
    [user@hostname ~]$ efibootmgr -v
    BootCurrent: 0006
    Timeout: 2 seconds
    BootOrder: 0006,0001,0002,0003
    Boot0000* Arch HD(1,800,100000,b75635ad-ec31-4cac-ad80-25584831f818)File(\vmlinuz-linux)r.o.o.t.=./.d.e.v./.s.d.a.3. .r.w. .i.n.i.t.r.d.=./.i.n.t.e.l.-.u.c.o.d.e...i.m.g. .i.n.i.t.r.d.=./.i.n.i.t.r.a.m.f.s.-.l.i.n.u.x...i.m.g.
    Boot0001* UEFI:CD/DVD Drive BIOS(81,0,00)
    Boot0002* UEFI:Removable Device BIOS(82,0,00)
    Boot0003* UEFI:Network Device BIOS(83,0,00)
    Boot0004* UEFI:Removable Device BIOS(82,0,00)
    Boot0005* UEFI:Network Device BIOS(83,0,00)
    Boot0006* ArchLinux HD(1,800,100000,b75635ad-ec31-4cac-ad80-25584831f818)File(\vmlinuz-linux)r.o.o.t.=./.d.e.v./.s.d.a.3. .r.w. .r.e.s.u.m.e.=./.d.e.v./.s.d.a.2. .i.n.i.t.r.d.=./.i.n.t.e.l.-.u.c.o.d.e...i.m.g. .i.n.i.t.r.d.=.i.n.i.t.r.a.m.f.s.-.l.i.n.u.x...i.m.g.
    im sure i've messed something up... is there anywhere else kernel parameters are stored? Or is there some command I'm forgetting to 'refresh' efibootmgr after adding the new line, sort of like how you have to do /sbin/lilo after changing lilo config? As you can probably tell I am booting EFI direct from kernel, no bootloader installed. 
    Or maybe I should remove Boot0000 entirely? But again it says BootCurrent is 0006 so I don't get it!!

  • Trying to setup systemd user instance

    Hi guys!
    For the past few days I have been trying to setup systemd to run a user instance (user is 'hans'). Sadly, I have been unable to find a lot of detail in doing this, so much of my work has been trial and error. Just recently I learned about the [email protected] and also about loginctl enable-linger. However to what degree they are related to setting up a user instance, I do not know. I set the user 'hans' to 'linger' using the loginctl enable-linger hans command, however I think I might have misunderstood the significance of the command in relation to what I am trying to do.
    What I want to for user 'hans' to have his own service file, i.e. irssi.service, and start/stop/enable/disable/etc that service independently of the system. I realize that I could use sudo and configure it to only allow certain commands, and more than that have individual 'system' services for each user, i.e. hansirssi.service, janeirssi.service, joeirssi.service, etc., but I don't want to have to do that unless there is no other option.
    So Question 1:
    Is it possible to setup up systemd user instances as I envision it? Or have I misunderstood something?
    My system:
    [root@ru ~]# uname -a
    Linux ru 3.5.4-1-ARCH #1 SMP PREEMPT Sat Sep 15 08:12:04 CEST 2012 x86_64 GNU/Linux
    The system is installed in a Proxmox virtual machine with a virtio virtual HDD and standard setup. It is a headless system. I have a complete systemd conversion as per the wiki plus polkit 0.107-2 for use with 'loginctl'.
    I tried:
    [root@ru ~]$ systemctl enable [email protected]
    The unit files have no [Install] section. They are not meant to be enabled using systemctl.
    [root@ru ~]$ systemctl start [email protected]
    [root@ru ~]# systemctl status [email protected]
    [email protected] - User Manager for hans
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; static)
    Active: active (running) since Fri, 21 Sep 2012 18:33:07 +0100; 42min ago
    Main PID: 23189 (systemd)
    Status: "Startup finished in 822us."
    CGroup: name=systemd:/user/hans/shared
    â 23190 (sd-pam)
    â systemd-23189
    â 23189 /usr/lib/systemd/systemd --user
    And on the user account hans I confirm that the service is running:
    [hans@ru ~]$ systemctl status [email protected]
    [email protected] - User Manager for hans
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; static)
    Active: active (running) since Fri, 21 Sep 2012 18:33:07 +0100; 13s ago
    Main PID: 23189 (systemd)
    Status: "Startup finished in 822us."
    CGroup: name=systemd:/user/hans/shared
    â 23190 (sd-pam)
    â systemd-23189
    â 23189 /usr/lib/systemd/systemd --user
    But in regard to actually starting/stopping/enabling a user specific service, I keep getting this error:
    [hans@ru ~]$ systemctl start dummyservice.service
    Failed to issue method call: Access denied
    and when I try by accessing the 'user' instance, I get the following error:
    [hans@ru ~]$ systemctl --user
    Failed to get D-Bus connection: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11
    The thing is that dbus is running:
    [root@ru ~]# systemctl status dbus
    dbus.service - D-Bus System Message Bus
    Loaded: loaded (/usr/lib/systemd/system/dbus.service; static)
    Active: active (running) since Thu, 20 Sep 2012 18:19:18 +0100; 24h ago
    Main PID: 248 (dbus-daemon)
    CGroup: name=systemd:/system/dbus.service
    â 248 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
    Sep 21 18:12:40 ru dbus-daemon[248]: dbus[248]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Sep 21 18:12:40 ru dbus[248]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Sep 21 18:17:50 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.26" (uid.../init ")
    Sep 21 18:17:50 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.26" (uid=1000 pid=23167 c...n/init ")
    Sep 21 18:32:46 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.31" (uid.../init ")
    Sep 21 18:32:46 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.31" (uid=1000 pid=23185 c...n/init ")
    Sep 21 18:35:45 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.34" (uid.../init ")
    Sep 21 18:35:45 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.34" (uid=1000 pid=23195 c...n/init ")
    Sep 21 18:36:06 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.35" (uid.../init ")
    Sep 21 18:36:06 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.35" (uid=1000 pid=23197 c...n/init ")
    Here is the full output from 'journalctl':
    Sep 21 18:17:50 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.26" (uid=1000 pid=23167 comm="systemctl enable [email protected] ") interface="org.freedesktop.systemd1.Manager" member="EnableUnitFiles" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Sep 21 18:17:50 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.26" (uid=1000 pid=23167 comm="systemctl enable [email protected] ") interface="org.freedesktop.systemd1.Manager" member="EnableUnitFiles" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Sep 21 18:32:46 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.31" (uid=1000 pid=23185 comm="systemctl start [email protected] ") interface="org.freedesktop.systemd1.Manager" member="StartUnit" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Sep 21 18:32:46 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.31" (uid=1000 pid=23185 comm="systemctl start [email protected] ") interface="org.freedesktop.systemd1.Manager" member="StartUnit" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Sep 21 18:33:07 ru systemd[23189]: Failed to open private bus connection: Failed to connect to socket /run/user/hans/dbus/user_bus_socket: No such file or directory
    Sep 21 18:35:45 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.34" (uid=1000 pid=23195 comm="systemctl start userservice ") interface="org.freedesktop.systemd1.Manager" member="StartUnit" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Sep 21 18:35:45 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.34" (uid=1000 pid=23195 comm="systemctl start userservice ") interface="org.freedesktop.systemd1.Manager" member="StartUnit" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Sep 21 18:36:06 ru dbus-daemon[248]: dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.35" (uid=1000 pid=23197 comm="systemctl start userservice.service ") interface="org.freedesktop.systemd1.Manager" member="StartUnit" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Sep 21 18:36:06 ru dbus[248]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.35" (uid=1000 pid=23197 comm="systemctl start userservice.service ") interface="org.freedesktop.systemd1.Manager" member="StartUnit" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Question 2:
    Why would dbus reject the 'messages', is there something I need to configure (permissions,...?) in order to get this to work?
    I suspect that it is my lacking knowledge to blame for this problem, which is why I have sought help here.
    EDIT#1:
    I forgot to show you what 'loginctl' was doing:
    [root@ru ~]# loginctl user-status hans
    hans (1000)
    Since: Thu, 20 Sep 2012 18:19:18 +0100; 24h ago
    State: lingering
    CGroup: name=systemd:/user/hans
    â shared
    â 23190 (sd-pam)
    â systemd-23189
    â 23189 /usr/lib/systemd/systemd --user
    Last edited by sunite (2012-09-21 18:17:35)

    I just went through the install process, read through the user-session-units doc, I was finally able to get the user instance working, no Dbus errors . However I decided to make sure and run 'dbus-monitor' within the user 'hans' and I got the following error message:
    Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
    I checked and there is no such file, however I checked the dbus.socket:
    [root@ru user]# cat /usr/lib/systemd/user/dbus.socket
    [Unit]
    Description=D-Bus System Message Bus Socket
    [Socket]
    ListenStream=%t/dbus/user_bus_socket
    And dbus.service:
    [root@ru user]# dbus-monitor
    Failed to open connection to session bus: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11
    [root@ru user]# cat /usr/lib/systemd/user/dbus.service
    [Unit]
    Description=D-Bus System Message Bus
    Requires=dbus.socket
    [Service]
    ExecStart=/usr/bin/dbus-daemon --session --address=systemd: --nofork --systemd-activation
    ExecReload=/usr/bin/dbus-send --print-reply --session --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig
    and as far as I can tell everything see alright there.
    EDIT#1:
    I just restarted the system to see if my symlink worked for the user-session service. It did, sort of, however the following error occured during boot:
    Sep 21 22:15:14 ru systemd[307]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
    Last edited by sunite (2012-09-21 21:22:11)

  • [SOLVED]systemd and make a camera visible GUI-wise in your filemanager

    After reading a lot about systemd in the wiki and in this forum I understand there are different opionons about systemd. Anyway, I have a adapted all the changes to rc.conf leaving out only a few daemons to start there. So why not give systemd a try? If you dont want to read the full posting I finally got it to work, basically by reading carefully and checking the suggested tests in the systemd wiki. (loginctl)
    As suggested by the wiki, I tried the systemd yesterday. Enabled via systemctl some services to "replace" my rc.conf daemons. I got what I thought everything to work, including autologin directly to my Xfce4 desktop. Everything except the digital camera.
    When starting Arch traditionally via initscripts I immediately can see the camera in the filemanager (Nautilus) when the camera is attached via USB.
    Some minutes later, after adding "init=/usr/lib/systemd/systemd" to the APPEND line in Syslinux and rebooting, my machine reboots
    fine.But when connecting the camera again it is not visible graphically.
    The camera is there because when using gphoto2 (the commandline) as root I can transfer pictures etc.
    Even if I am no happy CLI user I can handle it when necessary. Handling pictures a graphical view of them is much easier...
    As the wiki about systemd says one can try it out. I have not removed anything from the system and when starting Arch again, the initscript way, I can see the camera again in my filemanager, gthumb works again and pictures can be transferred to my machine.
    In the wiki again, this time about digital cameras
    Permission issues
    Camera devices should be granted permission using ACLs. For this to work, users need to have consolekit or systemd running and the user session must be registered with them accordingly.
    Check this using /usr/bin/ck-list-sessions to verify a value of "TRUE" should be returned for both the "active" and "is-local" fields:
    $ ck-list-sessions | grep TRUE
    active = TRUE
    is-local = TRUE
    ACL=Atlantic Container Line is what first comes into my mind. I have had some connections to transport business...I admit I had to google it to find the correct interpretation of this mumbo-jumbo.
    The wiki also gives a "hint", if this is not working try to use the obsolete camera group and edit some udev rules.
    Should not be necessary when it has worked before systemd and earlier experiences
    But what is this about "Permission issues"?  Here is my listings relative the wiki hints. All seems OK.. or why the heck are there two sessions??
    [leif@krasaki ~]$ ck-list-sessions | grep TRUE
    is-local = TRUE
    active = TRUE
    is-local = TRUE
    [leif@krasaki ~]$ ck-list-sessions
    Session1:
    unix-user = '1000'
    realname = '(null)'
    seat = 'Seat1'
    session-type = ''
    active = FALSE
    x11-display = ''
    x11-display-device = ''
    display-device = '/dev/tty1'
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-10-24T07:12:56.499847Z'
    login-session-id = '1'
    idle-since-hint = '2012-10-24T07:13:26.994037Z'
    Session2:
    unix-user = '1000'
    realname = '(null)'
    seat = 'Seat1'
    session-type = ''
    active = TRUE
    x11-display = ':0'
    x11-display-device = '/dev/tty7'
    display-device = '/dev/tty1'
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-10-24T07:13:02.361157Z'
    login-session-id = '1'
    [leif@krasaki ~]$
    As one can see, the ACTIVE values are here as the wiki says. But no camera. Those values are the same, wheter which way the machine is started. But 2 sessions??
    Further reading in the systemd wiki article and consolekit vs systemd.logind gives a clue.
    From the wiki:
    In order to check the status of your user session, you can use loginctl. To see if your user session is properly set up, check if the following command contains Active=yes. All polkit actions like suspending the system or mounting external drives with Udisks should then work automatically.
    So when started via systemd and running logintctl, it gives this surprising result. Does not matter wheter as normal user, nor as root....
    [leif@krasaki ~]$ loginctl
    SESSION UID USER SEAT
    1 1000 leif seat0
    1 sessions listed.
    [leif@krasaki ~]$ loginctl show-session 1
    Id=1
    Timestamp=Wed, 24 Oct 2012 10:57:03 +0200
    TimestampMonotonic=20040019
    DefaultControlGroup=name=systemd:/user/leif/1
    VTNr=1
    TTY=tty1
    Remote=no
    Service=login
    Leader=315
    Audit=1
    Type=tty
    Class=user
    Active=no
    State=online
    KillProcesses=no
    IdleHint=yes
    IdleSinceHint=1351069009642296
    IdleSinceHintMonotonic=6664433
    Name=leif
    [leif@krasaki ~]$
    Surprising? Should it not have been Active=Yes? So something is wrong in my settings although it had worked "before" starting using systemd..
    OK, so far. Lost? Not yet. Double check again everything and I found the culprit, my  ~/.bash_profile which had worked before seemed a bit different to what is suggested in the wiki. The old one, actually started 2 sessions, as also could be seen here above checking ck-list-sessions. That was the problem
    Using a fresh edited ~/.bash_profile as suggested here, the camera is visible graphically
    Finally, just for fun, start again the old initscipt way. Enabling daemon and so on. Still 2 sessions going on....Here it was the "/.xinitrc, which also had some old fashions and I removed the ck-launch-session from the exec line. So even here, now only 1 session..
    Anyway, now the camera is visible, both starting with initscripts, naturally also some daemons active in rc.conf and by starting with systemd.
    I rest my case and it seems systemd works with everything on my machine which is just a normal desktop used by an old man.
    Thanks for reading...

    Solved now! Boot times are as fast as posssible on my HDD I think. Only thing after uninstalling initscripst and initscripts-systemd was that locale was not set inspite of a correct /etc/locale.conf. I had to make /etc/profile.d/locale.sh with this content;
    if [ -s /etc/locale.conf ]; then
    . /etc/locale.conf
    fi
    export LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE
    export LC_MONETARY LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS
    export LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION

  • [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] systemd-tmpfiles-clean takes a very long time to run

    I've been having an issue for a while with systemd-tmpfiles-clean.service taking a very long time to run. I've tried to just ignore it, but it's really bothering me now.
    Measuring by running:
    # time systemd-tmpfiles --clean
    systemd-tmpfiles --clean 11.63s user 110.37s system 10% cpu 19:00.67 total
    I don't seem to have anything funky in any tmpfiles.d:
    # ls /usr/lib/tmpfiles.d/* /run/tmpfiles.d/* /etc/tmpfiles.d/* | pacman -Qo -
    ls: cannot access /etc/tmpfiles.d/*: No such file or directory
    error: No package owns /run/tmpfiles.d/kmod.conf
    /usr/lib/tmpfiles.d/gvfsd-fuse-tmpfiles.conf is owned by gvfs 1.20.1-2
    /usr/lib/tmpfiles.d/lastlog.conf is owned by shadow 4.1.5.1-9
    /usr/lib/tmpfiles.d/legacy.conf is owned by systemd 212-3
    /usr/lib/tmpfiles.d/libvirt.conf is owned by libvirt 1.2.4-1
    /usr/lib/tmpfiles.d/lighttpd.conf is owned by lighttpd 1.4.35-1
    /usr/lib/tmpfiles.d/lirc.conf is owned by lirc-utils 1:0.9.0-71
    /usr/lib/tmpfiles.d/mkinitcpio.conf is owned by mkinitcpio 17-1
    /usr/lib/tmpfiles.d/nscd.conf is owned by glibc 2.19-4
    /usr/lib/tmpfiles.d/postgresql.conf is owned by postgresql 9.3.4-1
    /usr/lib/tmpfiles.d/samba.conf is owned by samba 4.1.7-1
    /usr/lib/tmpfiles.d/slapd.conf is owned by openldap 2.4.39-1
    /usr/lib/tmpfiles.d/sudo.conf is owned by sudo 1.8.10.p2-1
    /usr/lib/tmpfiles.d/svnserve.conf is owned by subversion 1.8.8-1
    /usr/lib/tmpfiles.d/systemd.conf is owned by systemd 212-3
    /usr/lib/tmpfiles.d/systemd-nologin.conf is owned by systemd 212-3
    /usr/lib/tmpfiles.d/tmp.conf is owned by systemd 212-3
    /usr/lib/tmpfiles.d/uuidd.conf is owned by util-linux 2.24.1-6
    /usr/lib/tmpfiles.d/x11.conf is owned by systemd 212-3
    How do I debug why it is taking so long? I've looked in man 8 systemd-tmpfiles and on google, hoping to find some sort of --dubug option, but there seems to be none.
    Is it some how possible to get a list of the directories that it looks at when it runs?
    Anyone have any suggestions on how else to fix this.
    Anyone else have this issue?
    Thanks,
    Gary
    Last edited by garyvdm (2014-05-08 18:57:43)

    Thank you very much falconindy. SYSTEMD_LOG_LEVEL=debug helped my find my issue.
    The cause of the problem was thousands of directories in /var/tmp/ created by a test suite with a broken clean up method. systemd-tmpfiles-clean was recursing through these, but not deleting them.

Maybe you are looking for

  • T61 key not working after win7 upgrade

    Hi I upgraded my thinkpad T61´s windows from XP to 7(64bits) but one of my key from keyboard stopped to work. I installed all the drivers and ThinkVantage System Update, but it didn´t work. My keyboard layout is Portuguese-BR(ABNT) and the problem is

  • Ffmpeg wrapper that behaves like the command line

    I have ffmpeg compiling now and can package up a swc using the wrapper code from  www.rainbowcreatures.com/product_flashywrappers.php It all works etc but doesnt quite do what I need, instead of passing frames I need to pass it a complete h264 stream

  • Transfering CUF from R3 PR to SRM SC

    Good morning, (SRM 5.5) There are several custom fields in the R3 PR's. There are the same in the SRM SC. When i transfer PR's to the SRM SC (using BBP_EXTREQ_TRANSFER), SC custom fields is not filled. Is it right? How can i  fill them? Thanks Alexey

  • Accessing Fixed Dial options (Lumia 800)

    Can any advise how we access the fixed dialing list and also the sim card contacts list. Thanks.

  • Error: The AddressBook datafile is a directory!

    This message may show up in the in the console log for an application that has crashed. Alternatively, you may see the AddressBook framework as the location of a crash in a crash report. The cause may be a bad alias in the application support folder