Systemd daemon ignores target

Write your own daemon they said. Systemd is easy they said...
There is a small AUR package razer-blackwidow-macro-scripts 2-1 with python script that needs to be run as root (it enables extra keys on my keyboard)
Up until now I've had it in my .xinitrc
sudo blackwidow-enable & #enable extra keys
xbindkeys & #macro keys mapping
Of course I've had that command allowed to be run with no password through visudo. It worked well. But I was a little bit uneasy with this solution and ppl on IRC recommended me to write a daemon for systemd instead.
Thats what I ended up with:
[Unit]
Description=RazerBlackWidow
Requires=basic.target
After=basic.target
[Service]
Type=forking
ExecStart=/usr/bin/blackwidow-enable
[Install]
But systemd blatantly ignores everything as you can see in journctl:
Jul 30 00:18:42 arch kernel: hub 4-6:1.0: 4 ports detected
Jul 30 00:18:42 arch blackwidow-enable[289]: BlackWidow not found.
Jul 30 00:18:42 arch systemd[1]: blackwidow.service: control process exited, code=exited status=1
Jul 30 00:18:42 arch systemd[1]: Failed to start RazerBlackWidow.
Jul 30 00:18:42 arch systemd[1]: Unit blackwidow.service entered failed state.
Jul 30 00:18:42 arch kernel: Switched to clocksource tsc
Jul 30 00:18:42 arch kernel: usb 3-9.3: new full-speed USB device number 5 using xhci_hcd
Jul 30 00:18:42 arch kernel: input: Razer Razer BlackWidow 2013 as /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.3/3-9.
Jul 30 00:18:42 arch kernel: hid-generic 0003:1532:011B.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackW
Jul 30 00:18:42 arch kernel: input: Razer Razer BlackWidow 2013 as /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.3/3-9.
Jul 30 00:18:42 arch kernel: hid-generic 0003:1532:011B.0003: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer BlackW
Jul 30 00:18:42 arch kernel: input: Razer Razer BlackWidow 2013 as /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.3/3-9.
Jul 30 00:18:42 arch kernel: hid-generic 0003:1532:011B.0004: input,hidraw3: USB HID v1.11 Mouse [Razer Razer BlackWido
Jul 30 00:18:42 arch kernel: usb 3-10.3: new full-speed USB device number 6 using xhci_hcd
Jul 30 00:18:42 arch kernel: input: Razer Razer Taipan as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.3/3-10.3:1.0/
Jul 30 00:18:42 arch kernel: hid-generic 0003:1532:0034.0005: input,hidraw4: USB HID v1.11 Mouse [Razer Razer Taipan] o
Jul 30 00:18:42 arch kernel: input: Razer Razer Taipan as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.3/3-10.3:1.1/
Jul 30 00:18:42 arch kernel: hid-generic 0003:1532:0034.0006: input,hidraw5: USB HID v1.11 Keyboard [Razer Razer Taipan
Jul 30 00:18:42 arch kernel: input: Razer Razer Taipan as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.3/3-10.3:1.2/
Jul 30 00:18:42 arch kernel: hid-generic 0003:1532:0034.0007: input,hidraw6: USB HID v1.11 Keyboard [Razer Razer Taipan
Jul 30 00:18:44 arch kernel: input: Razer Razer Taipan as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.3/3-10.3:1.0/
Jul 30 00:18:44 arch kernel: hid-generic 0003:1532:0034.0008: input,hidraw4: USB HID v1.11 Mouse [Razer Razer Taipan] o
Jul 30 00:18:44 arch kernel: input: Razer Razer Taipan as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.3/3-10.3:1.0/
Jul 30 00:18:44 arch kernel: hid-generic 0003:1532:0034.0009: input,hidraw4: USB HID v1.11 Mouse [Razer Razer Taipan] o
Jul 30 00:18:44 arch kernel: input: Razer Razer Taipan as /devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10.3/3-10.3:1.0/
Jul 30 00:18:44 arch kernel: hid-generic 0003:1532:0034.000A: input,hidraw4: USB HID v1.11 Mouse [Razer Razer Taipan] o
Jul 30 00:18:44 arch kernel: mousedev: PS/2 mouse device common for all mice
Jul 30 00:18:44 arch login[316]: pam_unix(login:session): session opened for user gene by LOGIN(uid=0)
Jul 30 00:18:44 arch systemd-logind[294]: New session c1 of user gene.
Jul 30 00:18:44 arch systemd[349]: pam_unix(systemd-user:session): session opened for user gene by (uid=0)
Jul 30 00:18:44 arch systemd[349]: Starting Paths.
Jul 30 00:18:44 arch systemd[349]: Reached target Paths.
Jul 30 00:18:44 arch systemd[349]: Starting Timers.
Jul 30 00:18:44 arch systemd[349]: Reached target Timers.
Jul 30 00:18:44 arch systemd[349]: Starting Sockets.
Jul 30 00:18:44 arch systemd[349]: Reached target Sockets.
Jul 30 00:18:44 arch systemd[349]: Starting Basic System.
Jul 30 00:18:44 arch systemd[349]: Reached target Basic System.
Jul 30 00:18:44 arch systemd[349]: Starting Default.
Jul 30 00:18:44 arch systemd[349]: Reached target Default.
Jul 30 00:18:44 arch systemd[349]: Startup finished in 3ms.
As you can see journal reports reaching target Basic System two seconds after my daemon started and failed (for obvious reason that kernel discovers said keyboard like two entries later).
What am I doing wrong?
Thank you all in advance for your time!
P.S. If I set
Requires=graphical.target
After=graphical.target
it fails completely rather early in boot with the following:
Jul 30 00:59:27 arch systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
Jul 30 00:59:27 arch systemd[1]: Found ordering cycle on graphical.target/start
Jul 30 00:59:27 arch systemd[1]: Breaking ordering cycle by deleting job blackwidow.service/start
Jul 30 00:59:27 arch systemd[1]: Job blackwidow.service/start deleted to break ordering cycle starting with graphical.target/start
my default.target if graphical, so not sure what this is about. I use startx if that helps.
Last edited by GeneMarston (2014-07-29 21:02:50)

I really don't know if this is possible at the system level, but I suspect it isn't, since a) typing "systemctl start <service>" is extremely simple, and b) in order for systemd to respond to a change in system state, it needs to know about that system state, which means you'd need to have a daemon already monitoring that system state.  That is, you'd need a daemon to start a daemon, two daemons total, thus having the opposite effect of just switching bluetooth on and off manually.
You may however be able to use a combination of sudo and a keyboard shortcut set in your DE/WM to accomplish this.

Similar Messages

  • [SOLVED]PulseAudio systemd daemon doesn't work

    Hello.
    I try to set PulseAudio as systemd service, but I'm still getting errors.
    Here is how my .service file looks like.
    $cat /usr/lib/systemd/system/[email protected]
    [Unit]
    Description=PulseAudio Sound System
    Before=sound.target
    [Service]
    BusName=org.pulseaudio.Server
    ExecStart=/usr/bin/pulseaudio --start
    Restart=always
    User=%1
    [Install]
    WantedBy=multi-user.target
    And here is what I get (dan is my username):
    $ systemctl start [email protected]
    $ systemctl status [email protected] 
    [email protected] - PulseAudio Sound System
    Loaded: loaded (/usr/lib/systemd/system/[email protected]; disabled)
    Active: failed (Result: start-limit) since Mon 2013-09-16 11:42:46 CEST; 2s ago
    Process: 1407 ExecStart=/usr/bin/pulseaudio --start (code=exited, status=217/USER)
    Sep 16 11:42:45 530uarch systemd[1]: Failed to start PulseAudio Sound System.
    Sep 16 11:42:45 530uarch systemd[1]: Unit [email protected] entered failed state.
    Sep 16 11:42:46 530uarch systemd[1]: [email protected] holdoff time over, scheduling restart.
    Sep 16 11:42:46 530uarch systemd[1]: Stopping PulseAudio Sound System...
    Sep 16 11:42:46 530uarch systemd[1]: Starting PulseAudio Sound System...
    Sep 16 11:42:46 530uarch systemd[1]: [email protected] start request repeated too quickly, refusing to start.
    Sep 16 11:42:46 530uarch systemd[1]: Failed to start PulseAudio Sound System.
    Sep 16 11:42:46 530uarch systemd[1]: Unit [email protected] entered failed state.
    Thank you
    Last edited by Kotrfa (2013-09-16 17:02:35)

    Ahhh. Thank you for that. I will add it to my awesome autostart script.
    Solved
    Last edited by Kotrfa (2013-09-16 17:03:20)

  • Forward systemd's sleep.target to a systemd user session

    My naive approach was the following:
    [email protected]
    [Unit]
    Description=sleep.target of a systemd user session
    Before=sleep.target
    StopWhenUnneeded=yes
    [Service]
    Type=oneshot
    User=%I
    RemainAfterExit=yes
    ExecStart=/usr/bin/systemctl --user start sleep.target
    ExecStop=/usr/bin/systemctl --user stop sleep.target
    [Install]
    WantedBy=sleep.target
    sleep.target
    [Unit]
    Description=Sleep Timer Target
    StopWhenUnneeded=yes
    Unfortunately I got the following error:
    $ systemctl status user-sleep@joerg
    [email protected] - sleep.target of a systemd user session
    Loaded: loaded (/etc/systemd/system/[email protected]; enabled)
    Active: failed (Result: exit-code) since Mo 2013-06-10 12:30:41 CEST; 43min ago
    Process: 10503 ExecStart=/usr/bin/systemctl --user start sleep.target (code=exited, status=1/FAILURE)
    Jun 10 12:30:41 turing-machine systemd[1]: Service [email protected] is not needed anymore. Stopping.
    Jun 10 12:30:41 turing-machine systemd[1]: [email protected]: main process exited, code=exited, status=1/FAILURE
    Jun 10 12:30:41 turing-machine systemd[1]: Failed to start sleep.target of a systemd user session.
    Jun 10 12:30:41 turing-machine systemd[1]: Unit [email protected] entered failed state.
    Can I use "systemctl --user" only at a login shell and not in a systemd unit? Because using "systemd --user" from tty works great.
    My use case is to logout gajim before suspend. This cannot be done in a normal .service file, because it does require a connection to the current dbus session.

    My naive approach was the following:
    [email protected]
    [Unit]
    Description=sleep.target of a systemd user session
    Before=sleep.target
    StopWhenUnneeded=yes
    [Service]
    Type=oneshot
    User=%I
    RemainAfterExit=yes
    ExecStart=/usr/bin/systemctl --user start sleep.target
    ExecStop=/usr/bin/systemctl --user stop sleep.target
    [Install]
    WantedBy=sleep.target
    sleep.target
    [Unit]
    Description=Sleep Timer Target
    StopWhenUnneeded=yes
    Unfortunately I got the following error:
    $ systemctl status user-sleep@joerg
    [email protected] - sleep.target of a systemd user session
    Loaded: loaded (/etc/systemd/system/[email protected]; enabled)
    Active: failed (Result: exit-code) since Mo 2013-06-10 12:30:41 CEST; 43min ago
    Process: 10503 ExecStart=/usr/bin/systemctl --user start sleep.target (code=exited, status=1/FAILURE)
    Jun 10 12:30:41 turing-machine systemd[1]: Service [email protected] is not needed anymore. Stopping.
    Jun 10 12:30:41 turing-machine systemd[1]: [email protected]: main process exited, code=exited, status=1/FAILURE
    Jun 10 12:30:41 turing-machine systemd[1]: Failed to start sleep.target of a systemd user session.
    Jun 10 12:30:41 turing-machine systemd[1]: Unit [email protected] entered failed state.
    Can I use "systemctl --user" only at a login shell and not in a systemd unit? Because using "systemd --user" from tty works great.
    My use case is to logout gajim before suspend. This cannot be done in a normal .service file, because it does require a connection to the current dbus session.

  • [Solved] systemd - network-online.target inactive dead

    Still trying to get familiar with systemd after years with Ubuntu.
    I have Crashplan installed and it's systemd service unit has the following line to wait until the network comes online.
    After=network-online.target
    However, this doesn't seem to be working.  While trying to investigate this, I noticed that the target shows as 'inactive' and 'dead'.  Not entirely sure what that means.
    ➜ ~ systemctl list-units --type=target --all | grep network-online
    network-online.target loaded inactive dead Network is Online
    Where can I go from here to make sure my Crashplan service only starts after the network is online?
    Thanks.
    Last edited by sajan (2015-04-21 22:18:14)

    Head_on_a_Stick wrote:
    Please post the output of:
    systemctl status network-online.target
    Do you actually have a working connection?
    Well, I'm connected to the internet via Wifi by the time I get past my lightdm greeter.  Not sure if systemd wants something else.
    ➜ ~ ping google.com
    PING google.com (216.58.216.206) 56(84) bytes of data.
    64 bytes from ord31s21-in-f14.1e100.net (216.58.216.206): icmp_seq=1 ttl=54 time=21.4 ms
    64 bytes from ord31s21-in-f14.1e100.net (216.58.216.206): icmp_seq=2 ttl=54 time=74.9 ms
    ^C
    --- google.com ping statistics ---
    2 packets transmitted, 2 received, 0% packet loss, time 1000ms
    rtt min/avg/max/mdev = 21.433/48.185/74.938/26.753 ms
    ➜ ~ systemctl status network-online.target
    ● network-online.target - Network is Online
    Loaded: loaded (/usr/lib/systemd/system/network-online.target; static; vendor preset: disabled)
    Active: inactive (dead)
    Docs: man:systemd.special(7)
    http://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
    ➜ ~ ping google.com
    PING google.com (216.58.216.206) 56(84) bytes of data.
    64 bytes from ord31s21-in-f14.1e100.net (216.58.216.206): icmp_seq=1 ttl=54 time=19.3 ms
    64 bytes from ord31s21-in-f14.1e100.net (216.58.216.206): icmp_seq=2 ttl=54 time=24.4 ms
    64 bytes from ord31s21-in-f14.1e100.net (216.58.216.206): icmp_seq=3 ttl=54 time=19.2 ms
    ^C
    --- google.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2003ms
    rtt min/avg/max/mdev = 19.243/20.992/24.429/2.435 ms
    ➜ ~
    Last edited by sajan (2015-04-21 21:19:21)

  • Pacman should run `systemd daemon-reload` when updating .service files

    Every time pacman updates a service like ngingx; I would like to restart that service to propagate the changes. However; systemd always complains that the service file was updated. It would be nice if pacman would do this for me. Is it possible to extend pacman in userland, so I can execute this command whenever a .service file is touched? Or should I write a pacman wrapper that uses inotify to detect this?
    Anyone knows if this is currently possible? I'm also interested in feedback; I'll post a feature-request on the bugtracker depending on your replies
    Last edited by Spider.007 (2013-11-23 13:32:54)

    graysky wrote:Glad to hear the underlying code is coming together.  I have noticed that nfs exports simply stop working when the nfs-utils package is updated, so having the underlying services restart after the update would be a welcomed addition.
    You could have systemd watch for changes to a relevant file or directory and restart the service. Not as neat but possibly useful if you haven't thought of it already.

  • NetworkManager daemon not starting since systemd 208-2 upgrade

    Hi, Since i updated my system to systemd 208-2 NetworkManager fails to start at boot.
    I haver this behaviour both with the LTS kernel and the 3.7.9.2 kernel.
    I use only a wifi card, Atheros Ar9271. However even when the card is not connected Network Manager fails to start.
    I have downgraded to 208-1 as a workaround for the moment.
    has anyone similar behaviour?
    Should i repor a bug ??
    Here are some logs :
    systemctl status Network.Manager.service :
    NetworkManager.service - Network Manager
    Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service; enabled)
    Active: failed (Result: exit-code) since lun 2013-10-28 01:02:34 CST; 1min 0s ago
    Process: 291 ExecStart=/usr/bin/NetworkManager --no-daemon (code=exited, status=127)
    Main PID: 291 (code=exited, status=127)
    CGroup: /system.slice/NetworkManager.service
    journalctl:
    oct 28 01:02:46 archlinux systemd[333]: Failed to open private bus conne...y
    oct 28 01:02:46 archlinux systemd[333]: Mounted /sys/kernel/config.
    oct 28 01:02:46 archlinux systemd[333]: Stopped target Sound Card.
    oct 28 01:02:46 archlinux systemd[333]: Starting Default.
    oct 28 01:02:46 archlinux systemd[333]: Reached target Default.
    oct 28 01:02:46 archlinux systemd[333]: Startup finished in 222ms.
    Edit: added logs
    Last edited by hydrosIII (2013-10-28 07:09:03)

    Hmm, I still seem to have this issue. For me, it's random. Most of the time I start my computer and I have no internet. At boot it tries to start internet on eth0 all the time.
    Every boot I run "ifconfig" to see if I got internet or not. Most often I do not have any, and running "dhcpcd eth0" will not do anything, at this time I am required to run "dhcpcd eth1".
    Rarely, I boot my computer, run "ifconfig", and see that I got a local IP address. But that happens rarely. I am using 208-3.

  • Enabling services via systemd only for certain targets

    Hi everyone,
    I have been searching and searching and I struggled through manpages but found nothing...
    How can you enable services using systemd for a certain target?
    Something like "systemd enable --target.graphical gdm".
    My idea is to have 2 grub entries, one that boots into target.multi-user and the other that boots into target.graphical.
    Then I would enable the gdm and other services I want for target.graphical but not for target.multi-user. That way I could choose on bootup if I want gnome this time or not and have a custom fallback/high performance mode.
    I hope I'm not just utterly blind and wasting erverybodys time but I didn't find any information on this whatsoever.
    Thanks in advance guys!
    Last edited by Ch33f (2014-07-31 13:23:55)

    Oh god this one almost hidden sentence:
    If you make use of those it is suggested that you make a new named systemd target as /etc/systemd/system/your target that takes one of the existing runlevels as a base (you can look at /usr/lib/systemd/system/graphical.target as an example), make a directory /etc/systemd/system/your target.wants, and then symlink the additional services from /usr/lib/systemd/system/ that you wish to enable.
    Ok thats a start.
    But there is no parameter in "systemd enable" that I could use to do it?
    Last edited by Ch33f (2014-07-31 13:43:49)

  • Slow bootup by systemd-analize time

    My hardware:
    CPU: intel i3-2330M
    SSD: Vertex 4 128G
    RAM: 8G
    system 2 partition, on first using btrfs. On btrfs i have @root and @home. @root -> /, @home -> /home/.
    Second contain arch.iso and not using.
    graphical.target @1min 30.058s
    └─multi-user.target @1min 30.058s
      └─psd.service @1.292s +3.954s
        └─basic.target @1.276s
          └─timers.target @1.275s
            └─systemd-tmpfiles-clean.timer @1.274s
              └─sysinit.target @1.267s
                └─systemd-update-utmp.service @366ms +901ms
                  └─systemd-tmpfiles-setup.service @360ms +4ms
                    └─local-fs.target @353ms
                      └─home.mount @339ms +13ms
                        └─dev-disk-by\x2dlabel-system.device @339ms
    I see kde interface on 17 second and i can use system. But systemd show what graphical.target reached in 1.30 min and this confuse me.
    journalctl -b
    -- Logs begin at Sat 2013-12-14 17:59:23 FET, end at Sun 2014-01-05 23:22:14 FET. --
    Jan 05 23:04:48 localhost.lan systemd-journal[137]: Runtime journal is using 1.3M (max 395.1M, leaving 592.7M of free 3.8G, current limit 395.1M).
    Jan 05 23:04:48 localhost.lan systemd-journal[137]: Runtime journal is using 1.3M (max 395.1M, leaving 592.7M of free 3.8G, current limit 395.1M).
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys cpuset
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys cpu
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys cpuacct
    Jan 05 23:04:48 localhost.lan kernel: Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013
    Jan 05 23:04:48 localhost.lan kernel: Command line: BOOT_IMAGE=(hd0,msdos1)/@root/boot/grub/vmlinuz-linux root=/dev/sda1 rootfstype=btrfs rw rootflags=subvol=@root sysrq_always_enabled fastboot elevator=deadline nmi_watchdog=0
    Jan 05 23:04:48 localhost.lan kernel: Disabled fast string operations
    Jan 05 23:04:48 localhost.lan kernel: e820: BIOS-provided physical RAM map:
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bac86fff] usable
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000bac87000-0x00000000baefefff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000baeff000-0x00000000baf9efff] ACPI NVS
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    Jan 05 23:04:48 localhost.lan kernel: BIOS-e820: [mem 0x0000000100000000-0x000000023fdfffff] usable
    Jan 05 23:04:48 localhost.lan kernel: NX (Execute Disable) protection: active
    Jan 05 23:04:48 localhost.lan kernel: SMBIOS 2.6 present.
    Jan 05 23:04:48 localhost.lan kernel: DMI: LENOVO HuronRiver Platform/Emerald Lake, BIOS 44CN43WW 10/27/2011
    Jan 05 23:04:48 localhost.lan kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jan 05 23:04:48 localhost.lan kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 05 23:04:48 localhost.lan kernel: No AGP bridge found
    Jan 05 23:04:48 localhost.lan kernel: e820: last_pfn = 0x23fe00 max_arch_pfn = 0x400000000
    Jan 05 23:04:48 localhost.lan kernel: MTRR default type: uncachable
    Jan 05 23:04:48 localhost.lan kernel: MTRR fixed ranges enabled:
    Jan 05 23:04:48 localhost.lan kernel: 00000-9FFFF write-back
    Jan 05 23:04:48 localhost.lan kernel: A0000-BFFFF uncachable
    Jan 05 23:04:48 localhost.lan kernel: C0000-FFFFF write-protect
    Jan 05 23:04:48 localhost.lan kernel: MTRR variable ranges enabled:
    Jan 05 23:04:48 localhost.lan kernel: 0 base 0FFC00000 mask FFFC00000 write-protect
    Jan 05 23:04:48 localhost.lan kernel: 1 base 000000000 mask F80000000 write-back
    Jan 05 23:04:48 localhost.lan kernel: 2 base 080000000 mask FC0000000 write-back
    Jan 05 23:04:48 localhost.lan kernel: 3 base 0BC000000 mask FFC000000 uncachable
    Jan 05 23:04:48 localhost.lan kernel: 4 base 0BB000000 mask FFF000000 uncachable
    Jan 05 23:04:48 localhost.lan kernel: 5 base 100000000 mask F00000000 write-back
    Jan 05 23:04:48 localhost.lan kernel: 6 base 200000000 mask FC0000000 write-back
    Jan 05 23:04:48 localhost.lan kernel: 7 base 23FE00000 mask FFFE00000 uncachable
    Jan 05 23:04:48 localhost.lan kernel: 8 disabled
    Jan 05 23:04:48 localhost.lan kernel: 9 disabled
    Jan 05 23:04:48 localhost.lan kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 05 23:04:48 localhost.lan kernel: e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
    Jan 05 23:04:48 localhost.lan kernel: Scanning 1 areas for low memory corruption
    Jan 05 23:04:48 localhost.lan kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Jan 05 23:04:48 localhost.lan kernel: reserving inaccessible SNB gfx pages
    Jan 05 23:04:48 localhost.lan kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 05 23:04:48 localhost.lan kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 05 23:04:48 localhost.lan kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    Jan 05 23:04:48 localhost.lan kernel: BRK [0x01b33000, 0x01b33fff] PGTABLE
    Jan 05 23:04:48 localhost.lan kernel: BRK [0x01b34000, 0x01b34fff] PGTABLE
    Jan 05 23:04:48 localhost.lan kernel: init_memory_mapping: [mem 0x23fc00000-0x23fdfffff]
    Jan 05 23:04:48 localhost.lan kernel: [mem 0x23fc00000-0x23fdfffff] page 2M
    Jan 05 23:04:48 localhost.lan kernel: BRK [0x01b35000, 0x01b35fff] PGTABLE
    Jan 05 23:04:48 localhost.lan kernel: init_memory_mapping: [mem 0x23c000000-0x23fbfffff]
    Jan 05 23:04:48 localhost.lan kernel: [mem 0x23c000000-0x23fbfffff] page 2M
    Jan 05 23:04:48 localhost.lan kernel: init_memory_mapping: [mem 0x200000000-0x23bffffff]
    Jan 05 23:04:48 localhost.lan kernel: [mem 0x200000000-0x23bffffff] page 2M
    Jan 05 23:04:48 localhost.lan kernel: init_memory_mapping: [mem 0x00100000-0xbac86fff]
    Jan 05 23:04:48 localhost.lan kernel: [mem 0x00100000-0x001fffff] page 4k
    Jan 05 23:04:48 localhost.lan kernel: [mem 0x00200000-0xbabfffff] page 2M
    Jan 05 23:04:48 localhost.lan kernel: [mem 0xbac00000-0xbac86fff] page 4k
    Jan 05 23:04:48 localhost.lan kernel: init_memory_mapping: [mem 0xbafff000-0xbaffffff]
    Jan 05 23:04:48 localhost.lan kernel: [mem 0xbafff000-0xbaffffff] page 4k
    Jan 05 23:04:48 localhost.lan kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
    Jan 05 23:04:48 localhost.lan kernel: init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    Jan 05 23:04:48 localhost.lan kernel: [mem 0x100000000-0x1ffffffff] page 2M
    Jan 05 23:04:48 localhost.lan kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
    Jan 05 23:04:48 localhost.lan kernel: RAMDISK: [mem 0x378e0000-0x37c67fff]
    Jan 05 23:04:48 localhost.lan kernel: ACPI: RSDP 00000000000f0110 00024 (v02 LENOVO)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: XSDT 00000000baffe120 00084 (v01 LENOVO CB-01 00000001 LENO 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: FACP 00000000bafee000 000F4 (v03 LENOVO CB-01 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: DSDT 00000000baff1000 09AC3 (v02 LENOVO SNB-CPT 00000000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: FACS 00000000baf3d000 00040
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01 00000001 LENO 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT 00000000baffb000 01068 (v01 LENOVO PtidDevc 00001000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: ASF! 00000000baff0000 000A5 (v32 LENOVO CB-01 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: HPET 00000000bafed000 00038 (v01 LENOVO CB-01 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: APIC 00000000bafec000 00098 (v01 LENOVO CB-01 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: MCFG 00000000bafeb000 0003C (v01 LENOVO CB-01 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT 00000000bafea000 0090C (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT 00000000bafe9000 00996 (v01 PmRef CpuPm 00003000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: UEFI 00000000bafe8000 0003E (v01 LENOVO CB-01 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: UEFI 00000000bafe7000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: UEFI 00000000bafe6000 00256 (v01 LENOVO CB-01 00000001 PTL 00000001)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Local APIC address 0xfee00000
    Jan 05 23:04:48 localhost.lan kernel: No NUMA configuration found
    Jan 05 23:04:48 localhost.lan kernel: Faking a node at [mem 0x0000000000000000-0x000000023fdfffff]
    Jan 05 23:04:48 localhost.lan kernel: Initmem setup node 0 [mem 0x00000000-0x23fdfffff]
    Jan 05 23:04:48 localhost.lan kernel: NODE_DATA [mem 0x23fdf5000-0x23fdf9fff]
    Jan 05 23:04:48 localhost.lan kernel: [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237400000-ffff88023f3fffff] on node 0
    Jan 05 23:04:48 localhost.lan kernel: Zone ranges:
    Jan 05 23:04:48 localhost.lan kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 05 23:04:48 localhost.lan kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 05 23:04:48 localhost.lan kernel: Normal [mem 0x100000000-0x23fdfffff]
    Jan 05 23:04:48 localhost.lan kernel: Movable zone start for each node
    Jan 05 23:04:48 localhost.lan kernel: Early memory node ranges
    Jan 05 23:04:48 localhost.lan kernel: node 0: [mem 0x00001000-0x0009cfff]
    Jan 05 23:04:48 localhost.lan kernel: node 0: [mem 0x00100000-0xbac86fff]
    Jan 05 23:04:48 localhost.lan kernel: node 0: [mem 0xbafff000-0xbaffffff]
    Jan 05 23:04:48 localhost.lan kernel: node 0: [mem 0x100000000-0x23fdfffff]
    Jan 05 23:04:48 localhost.lan kernel: On node 0 totalpages: 2075172
    Jan 05 23:04:48 localhost.lan kernel: DMA zone: 64 pages used for memmap
    Jan 05 23:04:48 localhost.lan kernel: DMA zone: 156 pages reserved
    Jan 05 23:04:48 localhost.lan kernel: DMA zone: 3996 pages, LIFO batch:0
    Jan 05 23:04:48 localhost.lan kernel: DMA32 zone: 11891 pages used for memmap
    Jan 05 23:04:48 localhost.lan kernel: DMA32 zone: 760968 pages, LIFO batch:31
    Jan 05 23:04:48 localhost.lan kernel: Normal zone: 20472 pages used for memmap
    Jan 05 23:04:48 localhost.lan kernel: Normal zone: 1310208 pages, LIFO batch:31
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PM-Timer IO Port: 0x408
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Local APIC address 0xfee00000
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Jan 05 23:04:48 localhost.lan kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jan 05 23:04:48 localhost.lan kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jan 05 23:04:48 localhost.lan kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Jan 05 23:04:48 localhost.lan kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: IRQ0 used by override.
    Jan 05 23:04:48 localhost.lan kernel: ACPI: IRQ2 used by override.
    Jan 05 23:04:48 localhost.lan kernel: ACPI: IRQ9 used by override.
    Jan 05 23:04:48 localhost.lan kernel: Using ACPI (MADT) for SMP configuration information
    Jan 05 23:04:48 localhost.lan kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
    Jan 05 23:04:48 localhost.lan kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    Jan 05 23:04:48 localhost.lan kernel: nr_irqs_gsi: 40
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xbac87000-0xbaefefff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xbaeff000-0xbaf9efff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
    Jan 05 23:04:48 localhost.lan kernel: PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
    Jan 05 23:04:48 localhost.lan kernel: e820: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
    Jan 05 23:04:48 localhost.lan kernel: Booting paravirtualized kernel on bare hardware
    Jan 05 23:04:48 localhost.lan kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Jan 05 23:04:48 localhost.lan kernel: PERCPU: Embedded 29 pages/cpu @ffff88023fa00000 s86464 r8192 d24128 u262144
    Jan 05 23:04:48 localhost.lan kernel: pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    Jan 05 23:04:48 localhost.lan kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jan 05 23:04:48 localhost.lan kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2042589
    Jan 05 23:04:48 localhost.lan kernel: Policy zone: Normal
    Jan 05 23:04:48 localhost.lan kernel: Kernel command line: BOOT_IMAGE=(hd0,msdos1)/@root/boot/grub/vmlinuz-linux root=/dev/sda1 rootfstype=btrfs rw rootflags=subvol=@root sysrq_always_enabled fastboot elevator=deadline nmi_watchdog=0
    Jan 05 23:04:48 localhost.lan kernel: sysrq: sysrq always enabled.
    Jan 05 23:04:48 localhost.lan kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 05 23:04:48 localhost.lan kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Jan 05 23:04:48 localhost.lan kernel: Checking aperture...
    Jan 05 23:04:48 localhost.lan kernel: No AGP bridge found
    Jan 05 23:04:48 localhost.lan kernel: Calgary: detecting Calgary via BIOS EBDA area
    Jan 05 23:04:48 localhost.lan kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Jan 05 23:04:48 localhost.lan kernel: Memory: 8086588K/8300688K available (5124K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 214100K reserved)
    Jan 05 23:04:48 localhost.lan kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Jan 05 23:04:48 localhost.lan kernel: Preemptible hierarchical RCU implementation.
    Jan 05 23:04:48 localhost.lan kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 05 23:04:48 localhost.lan kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 05 23:04:48 localhost.lan kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    Jan 05 23:04:48 localhost.lan kernel: NR_IRQS:8448 nr_irqs:744 16
    Jan 05 23:04:48 localhost.lan kernel: Console: colour VGA+ 80x25
    Jan 05 23:04:48 localhost.lan kernel: console [tty0] enabled
    Jan 05 23:04:48 localhost.lan kernel: allocated 33554432 bytes of page_cgroup
    Jan 05 23:04:48 localhost.lan kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 05 23:04:48 localhost.lan kernel: hpet clockevent registered
    Jan 05 23:04:48 localhost.lan kernel: tsc: Fast TSC calibration using PIT
    Jan 05 23:04:48 localhost.lan kernel: tsc: Detected 2195.134 MHz processor
    Jan 05 23:04:48 localhost.lan kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4392.19 BogoMIPS (lpj=7317113)
    Jan 05 23:04:48 localhost.lan kernel: pid_max: default: 32768 minimum: 301
    Jan 05 23:04:48 localhost.lan kernel: Security Framework initialized
    Jan 05 23:04:48 localhost.lan kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 05 23:04:48 localhost.lan kernel: Yama: becoming mindful.
    Jan 05 23:04:48 localhost.lan kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Jan 05 23:04:48 localhost.lan kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 05 23:04:48 localhost.lan kernel: Mount-cache hash table entries: 256
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys memory
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys devices
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys freezer
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys net_cls
    Jan 05 23:04:48 localhost.lan kernel: Initializing cgroup subsys blkio
    Jan 05 23:04:48 localhost.lan kernel: Disabled fast string operations
    Jan 05 23:04:48 localhost.lan kernel: CPU: Physical Processor ID: 0
    Jan 05 23:04:48 localhost.lan kernel: CPU: Processor Core ID: 0
    Jan 05 23:04:48 localhost.lan kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    Jan 05 23:04:48 localhost.lan kernel: mce: CPU supports 7 MCE banks
    Jan 05 23:04:48 localhost.lan kernel: CPU0: Thermal monitoring enabled (TM1)
    Jan 05 23:04:48 localhost.lan kernel: Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    Jan 05 23:04:48 localhost.lan kernel: Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Core revision 20130725
    Jan 05 23:04:48 localhost.lan kernel: ACPI: All ACPI Tables successfully acquired
    Jan 05 23:04:48 localhost.lan kernel: ftrace: allocating 20318 entries in 80 pages
    Jan 05 23:04:48 localhost.lan kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 05 23:04:48 localhost.lan kernel: smpboot: CPU0: Intel(R) Core(TM) i3-2330M CPU @ 2.20GHz (fam: 06, model: 2a, stepping: 07)
    Jan 05 23:04:48 localhost.lan kernel: TSC deadline timer enabled
    Jan 05 23:04:48 localhost.lan kernel: Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    Jan 05 23:04:48 localhost.lan kernel: perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    Jan 05 23:04:48 localhost.lan kernel: ... version: 3
    Jan 05 23:04:48 localhost.lan kernel: ... bit width: 48
    Jan 05 23:04:48 localhost.lan kernel: ... generic registers: 4
    Jan 05 23:04:48 localhost.lan kernel: ... value mask: 0000ffffffffffff
    Jan 05 23:04:48 localhost.lan kernel: ... max period: 0000ffffffffffff
    Jan 05 23:04:48 localhost.lan kernel: ... fixed-purpose events: 3
    Jan 05 23:04:48 localhost.lan kernel: ... event mask: 000000070000000f
    Jan 05 23:04:48 localhost.lan kernel: Disabled fast string operations
    Jan 05 23:04:48 localhost.lan kernel: Disabled fast string operations
    Jan 05 23:04:48 localhost.lan kernel: smpboot: Booting Node 0, Processors # 1 # 2 # 3 OK
    Jan 05 23:04:48 localhost.lan kernel: Disabled fast string operations
    Jan 05 23:04:48 localhost.lan kernel: Brought up 4 CPUs
    Jan 05 23:04:48 localhost.lan kernel: smpboot: Total of 4 processors activated (17568.78 BogoMIPS)
    Jan 05 23:04:48 localhost.lan kernel: devtmpfs: initialized
    Jan 05 23:04:48 localhost.lan kernel: PM: Registering ACPI NVS region [mem 0xbaeff000-0xbaf9efff] (655360 bytes)
    Jan 05 23:04:48 localhost.lan kernel: RTC time: 20:04:46, date: 01/05/14
    Jan 05 23:04:48 localhost.lan kernel: NET: Registered protocol family 16
    Jan 05 23:04:48 localhost.lan kernel: cpuidle: using governor ladder
    Jan 05 23:04:48 localhost.lan kernel: cpuidle: using governor menu
    Jan 05 23:04:48 localhost.lan kernel: ACPI: bus type PCI registered
    Jan 05 23:04:48 localhost.lan kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 05 23:04:48 localhost.lan kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    Jan 05 23:04:48 localhost.lan kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Jan 05 23:04:48 localhost.lan kernel: PCI: Using configuration type 1 for base access
    Jan 05 23:04:48 localhost.lan kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Jan 05 23:04:48 localhost.lan kernel: mtrr: probably your BIOS does not setup all CPUs.
    Jan 05 23:04:48 localhost.lan kernel: mtrr: corrected configuration.
    Jan 05 23:04:48 localhost.lan kernel: bio: create slab <bio-0> at 0
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Added _OSI(Module Device)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Added _OSI(Processor Device)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: EC: Look up EC in DSDT
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 05 23:04:48 localhost.lan kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT 00000000baeef718 0067C (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Dynamic OEM Table Load:
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT (null) 0067C (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT 00000000baef0a98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Dynamic OEM Table Load:
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT 00000000baeeed98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Dynamic OEM Table Load:
    Jan 05 23:04:48 localhost.lan kernel: ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Interpreter enabled
    Jan 05 23:04:48 localhost.lan kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: (supports S0 S1 S3 S4 S5)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 05 23:04:48 localhost.lan kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 05 23:04:48 localhost.lan kernel: ACPI: No dock devices found.
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    Jan 05 23:04:48 localhost.lan kernel: \_SB_.PCI0:_OSC invalid UUID
    Jan 05 23:04:48 localhost.lan kernel: _OSC request data:1 8 0
    Jan 05 23:04:48 localhost.lan kernel: \_SB_.PCI0:_OSC invalid UUID
    Jan 05 23:04:48 localhost.lan kernel: _OSC request data:1 1f 0
    Jan 05 23:04:48 localhost.lan kernel: acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 05 23:04:48 localhost.lan kernel: acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: \_SB_.PCI0.PDRC: can't evaluate _ADR (0x5)
    Jan 05 23:04:48 localhost.lan kernel: PCI host bridge to bus 0000:00
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff 64bit]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:16.0: reg 0x10: [mem 0xd0605000-0xd060500f 64bit]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xd060a000-0xd060a3ff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xd0600000-0xd0603fff 64bit]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xd0609000-0xd06093ff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: reg 0x10: [io 0x3088-0x308f]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: reg 0x14: [io 0x3094-0x3097]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: reg 0x18: [io 0x3080-0x3087]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x3090-0x3093]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xd0608000-0xd06087ff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xd0604000-0xd06040ff 64bit]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:02:00.0: [168c:002b] type 00 class 0x028000
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:02:00.0: supports D1
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:02:00.0: PME# supported from D0 D1 D3hot
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.1: bridge window [mem 0xd0500000-0xd05fffff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:03:00.0: reg 0x10: [io 0x2000-0x20ff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:03:00.0: reg 0x18: [mem 0xd0404000-0xd0404fff 64bit pref]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:03:00.0: reg 0x20: [mem 0xd0400000-0xd0403fff 64bit pref]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:03:00.0: supports D1 D2
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:03:00.0: System wakeup disabled by ACPI
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: PCI bridge to [bus 03]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: bridge window [mem 0xd0400000-0xd04fffff 64bit pref]
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Enabled 3 GPEs in block 00 to 3F
    Jan 05 23:04:48 localhost.lan kernel: ACPI: \_SB_.PCI0: notify handler is installed
    Jan 05 23:04:48 localhost.lan kernel: Found 1 acpi root devices
    Jan 05 23:04:48 localhost.lan kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Jan 05 23:04:48 localhost.lan kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 05 23:04:48 localhost.lan kernel: vgaarb: loaded
    Jan 05 23:04:48 localhost.lan kernel: vgaarb: bridge control possible 0000:00:02.0
    Jan 05 23:04:48 localhost.lan kernel: PCI: Using ACPI for IRQ routing
    Jan 05 23:04:48 localhost.lan kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 05 23:04:48 localhost.lan kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    Jan 05 23:04:48 localhost.lan kernel: e820: reserve RAM buffer [mem 0xbac87000-0xbbffffff]
    Jan 05 23:04:48 localhost.lan kernel: e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
    Jan 05 23:04:48 localhost.lan kernel: e820: reserve RAM buffer [mem 0x23fe00000-0x23fffffff]
    Jan 05 23:04:48 localhost.lan kernel: NetLabel: Initializing
    Jan 05 23:04:48 localhost.lan kernel: NetLabel: domain hash size = 128
    Jan 05 23:04:48 localhost.lan kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 05 23:04:48 localhost.lan kernel: NetLabel: unlabeled traffic allowed by default
    Jan 05 23:04:48 localhost.lan kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Jan 05 23:04:48 localhost.lan kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Jan 05 23:04:48 localhost.lan kernel: Switched to clocksource hpet
    Jan 05 23:04:48 localhost.lan kernel: pnp: PnP ACPI init
    Jan 05 23:04:48 localhost.lan kernel: ACPI: bus type PNP registered
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:00: [dma 4]
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: [io 0x1000-0x100f] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: [io 0xffff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: [io 0xffff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: [io 0x0400-0x0453] could not be reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: [io 0x0458-0x047f] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: [io 0x0500-0x057f] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: [mem 0xfe800000-0xfe80ffff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 05 23:04:48 localhost.lan kernel: system 00:06: [io 0x0454-0x0457] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    Jan 05 23:04:48 localhost.lan kernel: pnp 00:08: Plug and Play ACPI device, IDs SYN0326 SYN0300 SYN0002 PNP0f13 (active)
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: [mem 0xbfa00000-0xbfa00fff] has been reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 05 23:04:48 localhost.lan kernel: system 00:0a: [mem 0x20000000-0x201fffff] could not be reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:0a: [mem 0x40000000-0x401fffff] could not be reserved
    Jan 05 23:04:48 localhost.lan kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 05 23:04:48 localhost.lan kernel: pnp: PnP ACPI: found 11 devices
    Jan 05 23:04:48 localhost.lan kernel: ACPI: bus type PNP unregistered
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.1: bridge window [mem 0xd0500000-0xd05fffff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: PCI bridge to [bus 03]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:1c.3: bridge window [mem 0xd0400000-0xd04fffff 64bit pref]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    Jan 05 23:04:48 localhost.lan kernel: pci_bus 0000:03: resource 2 [mem 0xd0400000-0xd04fffff 64bit pref]
    Jan 05 23:04:48 localhost.lan kernel: NET: Registered protocol family 2
    Jan 05 23:04:48 localhost.lan kernel: TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 05 23:04:48 localhost.lan kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 05 23:04:48 localhost.lan kernel: TCP: Hash tables configured (established 65536 bind 65536)
    Jan 05 23:04:48 localhost.lan kernel: TCP: reno registered
    Jan 05 23:04:48 localhost.lan kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Jan 05 23:04:48 localhost.lan kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Jan 05 23:04:48 localhost.lan kernel: NET: Registered protocol family 1
    Jan 05 23:04:48 localhost.lan kernel: pci 0000:00:02.0: Boot video device
    Jan 05 23:04:48 localhost.lan kernel: PCI: CLS 64 bytes, default 64
    Jan 05 23:04:48 localhost.lan kernel: Unpacking initramfs...
    Jan 05 23:04:48 localhost.lan kernel: Freeing initrd memory: 3616K (ffff8800378e0000 - ffff880037c68000)
    Jan 05 23:04:48 localhost.lan kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jan 05 23:04:48 localhost.lan kernel: software IO TLB [mem 0xb6c87000-0xbac87000] (64MB) mapped at [ffff8800b6c87000-ffff8800bac86fff]
    Jan 05 23:04:48 localhost.lan kernel: Scanning for low memory corruption every 60 seconds
    Jan 05 23:04:48 localhost.lan kernel: audit: initializing netlink socket (disabled)
    Jan 05 23:04:48 localhost.lan kernel: type=2000 audit(1388952286.246:1): initialized
    Jan 05 23:04:48 localhost.lan kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 05 23:04:48 localhost.lan kernel: zbud: loaded
    Jan 05 23:04:48 localhost.lan kernel: VFS: Disk quotas dquot_6.5.2
    Jan 05 23:04:48 localhost.lan kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 05 23:04:48 localhost.lan kernel: msgmni has been set to 15801
    Jan 05 23:04:48 localhost.lan kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 05 23:04:48 localhost.lan kernel: io scheduler noop registered
    Jan 05 23:04:48 localhost.lan kernel: io scheduler deadline registered (default)
    Jan 05 23:04:48 localhost.lan kernel: io scheduler cfq registered
    Jan 05 23:04:48 localhost.lan kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 05 23:04:48 localhost.lan kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 05 23:04:48 localhost.lan kernel: intel_idle: MWAIT substates: 0x21120
    Jan 05 23:04:48 localhost.lan kernel: intel_idle: v0.4 model 0x2A
    Jan 05 23:04:48 localhost.lan kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Jan 05 23:04:48 localhost.lan kernel: GHES: HEST is not enabled!
    Jan 05 23:04:48 localhost.lan kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 05 23:04:48 localhost.lan kernel: Linux agpgart interface v0.103
    Jan 05 23:04:48 localhost.lan kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jan 05 23:04:48 localhost.lan kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 05 23:04:48 localhost.lan kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 05 23:04:48 localhost.lan kernel: mousedev: PS/2 mouse device common for all mice
    Jan 05 23:04:48 localhost.lan kernel: rtc_cmos 00:05: RTC can wake from S4
    Jan 05 23:04:48 localhost.lan kernel: rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    Jan 05 23:04:48 localhost.lan kernel: rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Jan 05 23:04:48 localhost.lan kernel: Intel P-state driver initializing.
    Jan 05 23:04:48 localhost.lan kernel: Intel pstate controlling: cpu 0
    Jan 05 23:04:48 localhost.lan kernel: Intel pstate controlling: cpu 1
    Jan 05 23:04:48 localhost.lan kernel: Intel pstate controlling: cpu 2
    Jan 05 23:04:48 localhost.lan kernel: Intel pstate controlling: cpu 3
    Jan 05 23:04:48 localhost.lan kernel: drop_monitor: Initializing network drop monitor service
    Jan 05 23:04:48 localhost.lan kernel: TCP: cubic registered
    Jan 05 23:04:48 localhost.lan kernel: NET: Registered protocol family 10
    Jan 05 23:04:48 localhost.lan kernel: NET: Registered protocol family 17
    Jan 05 23:04:48 localhost.lan kernel: Key type dns_resolver registered
    Jan 05 23:04:48 localhost.lan kernel: registered taskstats version 1
    Jan 05 23:04:48 localhost.lan kernel: Magic number: 14:976:92
    Jan 05 23:04:48 localhost.lan kernel: rtc_cmos 00:05: setting system clock to 2014-01-05 20:04:46 UTC (1388952286)
    Jan 05 23:04:48 localhost.lan kernel: PM: Hibernation image not present or could not be loaded.
    Jan 05 23:04:48 localhost.lan kernel: Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    Jan 05 23:04:48 localhost.lan kernel: Write protecting the kernel read-only data: 8192k
    Jan 05 23:04:48 localhost.lan kernel: Freeing unused kernel memory: 1008K (ffff880001504000 - ffff880001600000)
    Jan 05 23:04:48 localhost.lan kernel: Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    Jan 05 23:04:48 localhost.lan kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 05 23:04:48 localhost.lan systemd-udevd[56]: starting version 208
    Jan 05 23:04:48 localhost.lan kernel: ACPI: bus type USB registered
    Jan 05 23:04:48 localhost.lan kernel: usbcore: registered new interface driver usbfs
    Jan 05 23:04:48 localhost.lan kernel: usbcore: registered new interface driver hub
    Jan 05 23:04:48 localhost.lan kernel: usbcore: registered new device driver usb
    Jan 05 23:04:48 localhost.lan kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci: EHCI PCI platform driver
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1a.0: setting latency timer to 64
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1a.0: debug port 2
    Jan 05 23:04:48 localhost.lan kernel: SCSI subsystem initialized
    Jan 05 23:04:48 localhost.lan kernel: libata version 3.00 loaded.
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xd060a000
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    Jan 05 23:04:48 localhost.lan kernel: hub 1-0:1.0: USB hub found
    Jan 05 23:04:48 localhost.lan kernel: hub 1-0:1.0: 2 ports detected
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1d.0: setting latency timer to 64
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1d.0: debug port 2
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xd0609000
    Jan 05 23:04:48 localhost.lan kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    Jan 05 23:04:48 localhost.lan kernel: hub 2-0:1.0: USB hub found
    Jan 05 23:04:48 localhost.lan kernel: hub 2-0:1.0: 2 ports detected
    Jan 05 23:04:48 localhost.lan kernel: ahci 0000:00:1f.2: version 3.0
    Jan 05 23:04:48 localhost.lan kernel: ahci 0000:00:1f.2: irq 40 for MSI/MSI-X
    Jan 05 23:04:48 localhost.lan kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    Jan 05 23:04:48 localhost.lan kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x39 impl SATA mode
    Jan 05 23:04:48 localhost.lan kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
    Jan 05 23:04:48 localhost.lan kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Jan 05 23:04:48 localhost.lan kernel: scsi0 : ahci
    Jan 05 23:04:48 localhost.lan kernel: scsi1 : ahci
    Jan 05 23:04:48 localhost.lan kernel: scsi2 : ahci
    Jan 05 23:04:48 localhost.lan kernel: scsi3 : ahci
    Jan 05 23:04:48 localhost.lan kernel: scsi4 : ahci
    Jan 05 23:04:48 localhost.lan kernel: scsi5 : ahci
    Jan 05 23:04:48 localhost.lan kernel: ata1: SATA max UDMA/133 abar m2048@0xd0608000 port 0xd0608100 irq 40
    Jan 05 23:04:48 localhost.lan kernel: ata2: DUMMY
    Jan 05 23:04:48 localhost.lan kernel: ata3: DUMMY
    Jan 05 23:04:48 localhost.lan kernel: ata4: SATA max UDMA/133 abar m2048@0xd0608000 port 0xd0608280 irq 40
    Jan 05 23:04:48 localhost.lan kernel: ata5: SATA max UDMA/133 abar m2048@0xd0608000 port 0xd0608300 irq 40
    Jan 05 23:04:48 localhost.lan kernel: ata6: SATA max UDMA/133 abar m2048@0xd0608000 port 0xd0608380 irq 40
    Jan 05 23:04:48 localhost.lan kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
    Jan 05 23:04:48 localhost.lan kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    Jan 05 23:04:48 localhost.lan kernel: ata1.00: ATA-9: OCZ-VERTEX4, 1.5, max UDMA/133
    Jan 05 23:04:48 localhost.lan kernel: ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Jan 05 23:04:48 localhost.lan kernel: ata1.00: configured for UDMA/133
    Jan 05 23:04:48 localhost.lan kernel: scsi 0:0:0:0: Direct-Access ATA OCZ-VERTEX4 1.5 PQ: 0 ANSI: 5
    Jan 05 23:04:48 localhost.lan kernel: hub 1-1:1.0: USB hub found
    Jan 05 23:04:48 localhost.lan kernel: hub 1-1:1.0: 6 ports detected
    Jan 05 23:04:48 localhost.lan kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
    Jan 05 23:04:48 localhost.lan kernel: hub 2-1:1.0: USB hub found
    Jan 05 23:04:48 localhost.lan kernel: hub 2-1:1.0: 6 ports detected
    Jan 05 23:04:48 localhost.lan kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Jan 05 23:04:48 localhost.lan kernel: usb 1-1.2: new full-speed USB device number 3 using ehci-pci
    Jan 05 23:04:48 localhost.lan kernel: usb 1-1.3: new full-speed USB device number 4 using ehci-pci
    Jan 05 23:04:48 localhost.lan kernel: tsc: Refined TSC clocksource calibration: 2195.013 MHz
    Jan 05 23:04:48 localhost.lan kernel: usb 1-1.3: device descriptor read/64, error -32
    Jan 05 23:04:48 localhost.lan kernel: ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 05 23:04:48 localhost.lan kernel: ata5.00: ATAPI: TSSTcorp CDDVDW TS-L633F, LE02, max UDMA/33
    Jan 05 23:04:48 localhost.lan kernel: ata5.00: configured for UDMA/33
    Jan 05 23:04:48 localhost.lan kernel: scsi 4:0:0:0: CD-ROM TSSTcorp CDDVDW TS-L633F LE02 PQ: 0 ANSI: 5
    Jan 05 23:04:48 localhost.lan kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jan 05 23:04:48 localhost.lan kernel: usbcore: registered new interface driver usbhid
    Jan 05 23:04:48 localhost.lan kernel: usbhid: USB HID core driver
    Jan 05 23:04:48 localhost.lan kernel: input: A4TECH USB Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input2
    Jan 05 23:04:48 localhost.lan kernel: hid-generic 0003:09DA:054F.0001: input,hiddev0,hidraw0: USB HID v1.11 Keyboard [A4TECH USB Device] on usb-0000:00:1a.0-1.3/input0
    Jan 05 23:04:48 localhost.lan kernel: input: A4TECH USB Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/input/input3
    Jan 05 23:04:48 localhost.lan kernel: hid-generic 0003:09DA:054F.0002: input,hidraw1: USB HID v1.11 Mouse [A4TECH USB Device] on usb-0000:00:1a.0-1.3/input1
    Jan 05 23:04:48 localhost.lan kernel: usb 1-1.5: new high-speed USB device number 5 using ehci-pci
    Jan 05 23:04:48 localhost.lan kernel: ata6: SATA link down (SStatus 0 SControl 300)
    Jan 05 23:04:48 localhost.lan kernel: sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    Jan 05 23:04:48 localhost.lan kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 05 23:04:48 localhost.lan kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 05 23:04:48 localhost.lan kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 05 23:04:48 localhost.lan kernel: sda: sda1 sda2
    Jan 05 23:04:48 localhost.lan kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 05 23:04:48 localhost.lan kernel: sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Jan 05 23:04:48 localhost.lan kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 05 23:04:48 localhost.lan kernel: sr 4:0:0:0: Attached scsi CD-ROM sr0
    Jan 05 23:04:48 localhost.lan kernel: usb 2-1.6: new high-speed USB device number 3 using ehci-pci
    Jan 05 23:04:48 localhost.lan kernel: raid6: sse2x1 4565 MB/s
    Jan 05 23:04:48 localhost.lan kernel: raid6: sse2x2 7270 MB/s
    Jan 05 23:04:48 localhost.lan kernel: raid6: sse2x4 8479 MB/s
    Jan 05 23:04:48 localhost.lan kernel: raid6: using algorithm sse2x4 (8479 MB/s)
    Jan 05 23:04:48 localhost.lan kernel: raid6: using ssse3x2 recovery algorithm
    Jan 05 23:04:48 localhost.lan kernel: xor: automatically using best checksumming function:
    Jan 05 23:04:48 localhost.lan kernel: avx : 16328.400 MB/sec
    Jan 05 23:04:48 localhost.lan kernel: bio: create slab <bio-1> at 1
    Jan 05 23:04:48 localhost.lan kernel: Btrfs loaded
    Jan 05 23:04:48 localhost.lan kernel: btrfs: device label system devid 1 transid 244975 /dev/sda1
    Jan 05 23:04:48 localhost.lan kernel: btrfs: device label system devid 1 transid 244975 /dev/sda1
    Jan 05 23:04:48 localhost.lan kernel: btrfs: device label system devid 1 transid 244975 /dev/sda1
    Jan 05 23:04:48 localhost.lan kernel: btrfs: device label system devid 1 transid 244975 /dev/sda1
    Jan 05 23:04:48 localhost.lan kernel: btrfs: disk space caching is enabled
    Jan 05 23:04:48 localhost.lan kernel: btrfs: has skinny extents
    Jan 05 23:04:48 localhost.lan kernel: Btrfs detected SSD devices, enabling SSD mode
    Jan 05 23:04:48 localhost.lan systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Jan 05 23:04:48 localhost.lan systemd[1]: Set hostname to <localhost.lan>.
    Jan 05 23:04:48 localhost.lan systemd[1]: Found ordering cycle on basic.target/start
    Jan 05 23:04:48 localhost.lan systemd[1]: Found dependency on sysinit.target/start
    Jan 05 23:04:48 localhost.lan systemd[1]: Found dependency on swap.target/start
    Jan 05 23:04:48 localhost.lan systemd[1]: Found dependency on systemd-loop-swapfile.service/start
    Jan 05 23:04:48 localhost.lan systemd[1]: Found dependency on basic.target/start
    Jan 05 23:04:48 localhost.lan systemd[1]: Breaking ordering cycle by deleting job swap.target/start
    Jan 05 23:04:48 localhost.lan systemd[1]: Job swap.target/start deleted to break ordering cycle starting with basic.target/start
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Remote File Systems.
    Jan 05 23:04:48 localhost.lan systemd[1]: Reached target Remote File Systems.
    Jan 05 23:04:48 localhost.lan systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 05 23:04:48 localhost.lan systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Delayed Shutdown Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jan 05 23:04:48 localhost.lan systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Journal Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Listening on Journal Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Apply Kernel Variables...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Journal Service...
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Journal Service.
    Jan 05 23:04:48 localhost.lan kernel: FS-Cache: Loaded
    Jan 05 23:04:48 localhost.lan kernel: RPC: Registered named UNIX socket transport module.
    Jan 05 23:04:48 localhost.lan kernel: RPC: Registered udp transport module.
    Jan 05 23:04:48 localhost.lan kernel: RPC: Registered tcp transport module.
    Jan 05 23:04:48 localhost.lan kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
    Jan 05 23:04:48 localhost.lan kernel: FS-Cache: Netfs 'nfs' registered for caching
    Jan 05 23:04:48 localhost.lan systemd-journal[137]: Journal started
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Setup Virtual Console...
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounting Debug File System...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Load Kernel Modules...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting udev Kernel Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Listening on udev Kernel Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting udev Control Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Listening on udev Control Socket.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting udev Coldplug all Devices...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Create list of required static device nodes for the current kernel...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 05 23:04:48 localhost.lan systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Set Up Additional Binary Formats.
    Jan 05 23:04:48 localhost.lan systemd-modules-load[140]: Inserted module 'nfs'
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounting POSIX Message Queue File System...
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounting Huge Pages File System...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Encrypted Volumes.
    Jan 05 23:04:48 localhost.lan systemd[1]: Reached target Encrypted Volumes.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounting Temporary Directory...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 05 23:04:48 localhost.lan systemd[1]: Expecting device dev-disk-by\x2dlabel-system.device...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Root Slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Created slice Root Slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting User and Session Slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Created slice User and Session Slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting System Slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Created slice System Slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting system-wpa_supplicant\x2dnl80211.slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Created slice system-wpa_supplicant\x2dnl80211.slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting system-getty.slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Created slice system-getty.slice.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Slices.
    Jan 05 23:04:48 localhost.lan systemd[1]: Reached target Slices.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Apply Kernel Variables.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Setup Virtual Console.
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounted Debug File System.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Load Kernel Modules.
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounted POSIX Message Queue File System.
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounted Huge Pages File System.
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounted Temporary Directory.
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounting Configuration File System...
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounted FUSE Control File System.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Create list of required static device nodes for the current kernel.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Create static device nodes in /dev...
    Jan 05 23:04:48 localhost.lan systemd[1]: Mounted Configuration File System.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started udev Coldplug all Devices.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Load/Save Random Seed...
    Jan 05 23:04:48 localhost.lan kernel: btrfs: use lzo compression
    Jan 05 23:04:48 localhost.lan kernel: btrfs: disk space caching is enabled
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Create static device nodes in /dev.
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting udev Kernel Device Manager...
    Jan 05 23:04:48 localhost.lan systemd[1]: Starting Local File Systems (Pre).
    Jan 05 23:04:48 localhost.lan systemd[1]: Reached target Local File Systems (Pre).
    Jan 05 23:04:48 localhost.lan systemd[1]: Started Load/Save Random Seed.
    Jan 05 23:04:48 localhost.lan systemd[1]: Started udev Kernel Device Manager.
    Jan 05 23:04:48 localhost.lan systemd-udevd[171]: starting version 208
    Jan 05 23:04:48 localhost.lan kernel: Switched to clocksource tsc
    Jan 05 23:04:48 localhost.lan kernel: ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130725/utaddress-251)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 05 23:04:48 localhost.lan kernel: ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 05 23:04:48 localhost.lan kernel: ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 05 23:04:48 localhost.lan kernel: ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 05 23:04:48 localhost.lan kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Jan 05 23:04:48 localhost.lan kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Requesting acpi_cpufreq
    Jan 05 23:04:48 localhost.lan kernel: mei_me 0000:00:16.0: setting latency timer to 64
    Jan 05 23:04:48 localhost.lan kernel: mei_me 0000:00:16.0: irq 41 for MSI/MSI-X
    Jan 05 23:04:48 localhost.lan kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Lid Switch [LID0]
    Jan 05 23:04:48 localhost.lan kernel: ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130725/utaddress-251)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jan 05 23:04:48 localhost.lan kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Sleep Button [SLPB]
    Jan 05 23:04:48 localhost.lan kernel: [drm] Initialized drm 1.1.0 20060810
    Jan 05 23:04:48 localhost.lan kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Power Button [PWRF]
    Jan 05 23:04:48 localhost.lan kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Thermal Zone [TZS0] (52 C)
    Jan 05 23:04:48 localhost.lan kernel: thermal LNXTHERM:01: registered as thermal_zone1
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Thermal Zone [TZS1] (42 C)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: AC Adapter [ADP1] (on-line)
    Jan 05 23:04:48 localhost.lan kernel: ACPI: Battery Slot [BAT0] (battery present)
    Jan 05 23:04:48 localhost.lan kernel: snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    Jan 05 23:04:48 localhost.lan kernel: input: Ideapad extra buttons as /devices/platform/ideapad/input/input7
    Jan 05 23:04:48 localhost.lan kernel: wmi: Mapper loaded
    Jan 05 23:04:48 localhost.lan kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input8
    Jan 05 23:04:48 localhost.lan kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Jan 05 23:04:48 localhost.lan kernel: r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    Jan 05 23:04:48 localhost.lan mtp-probe[197]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3"
    Jan 05 23:04:48 localhost.lan kernel: pcieport 0000:00:1c.3: driver skip pci_set_master, fix it!
    Jan 05 23:04:48 localhost.lan mtp-probe[197]: bus: 1, device: 4 was not an MTP device
    Jan 05 23:04:48 localhost.lan mtp-probe[200]: checking bus 1, device 5: "/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5"
    Jan 05 23:04:48 localhost.lan kernel: r8169 0000:03:00.0: irq 43 for MSI/MSI-X
    Jan 05 23:04:48 localhost.lan kernel: r8169 0000:03:00.0 eth0: RTL8168e/8111e at 0xffffc90006802000, f0:de:f1:9a:39:ca, XID 0c200000 IRQ 43
    Jan 05 23:04:48 localhost.lan kernel: r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    Jan 05 23:04:48 localhost.lan kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    Jan 05 23:04:48 localhost.lan kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    Jan 05 23:04:48 localhost.lan kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    Jan 05 23:04:48 localhost.lan kernel: [drm] Memory usable by graphics device = 2048M
    Jan 05 23:04:48 localhost.lan kernel: i915 0000:00:02.0: setting latency timer to 64
    Jan 05 23:04:48 localhost.lan mtp-probe[200]: bus: 1, device: 5 was not an MTP device
    Jan 05 23:04:48 localhost.lan kernel: cfg80211: Calling CRDA to update world regulatory domain
    Jan 05 23:04:48 localhost.lan kernel: Bluetooth: Core ver 2.16
    Jan 05 23:04:48 localhost.lan ker

    I have a feeling that the difference you are seeing is explained by things not running one at a time, but multiple services start at the same time. So you could be using your desktop, but it's still technically starting up in the background. This is complicated by dependencies, where one service may start another which may or may not run in parallel to the others.

  • [Systemd] Very long boot time

    I have a very long boot time with my Arch.
    Startup finished in 828766ms (kernel) + 63430ms (userspace) = 892196ms
    Especially after login into gnome, it takes quite a while until the desktop is visible. In meanwhile, I only see the wallpaper.  Does anyone has a suggestion how to fix that?
    Linux hostname 3.6.6-1-ARCH #1 SMP PREEMPT Mon Nov 5 11:57:22 CET 2012 x86_64 GNU/Linux
    systemd-analzye blame shows
    18722ms colord.service
    16584ms home.mount
    12666ms plymouth-start.service
    11550ms boot.mount
    11350ms var.mount
    7604ms NetworkManager.service
    7261ms chrony.service
    1985ms wpa_supplicant.service
    1606ms systemd-modules-load.service
    1350ms systemd-tmpfiles-setup.service
    1202ms dev-hugepages.mount
    1189ms dev-mqueue.mount
    1080ms sys-kernel-debug.mount
    987ms systemd-udev-trigger.service
    946ms systemd-udevd.service
    879ms systemd-vconsole-setup.service
    495ms bluetooth.service
    376ms polkit.service
    358ms crashplan.service
    348ms systemd-readahead-replay.service
    346ms lm_sensors.service
    337ms upower.service
    331ms systemd-readahead-collect.service
    311ms systemd-logind.service
    289ms lvmetad.service
    286ms systemd-binfmt.service
    242ms cpupower.service
    206ms systemd-remount-fs.service
    174ms gdm.service
    140ms proc-sys-fs-binfmt_misc.mount
    94ms udisks2.service
    93ms rtkit-daemon.service
    87ms rc-local.service
    86ms systemd-user-sessions.service
    53ms systemd-sysctl.service
    24ms accounts-daemon.service
    2ms tmp.mount
    1ms sys-fs-fuse-connections.mount
    Dmesg shows:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.6.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Mon Nov 5 11:57:22 CET 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/cryptpool-cryptroot ro quiet splash cryptdevice=/dev/sda2:cryptvol init=/usr/lib/systemd/systemd radeon.modeset=1 pcie_aspm=force
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009c3ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009c400-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d2000-0x00000000000d3fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c727bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c727c000-0x00000000c7281fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000c7282000-0x00000000c73ebfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c73ec000-0x00000000c740efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000c740f000-0x00000000c746efff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c746f000-0x00000000c746ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000c7470000-0x00000000c74f0fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000c74f1000-0x00000000c770efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000c770f000-0x00000000c7717fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c7718000-0x00000000c771efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000c771f000-0x00000000c7770fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c7771000-0x00000000c779efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000c779f000-0x00000000c77e1fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c77e2000-0x00000000c77fefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000c77ff000-0x00000000c77fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c7800000-0x00000000c7ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f1004000-0x00000000f1004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000237ffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: Dell Inc. Studio XPS 1645/0Y517R, BIOS A13 04/01/2011
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x238000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-D3FFF write-through
    [ 0.000000] D4000-D7FFF uncachable
    [ 0.000000] D8000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0C0000000 mask FF8000000 write-back
    [ 0.000000] 4 base 100000000 mask F00000000 write-back
    [ 0.000000] 5 base 200000000 mask FE0000000 write-back
    [ 0.000000] 6 base 220000000 mask FF0000000 write-back
    [ 0.000000] 7 base 230000000 mask FF8000000 write-back
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xc7800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f7360-0x000f736f] mapped at [ffff8800000f7360]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xc77fffff]
    [ 0.000000] [mem 0x00000000-0xc77fffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xc77fffff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x237ffffff]
    [ 0.000000] [mem 0x100000000-0x237ffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x237ffffff @ [mem 0xc77dc000-0xc77e1fff]
    [ 0.000000] RAMDISK: [mem 0x376e0000-0x37b67fff]
    [ 0.000000] ACPI: RSDP 00000000000f7280 00024 (v02 PTLTD )
    [ 0.000000] ACPI: XSDT 00000000c77f4285 00064 (v01 DELL QA09 06040000 LTP 00000000)
    [ 0.000000] ACPI: FACP 00000000c77e4000 000F4 (v03 INTEL CRESTLNE 06040000 ALAN 00000001)
    [ 0.000000] ACPI: DSDT 00000000c77e5000 0A839 (v02 Intel CALPELLA 06040000 INTL 20060912)
    [ 0.000000] ACPI: FACS 00000000c779bfc0 00040
    [ 0.000000] ACPI: HPET 00000000c77fecc2 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: MCFG 00000000c77fecfa 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: APIC 00000000c77fed36 000BC (v01 PTLTD ? APIC 06040000 LTP 00000000)
    [ 0.000000] ACPI: BOOT 00000000c77fedf2 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SLIC 00000000c77fee1a 00176 (v01 DELL QA09 06040000 LTP 00000000)
    [ 0.000000] ACPI: OSFR 00000000c77fef90 00070 (v01 DELL DELL 06040000 ASL 00000061)
    [ 0.000000] ACPI: SSDT 00000000c77e3000 009F1 (v01 PmRef CpuPm 00003000 INTL 20060912)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x0000000237ffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x237ffffff]
    [ 0.000000] NODE_DATA [mem 0x237ffc000-0x237ffffff]
    [ 0.000000] [ffffea0000000000-ffffea0008dfffff] PMD -> [ffff88022f600000-ffff8802375fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x237ffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009bfff]
    [ 0.000000] node 0: [mem 0x00100000-0xc727bfff]
    [ 0.000000] node 0: [mem 0xc7282000-0xc73ebfff]
    [ 0.000000] node 0: [mem 0xc740f000-0xc746efff]
    [ 0.000000] node 0: [mem 0xc770f000-0xc7717fff]
    [ 0.000000] node 0: [mem 0xc771f000-0xc7770fff]
    [ 0.000000] node 0: [mem 0xc779f000-0xc77e1fff]
    [ 0.000000] node 0: [mem 0xc77ff000-0xc77fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x237ffffff]
    [ 0.000000] On node 0 totalpages: 2094193
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3910 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 795941 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19968 pages used for memmap
    [ 0.000000] Normal zone: 1257984 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009c000 - 000000000009d000
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    [ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000c727c000 - 00000000c7282000
    [ 0.000000] PM: Registered nosave memory: 00000000c73ec000 - 00000000c740f000
    [ 0.000000] PM: Registered nosave memory: 00000000c746f000 - 00000000c7470000
    [ 0.000000] PM: Registered nosave memory: 00000000c7470000 - 00000000c74f1000
    [ 0.000000] PM: Registered nosave memory: 00000000c74f1000 - 00000000c770f000
    [ 0.000000] PM: Registered nosave memory: 00000000c7718000 - 00000000c771f000
    [ 0.000000] PM: Registered nosave memory: 00000000c7771000 - 00000000c779f000
    [ 0.000000] PM: Registered nosave memory: 00000000c77e2000 - 00000000c77ff000
    [ 0.000000] PM: Registered nosave memory: 00000000c7800000 - 00000000c8000000
    [ 0.000000] PM: Registered nosave memory: 00000000c8000000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f1004000
    [ 0.000000] PM: Registered nosave memory: 00000000f1004000 - 00000000f1005000
    [ 0.000000] PM: Registered nosave memory: 00000000f1005000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] e820: [mem 0xc8000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff880237c00000 s84608 r8192 d21888 u262144
    [ 0.000000] pcpu-alloc: s84608 r8192 d21888 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2057835
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/cryptpool-cryptroot ro quiet splash cryptdevice=/dev/sda2:cryptvol init=/usr/lib/systemd/systemd radeon.modeset=1 pcie_aspm=force
    [ 0.000000] PCIe ASPM is forcibly enabled
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 8162844k/9306112k available (4727k kernel code, 929340k absent, 213928k reserved, 4143k data, 768k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:4352 nr_irqs:744 16
    [ 0.000000] Extended CMOS year: 2000
    [ 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.003333] tsc: Detected 1596.068 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3193.14 BogoMIPS (lpj=5320226)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000044] Security Framework initialized
    [ 0.000048] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000771] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.003000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003923] Mount-cache hash table entries: 256
    [ 0.004173] Initializing cgroup subsys cpuacct
    [ 0.004176] Initializing cgroup subsys memory
    [ 0.004184] Initializing cgroup subsys devices
    [ 0.004186] Initializing cgroup subsys freezer
    [ 0.004188] Initializing cgroup subsys net_cls
    [ 0.004189] Initializing cgroup subsys blkio
    [ 0.004216] CPU: Physical Processor ID: 0
    [ 0.004217] CPU: Processor Core ID: 0
    [ 0.004222] mce: CPU supports 9 MCE banks
    [ 0.004234] CPU0: Thermal monitoring enabled (TM1)
    [ 0.004241] process: using mwait in idle threads
    [ 0.004246] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift is 0x6
    [ 0.005569] ACPI: Core revision 20120711
    [ 0.021739] ftrace: allocating 18347 entries in 72 pages
    [ 0.034527] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.067503] smpboot: CPU0: Intel(R) Core(TM) i7 CPU Q 720 @ 1.60GHz stepping 05
    [ 0.172651] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
    [ 0.172658] perf_event_intel: CPU erratum AAJ80 worked around
    [ 0.172659] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    [ 0.172661] ... version: 3
    [ 0.172662] ... bit width: 48
    [ 0.172663] ... generic registers: 4
    [ 0.172665] ... value mask: 0000ffffffffffff
    [ 0.172666] ... max period: 000000007fffffff
    [ 0.172667] ... fixed-purpose events: 3
    [ 0.172669] ... event mask: 000000070000000f
    [ 0.199435] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.212646] smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 OK
    [ 0.379170] Brought up 8 CPUs
    [ 0.379175] smpboot: Total of 8 processors activated (25547.13 BogoMIPS)
    [ 0.385494] devtmpfs: initialized
    [ 0.387562] PM: Registering ACPI NVS region [mem 0xc7470000-0xc74f0fff] (528384 bytes)
    [ 0.387574] PM: Registering ACPI NVS region [mem 0xc7771000-0xc779efff] (188416 bytes)
    [ 0.388860] NET: Registered protocol family 16
    [ 0.389041] ACPI: bus type pci registered
    [ 0.389136] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.389139] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.432597] PCI: Using configuration type 1 for base access
    [ 0.433425] bio: create slab <bio-0> at 0
    [ 0.433488] ACPI: Added _OSI(Module Device)
    [ 0.433490] ACPI: Added _OSI(Processor Device)
    [ 0.433491] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.433493] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.435530] ACPI: EC: Look up EC in DSDT
    [ 0.437476] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.442713] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.443644] ACPI: SSDT 00000000c771aa98 002E8 (v01 PmRef Cpu0Ist 00003000 INTL 20060912)
    [ 0.444142] ACPI: Dynamic OEM Table Load:
    [ 0.444145] ACPI: SSDT (null) 002E8 (v01 PmRef Cpu0Ist 00003000 INTL 20060912)
    [ 0.444332] ACPI: SSDT 00000000c7719018 008B0 (v01 PmRef Cpu0Cst 00003001 INTL 20060912)
    [ 0.444806] ACPI: Dynamic OEM Table Load:
    [ 0.444809] ACPI: SSDT (null) 008B0 (v01 PmRef Cpu0Cst 00003001 INTL 20060912)
    [ 0.445201] ACPI: SSDT 00000000c771a718 00303 (v01 PmRef ApIst 00003000 INTL 20060912)
    [ 0.445749] ACPI: Dynamic OEM Table Load:
    [ 0.445753] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20060912)
    [ 0.445922] ACPI: SSDT 00000000c7718d98 00119 (v01 PmRef ApCst 00003000 INTL 20060912)
    [ 0.446432] ACPI: Dynamic OEM Table Load:
    [ 0.446435] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20060912)
    [ 0.448062] ACPI: Interpreter enabled
    [ 0.448066] ACPI: (supports S0 S3 S4 S5)
    [ 0.448089] ACPI: Using IOAPIC for interrupt routing
    [ 0.448593] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.455392] ACPI: Power Resource [FN00] (off)
    [ 0.455494] ACPI: Power Resource [FN01] (off)
    [ 0.456110] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 0.456339] ACPI: No dock devices found.
    [ 0.456343] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.456813] \_SB_.PCI0:_OSC invalid UUID
    [ 0.456815] _OSC request data:1 8 1f
    [ 0.456820] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [ 0.457600] PCI host bridge to bus 0000:00
    [ 0.457604] pci_bus 0000:00: busn_res: [bus 00-fe] is inserted under domain [bus 00-ff]
    [ 0.457607] pci_bus 0000:00: root bus resource [bus 00-fe]
    [ 0.457610] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.457612] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.457615] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.457617] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.457619] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.457622] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.457624] pci_bus 0000:00: root bus resource [mem 0xc8000000-0xdfffffff]
    [ 0.457627] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 0.457638] pci 0000:00:00.0: [8086:d132] type 00 class 0x060000
    [ 0.457700] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
    [ 0.457759] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
    [ 0.457783] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
    [ 0.457850] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
    [ 0.457917] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
    [ 0.457983] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
    [ 0.458043] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
    [ 0.458094] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
    [ 0.458170] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
    [ 0.458194] pci 0000:00:1a.0: reg 10: [mem 0xf1005800-0xf1005bff]
    [ 0.458289] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.458318] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
    [ 0.458335] pci 0000:00:1b.0: reg 10: [mem 0xf1000000-0xf1003fff 64bit]
    [ 0.458409] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.458432] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
    [ 0.458508] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.458533] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
    [ 0.458609] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.458635] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
    [ 0.458710] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.458735] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
    [ 0.458810] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.458835] pci 0000:00:1c.5: [8086:3b4c] type 01 class 0x060400
    [ 0.458911] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.458943] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
    [ 0.458965] pci 0000:00:1d.0: reg 10: [mem 0xf1005c00-0xf1005fff]
    [ 0.459066] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.459092] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.459161] pci 0000:00:1f.0: [8086:3b03] type 00 class 0x060100
    [ 0.459292] pci 0000:00:1f.2: [8086:3b2f] type 00 class 0x010601
    [ 0.459313] pci 0000:00:1f.2: reg 10: [io 0x1830-0x1837]
    [ 0.459322] pci 0000:00:1f.2: reg 14: [io 0x1824-0x1827]
    [ 0.459331] pci 0000:00:1f.2: reg 18: [io 0x1828-0x182f]
    [ 0.459340] pci 0000:00:1f.2: reg 1c: [io 0x1820-0x1823]
    [ 0.459350] pci 0000:00:1f.2: reg 20: [io 0x1800-0x181f]
    [ 0.459359] pci 0000:00:1f.2: reg 24: [mem 0xf1005000-0xf10057ff]
    [ 0.459410] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.459430] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
    [ 0.459446] pci 0000:00:1f.3: reg 10: [mem 0xf1006000-0xf10060ff 64bit]
    [ 0.459469] pci 0000:00:1f.3: reg 20: [io 0x1840-0x185f]
    [ 0.459533] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-fe]
    [ 0.459547] pci 0000:02:00.0: [1002:9488] type 00 class 0x030000
    [ 0.459559] pci 0000:02:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
    [ 0.459568] pci 0000:02:00.0: reg 14: [io 0x2000-0x20ff]
    [ 0.459577] pci 0000:02:00.0: reg 18: [mem 0xcfef0000-0xcfefffff]
    [ 0.459605] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.459642] pci 0000:02:00.0: supports D1 D2
    [ 0.459664] pci 0000:02:00.1: [1002:aa38] type 00 class 0x040300
    [ 0.459676] pci 0000:02:00.1: reg 10: [mem 0xcfeec000-0xcfeeffff]
    [ 0.459749] pci 0000:02:00.1: supports D1 D2
    [ 0.469037] pci 0000:00:03.0: PCI bridge to [bus 02]
    [ 0.469045] pci 0000:00:03.0: bridge window [io 0x2000-0x2fff]
    [ 0.469052] pci 0000:00:03.0: bridge window [mem 0xcfe00000-0xcfefffff]
    [ 0.469061] pci 0000:00:03.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.469117] pci_bus 0000:03: busn_res: [bus 03-04] is inserted under [bus 00-fe]
    [ 0.469121] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
    [ 0.469126] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.469130] pci 0000:00:1c.0: bridge window [mem 0xf0800000-0xf08fffff]
    [ 0.469137] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
    [ 0.469179] pci_bus 0000:05: busn_res: [bus 05-06] is inserted under [bus 00-fe]
    [ 0.469247] pci 0000:05:00.0: [8086:4235] type 00 class 0x028000
    [ 0.469385] pci 0000:05:00.0: reg 10: [mem 0xf0900000-0xf0901fff 64bit]
    [ 0.470080] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
    [ 0.470313] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
    [ 0.470317] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    [ 0.470322] pci 0000:00:1c.1: bridge window [mem 0xf0900000-0xf09fffff]
    [ 0.470329] pci 0000:00:1c.1: bridge window [mem 0xf0200000-0xf03fffff 64bit pref]
    [ 0.470371] pci_bus 0000:07: busn_res: [bus 07-08] is inserted under [bus 00-fe]
    [ 0.470375] pci 0000:00:1c.3: PCI bridge to [bus 07-08]
    [ 0.470380] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff]
    [ 0.470384] pci 0000:00:1c.3: bridge window [mem 0xf0a00000-0xf0afffff]
    [ 0.470391] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
    [ 0.470433] pci_bus 0000:09: busn_res: [bus 09-0a] is inserted under [bus 00-fe]
    [ 0.470458] pci 0000:09:00.0: [1180:e822] type 00 class 0x080500
    [ 0.470478] pci 0000:09:00.0: reg 10: [mem 0xf0b00000-0xf0b000ff]
    [ 0.470612] pci 0000:09:00.0: supports D1 D2
    [ 0.470614] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.470664] pci 0000:09:00.1: [1180:e230] type 00 class 0x088000
    [ 0.470683] pci 0000:09:00.1: reg 10: [mem 0xf0c00800-0xf0c008ff]
    [ 0.470817] pci 0000:09:00.1: supports D1 D2
    [ 0.470819] pci 0000:09:00.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.470862] pci 0000:09:00.2: [1180:e852] type 00 class 0x088000
    [ 0.470882] pci 0000:09:00.2: reg 10: [mem 0xf0c00c00-0xf0c00cff]
    [ 0.471016] pci 0000:09:00.2: supports D1 D2
    [ 0.471018] pci 0000:09:00.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.471061] pci 0000:09:00.3: [1180:e832] type 00 class 0x0c0010
    [ 0.471080] pci 0000:09:00.3: reg 10: [mem 0xf0c00000-0xf0c007ff]
    [ 0.471214] pci 0000:09:00.3: supports D1 D2
    [ 0.471216] pci 0000:09:00.3: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.479052] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
    [ 0.479060] pci 0000:00:1c.4: bridge window [io 0x6000-0x6fff]
    [ 0.479067] pci 0000:00:1c.4: bridge window [mem 0xf0b00000-0xf0cfffff]
    [ 0.479077] pci 0000:00:1c.4: bridge window [mem 0xf0600000-0xf07fffff 64bit pref]
    [ 0.479131] pci_bus 0000:0b: busn_res: [bus 0b] is inserted under [bus 00-fe]
    [ 0.479319] pci 0000:0b:00.0: [14e4:1698] type 00 class 0x020000
    [ 0.479351] pci 0000:0b:00.0: reg 10: [mem 0xf0d00000-0xf0d0ffff 64bit]
    [ 0.479523] pci 0000:0b:00.0: PME# supported from D3hot D3cold
    [ 0.479582] pci 0000:00:1c.5: PCI bridge to [bus 0b]
    [ 0.479589] pci 0000:00:1c.5: bridge window [mem 0xf0d00000-0xf0dfffff]
    [ 0.479616] pci_bus 0000:0c: busn_res: [bus 0c] is inserted under [bus 00-fe]
    [ 0.479664] pci 0000:00:1e.0: PCI bridge to [bus 0c] (subtractive decode)
    [ 0.479675] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.479677] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.479680] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.479682] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.479685] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.479687] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.479690] pci 0000:00:1e.0: bridge window [mem 0xc8000000-0xdfffffff] (subtractive decode)
    [ 0.479692] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 0.479724] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.479928] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
    [ 0.479968] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    [ 0.480099] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.480160] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.480223] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    [ 0.480283] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    [ 0.480343] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.480435] \_SB_.PCI0:_OSC invalid UUID
    [ 0.480437] _OSC request data:1 1f 1f
    [ 0.480441] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.480443] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.487467] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
    [ 0.487507] PCI host bridge to bus 0000:ff
    [ 0.487511] pci_bus 0000:ff: busn_res: [bus ff] is inserted under domain [bus 00-ff]
    [ 0.487513] pci_bus 0000:ff: root bus resource [bus ff]
    [ 0.487521] pci 0000:ff:00.0: [8086:2c52] type 00 class 0x060000
    [ 0.487545] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
    [ 0.487572] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
    [ 0.487594] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
    [ 0.487622] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
    [ 0.487644] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
    [ 0.487667] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
    [ 0.487691] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
    [ 0.487714] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
    [ 0.487736] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
    [ 0.487758] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
    [ 0.487783] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
    [ 0.487807] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
    [ 0.487829] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
    [ 0.487852] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
    [ 0.487895] pci0000:ff: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.487897] pci0000:ff: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.488488] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    [ 0.488544] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.488601] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.488655] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.488711] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.488765] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.488819] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *7 10 12 14 15)
    [ 0.488871] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    [ 0.488974] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.488983] vgaarb: loaded
    [ 0.488985] vgaarb: bridge control possible 0000:02:00.0
    [ 0.489035] PCI: Using ACPI for IRQ routing
    [ 0.495825] PCI: pci_cache_line_size set to 64 bytes
    [ 0.496142] e820: reserve RAM buffer [mem 0x0009c400-0x0009ffff]
    [ 0.496144] e820: reserve RAM buffer [mem 0xc727c000-0xc7ffffff]
    [ 0.496149] e820: reserve RAM buffer [mem 0xc73ec000-0xc7ffffff]
    [ 0.496152] e820: reserve RAM buffer [mem 0xc746f000-0xc7ffffff]
    [ 0.496156] e820: reserve RAM buffer [mem 0xc7718000-0xc7ffffff]
    [ 0.496159] e820: reserve RAM buffer [mem 0xc7771000-0xc7ffffff]
    [ 0.496161] e820: reserve RAM buffer [mem 0xc77e2000-0xc7ffffff]
    [ 0.496163] e820: reserve RAM buffer [mem 0xc7800000-0xc7ffffff]
    [ 0.496267] NetLabel: Initializing
    [ 0.496269] NetLabel: domain hash size = 128
    [ 0.496270] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.496283] NetLabel: unlabeled traffic allowed by default
    [ 0.496337] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
    [ 0.496344] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
    [ 0.496351] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.499146] hpet: hpet2 irq 40 for MSI
    [ 0.502434] hpet: hpet3 irq 41 for MSI
    [ 0.505694] hpet: hpet4 irq 42 for MSI
    [ 0.505793] hpet: hpet5 irq 43 for MSI
    [ 0.509214] hpet: hpet6 irq 44 for MSI
    [ 0.522618] Switching to clocksource hpet
    [ 0.529334] pnp: PnP ACPI init
    [ 0.529354] ACPI: bus type pnp registered
    [ 0.529782] pnp 00:00: [bus 00-fe]
    [ 0.529786] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.529789] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.529791] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.529794] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.529796] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.529799] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.529801] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.529803] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.529806] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.529808] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.529811] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.529813] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.529815] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.529820] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.529822] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.529825] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.529827] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.529829] pnp 00:00: [mem 0xc8000000-0xdfffffff window]
    [ 0.529832] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
    [ 0.529834] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 0.529903] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.529952] pnp 00:01: [io 0x0000-0x001f]
    [ 0.529954] pnp 00:01: [io 0x0081-0x0091]
    [ 0.529957] pnp 00:01: [io 0x0093-0x009f]
    [ 0.529959] pnp 00:01: [io 0x00c0-0x00df]
    [ 0.529961] pnp 00:01: [dma 4]
    [ 0.529991] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.530001] pnp 00:02: [mem 0xff000000-0xffffffff]
    [ 0.530030] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.530116] pnp 00:03: [irq 0 disabled]
    [ 0.530125] pnp 00:03: [irq 8]
    [ 0.530128] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.530162] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.530174] pnp 00:04: [io 0x00f0]
    [ 0.530181] pnp 00:04: [irq 13]
    [ 0.530207] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.530221] pnp 00:05: [io 0x002e-0x002f]
    [ 0.530223] pnp 00:05: [io 0x004e-0x004f]
    [ 0.530225] pnp 00:05: [io 0x0061]
    [ 0.530227] pnp 00:05: [io 0x0063]
    [ 0.530229] pnp 00:05: [io 0x0065]
    [ 0.530231] pnp 00:05: [io 0x0067]
    [ 0.530234] pnp 00:05: [io 0x0068]
    [ 0.530236] pnp 00:05: [io 0x006c]
    [ 0.530238] pnp 00:05: [io 0x0070]
    [ 0.530240] pnp 00:05: [io 0x0080]
    [ 0.530242] pnp 00:05: [io 0x0092]
    [ 0.530244] pnp 00:05: [io 0x00b2-0x00b3]
    [ 0.530246] pnp 00:05: [io 0x0680-0x069f]
    [ 0.530249] pnp 00:05: [io 0x0500-0x050f]
    [ 0.530251] pnp 00:05: [io 0xffff]
    [ 0.530253] pnp 00:05: [io 0xffff]
    [ 0.530255] pnp 00:05: [io 0x0400-0x047f]
    [ 0.530257] pnp 00:05: [io 0x1180-0x11ff]
    [ 0.530259] pnp 00:05: [io 0x164e-0x164f]
    [ 0.530262] pnp 00:05: [io 0xfe00]
    [ 0.530330] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 0.530333] system 00:05: [io 0x0500-0x050f] has been reserved
    [ 0.530336] system 00:05: [io 0xffff] has been reserved
    [ 0.530339] system 00:05: [io 0xffff] has been reserved
    [ 0.530342] system 00:05: [io 0x0400-0x047f] has been reserved
    [ 0.530345] system 00:05: [io 0x1180-0x11ff] has been reserved
    [ 0.530347] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 0.530352] system 00:05: [io 0xfe00] has been reserved
    [ 0.530356] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.530374] pnp 00:06: [io 0x0300-0x0307]
    [ 0.530381] pnp 00:06: [irq 10]
    [ 0.530410] pnp 00:06: Plug and Play ACPI device, IDs ITE8708 (active)
    [ 0.530445] pnp 00:07: [io 0x0070-0x0077]
    [ 0.530476] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.530488] pnp 00:08: [io 0x0060]
    [ 0.530492] pnp 00:08: [io 0x0064]
    [ 0.530499] pnp 00:08: [irq 1]
    [ 0.530526] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.530539] pnp 00:09: [irq 12]
    [ 0.530569] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active)
    [ 0.530934] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
    [ 0.530937] pnp 00:0a: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.530940] pnp 00:0a: [mem 0xfed1b000-0xfed1bfff]
    [ 0.530942] pnp 00:0a: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.530944] pnp 00:0a: [mem 0xe0000000-0xefffffff]
    [ 0.530947] pnp 00:0a: [mem 0xf1004000-0xf1004fff]
    [ 0.530949] pnp 00:0a: [mem 0xc8000000-0xc8000fff]
    [ 0.530951] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
    [ 0.530954] pnp 00:0a: [mem 0xfed90000-0xfed8ffff disabled]
    [ 0.530956] pnp 00:0a: [mem 0xfed40000-0xfed44fff]
    [ 0.530958] pnp 00:0a: [mem 0xfed45000-0xfed8ffff]
    [ 0.530960] pnp 00:0a: [mem 0xff000000-0xffffffff]
    [ 0.530963] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
    [ 0.531049] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.531052] system 00:0a: [mem 0xfed1b000-0xfed1bfff] has been reserved
    [ 0.531055] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.531058] system 00:0a: [mem 0xf1004000-0xf1004fff] has been reserved
    [ 0.531061] system 00:0a: [mem 0xc8000000-0xc8000fff] has been reserved
    [ 0.531064] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.531067] system 00:0a: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.531070] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.531072] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.531075] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.531080] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.532133] pnp 00:0b: [bus ff]
    [ 0.532197] pnp 00:0b: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.532211] pnp: PnP ACPI: found 12 devices
    [ 0.532212] ACPI: ACPI bus type pnp unregistered
    [ 0.539150] pci 0000:00:1c.5: bridge window [io 0x1000-0x0fff] to [bus 0b] add_size 1000
    [ 0.539155] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000
    [ 0.539169] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.539172] pci 0000:00:1c.5: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.539178] pci 0000:00:1c.5: BAR 15: assigned [mem 0xc8100000-0xc82fffff 64bit pref]
    [ 0.539182] pci 0000:00:1c.5: BAR 13: assigned [io 0x7000-0x7fff]
    [ 0.539186] pci 0000:02:00.0: BAR 6: assigned [mem 0xcfe00000-0xcfe1ffff pref]
    [ 0.539190] pci 0000:00:03.0: PCI bridge to [bus 02]
    [ 0.539193] pci 0000:00:03.0: bridge window [io 0x2000-0x2fff]
    [ 0.539198] pci 0000:00:03.0: bridge window [mem 0xcfe00000-0xcfefffff]
    [ 0.539202] pci 0000:00:03.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.539207] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
    [ 0.539211] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.539217] pci 0000:00:1c.0: bridge window [mem 0xf0800000-0xf08fffff]
    [ 0.539221] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
    [ 0.539228] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
    [ 0.539232] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    [ 0.539237] pci 0000:00:1c.1: bridge window [mem 0xf0900000-0xf09fffff]
    [ 0.539241] pci 0000:00:1c.1: bridge window [mem 0xf0200000-0xf03fffff 64bit pref]
    [ 0.539248] pci 0000:00:1c.3: PCI bridge to [bus 07-08]
    [ 0.539252] pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff]
    [ 0.539257] pci 0000:00:1c.3: bridge window [mem 0xf0a00000-0xf0afffff]
    [ 0.539262] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
    [ 0.539269] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
    [ 0.539273] pci 0000:00:1c.4: bridge window [io 0x6000-0x6fff]
    [ 0.539278] pci 0000:00:1c.4: bridge window [mem 0xf0b00000-0xf0cfffff]
    [ 0.539283] pci 0000:00:1c.4: bridge window [mem 0xf0600000-0xf07fffff 64bit pref]
    [ 0.539290] pci 0000:00:1c.5: PCI bridge to [bus 0b]
    [ 0.539293] pci 0000:00:1c.5: bridge window [io 0x7000-0x7fff]
    [ 0.539299] pci 0000:00:1c.5: bridge window [mem 0xf0d00000-0xf0dfffff]
    [ 0.539304] pci 0000:00:1c.5: bridge window [mem 0xc8100000-0xc82fffff 64bit pref]
    [ 0.539310] pci 0000:00:1e.0: PCI bridge to [bus 0c]
    [ 0.539366] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.539371] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.539373] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.539376] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.539378] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.539381] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.539383] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.539385] pci_bus 0000:00: resource 10 [mem 0xc8000000-0xdfffffff]
    [ 0.539398] pci_bus 0000:00: resource 11 [mem 0xf0000000-0xfebfffff]
    [ 0.539401] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.539403] pci_bus 0000:02: resource 1 [mem 0xcfe00000-0xcfefffff]
    [ 0.539406] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.539408] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    [ 0.539411] pci_bus 0000:03: resource 1 [mem 0xf0800000-0xf08fffff]
    [ 0.539413] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf01fffff 64bit pref]
    [ 0.539416] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff]
    [ 0.539418] pci_bus 0000:05: resource 1 [mem 0xf0900000-0xf09fffff]
    [ 0.539420] pci_bus 0000:05: resource 2 [mem 0xf0200000-0xf03fffff 64bit pref]
    [ 0.539423] pci_bus 0000:07: resource 0 [io 0x5000-0x5fff]
    [ 0.539425] pci_bus 0000:07: resource 1 [mem 0xf0a00000-0xf0afffff]
    [ 0.539428] pci_bus 0000:07: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
    [ 0.539430] pci_bus 0000:09: resource 0 [io 0x6000-0x6fff]
    [ 0.539433] pci_bus 0000:09: resource 1 [mem 0xf0b00000-0xf0cfffff]
    [ 0.539435] pci_bus 0000:09: resource 2 [mem 0xf0600000-0xf07fffff 64bit pref]
    [ 0.539438] pci_bus 0000:0b: resource 0 [io 0x7000-0x7fff]
    [ 0.539440] pci_bus 0000:0b: resource 1 [mem 0xf0d00000-0xf0dfffff]
    [ 0.539443] pci_bus 0000:0b: resource 2 [mem 0xc8100000-0xc82fffff 64bit pref]
    [ 0.539445] pci_bus 0000:0c: resource 4 [io 0x0000-0x0cf7]
    [ 0.539448] pci_bus 0000:0c: resource 5 [io 0x0d00-0xffff]
    [ 0.539450] pci_bus 0000:0c: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.539452] pci_bus 0000:0c: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.539455] pci_bus 0000:0c: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.539457] pci_bus 0000:0c: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.539460] pci_bus 0000:0c: resource 10 [mem 0xc8000000-0xdfffffff]
    [ 0.539462] pci_bus 0000:0c: resource 11 [mem 0xf0000000-0xfebfffff]
    [ 0.539501] NET: Registered protocol family 2
    [ 0.540223] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.543745] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.544173] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.544194] TCP: reno registered
    [ 0.544208] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.544300] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.544454] NET: Registered protocol family 1
    [ 0.544593] pci 0000:02:00.0: Boot video device
    [ 0.544817] PCI: CLS 64 bytes, default 64
    [ 0.544861] Unpacking initramfs...
    [ 0.665886] Freeing initrd memory: 4640k freed
    [ 0.666611] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.666615] software IO TLB [mem 0xc327c000-0xc727bfff] (64MB) mapped at [ffff8800c327c000-ffff8800c727bfff]
    [ 0.666654] Simple Boot Flag at 0x36 set to 0x80
    [ 0.667182] audit: initializing netlink socket (disabled)
    [ 0.667193] type=2000 audit(1352749565.703:1): initialized
    [ 0.683027] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.685360] VFS: Disk quotas dquot_6.5.2
    [ 0.685417] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.685575] msgmni has been set to 15952
    [ 0.685799] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.685830] io scheduler noop registered
    [ 0.685832] io scheduler deadline registered
    [ 0.685897] io scheduler cfq registered (default)
    [ 0.686337] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    [ 0.686339] vesafb: scrolling: redraw
    [ 0.686342] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.687265] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90011600000, using 5120k, total 5120k
    [ 0.886729] Console: switching to colour frame buffer device 160x64
    [ 1.086123] fb0: VESA VGA frame buffer device
    [ 1.086134] intel_idle: MWAIT substates: 0x1120
    [ 1.086145] intel_idle: v0.4 model 0x1E
    [ 1.086146] intel_idle: lapic_timer_reliable_states 0x2
    [ 1.086221] GHES: HEST is not enabled!
    [ 1.086283] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.086787] Linux agpgart interface v0.103
    [ 1.086895] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.097204] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.097237] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.097348] mousedev: PS/2 mouse device common for all mice
    [ 1.097573] rtc_cmos 00:07: RTC can wake from S4
    [ 1.097893] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
    [ 1.097920] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 1.098264] cpuidle: using governor ladder
    [ 1.098473] cpuidle: using governor menu
    [ 1.098603] drop_monitor: Initializing network drop monitor service
    [ 1.098697] TCP: cubic registered
    [ 1.098819] NET: Registered protocol family 10
    [ 1.099011] NET: Registered protocol family 17
    [ 1.099028] Key type dns_resolver registered
    [ 1.099438] PM: Hibernation image not present or could not be loaded.
    [ 1.099447] registered taskstats version 1
    [ 1.101811] rtc_cmos 00:07: setting system clock to 2012-11-12 19:46:05 UTC (1352749565)
    [ 1.103851] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.106355] Freeing unused kernel memory: 768k freed
    [ 1.106522] Write protecting the kernel read-only data: 8192k
    [ 1.116385] Freeing unused kernel memory: 1408k freed
    [ 1.117994] Freeing unused kernel memory: 568k freed
    [ 1.134497] systemd-udevd[78]: starting version 195
    [ 1.180869] ACPI: bus type usb registered
    [ 1.180984] usbcore: registered new interface driver usbfs
    [ 1.181051] usbcore: registered new interface driver hub
    [ 1.181311] usbcore: registered new device driver usb
    [ 1.182950] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.183127] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.183132] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 1.183234] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.187253] ehci_hcd 0000:00:1a.0: debug port 2
    [ 1.187271] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.187303] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf1005800
    [ 1.187791] SCSI subsystem initialized
    [ 1.189604] ACPI: bus type scsi registered
    [ 1.189681] libata version 3.00 loaded.
    [ 1.195488] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.195917] hub 1-0:1.0: USB hub found
    [ 1.195922] hub 1-0:1.0: 3 ports detected
    [ 1.196087] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.196092] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 1.196163] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.200176] ehci_hcd 0000:00:1d.0: debug port 2
    [ 1.200188] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.200205] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf1005c00
    [ 1.208814] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.209225] hub 2-0:1.0: USB hub found
    [ 1.209230] hub 2-0:1.0: 3 ports detected
    [ 1.209367] ahci 0000:00:1f.2: version 3.0
    [ 1.209430] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
    [ 1.209548] ahci: SSS flag set, parallel bus scan disabled
    [ 1.209587] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x23 impl SATA mode
    [ 1.209592] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst
    [ 1.209597] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.223416] scsi0 : ahci
    [ 1.223797] scsi1 : ahci
    [ 1.224147] scsi2 : ahci
    [ 1.224500] scsi3 : ahci
    [ 1.224856] scsi4 : ahci
    [ 1.225221] scsi5 : ahci
    [ 1.225356] ata1: SATA max UDMA/133 abar m2048@0xf1005000 port 0xf1005100 irq 45
    [ 1.225362] ata2: SATA max UDMA/133 abar m2048@0xf1005000 port 0xf1005180 irq 45
    [ 1.225365] ata3: DUMMY
    [ 1.225367] ata4: DUMMY
    [ 1.225369] ata5: DUMMY
    [ 1.225373] ata6: SATA max UDMA/133 abar m2048@0xf1005000 port 0xf1005380 irq 45
    [ 1.501934] usb 1-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.545247] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.547533] ata1.00: ATA-8: WDC WD6400BEVT-75A0RT0, 01.01A01, max UDMA/133
    [ 1.547540] ata1.00: 1250263728 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.549967] ata1.00: configured for UDMA/133
    [ 1.550374] scsi 0:0:0:0: Direct-Access ATA WDC WD6400BEVT-7 01.0 PQ: 0 ANSI: 5
    [ 1.626090] hub 1-1:1.0: USB hub found
    [ 1.626247] hub 1-1:1.0: 6 ports detected
    [ 1.668452] tsc: Refined TSC clocksource calibration: 1595.999 MHz
    [ 1.668460] Switching to clocksource tsc
    [ 1.731725] usb 2-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.856178] hub 2-1:1.0: USB hub found
    [ 1.856346] hub 2-1:1.0: 8 ports detected
    [ 1.868319] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.880979] ata2.00: ATAPI: TSSTcorp DVD+/-RW TS-T633C, D800, max UDMA/100
    [ 1.880987] ata2.00: applying bridge limits
    [ 1.894279] ata2.00: configured for UDMA/100
    [ 1.895297] scsi 1:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-T633C D800 PQ: 0 ANSI: 5
    [ 1.924926] usb 1-1.4: new high-speed USB device number 3 using ehci_hcd
    [ 2.188109] usb 2-1.1: new low-speed USB device number 3 using ehci_hcd
    [ 2.214657] ata6: SATA link down (SStatus 0 SControl 300)
    [ 2.220297] sd 0:0:0:0: [sda] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
    [ 2.220394] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.220398] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.220436] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.264902] sda: sda1 sda2
    [ 2.266126] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.286592] usbcore: registered new interface driver usbhid
    [ 2.286606] usbhid: USB HID core driver
    [ 2.287736] input: Logitech USB Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input1
    [ 2.288087] hid-generic 0003:046D:C00B.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB Mouse] on usb-0000:00:1d.0-1.1/input0
    [ 2.344526] usb 2-1.2: new high-speed USB device number 4 using ehci_hcd
    [ 2.415244] device-mapper: uevent: version 1.0.3
    [ 2.415448] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: [email protected]
    [ 2.430414] hub 2-1.2:1.0: USB hub found
    [ 2.430750] hub 2-1.2:1.0: 4 ports detected
    [ 2.497819] usb 2-1.6: new full-speed USB device number 5 using ehci_hcd
    [ 2.583779] hub 2-1.6:1.0: USB hub found
    [ 2.583940] hub 2-1.6:1.0: 3 ports detected
    [ 2.697722] usb 2-1.2.1: new high-speed USB device number 6 using ehci_hcd
    [ 2.850856] usb 2-1.6.1: new full-speed USB device number 7 using ehci_hcd
    [ 2.939323] input: HID 413c:8157 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6.1/2-1.6.1:1.0/input/input2
    [ 2.939498] hid-generic 0003:413C:8157.0002: input,hidraw1: USB HID v1.11 Keyboard [HID 413c:8157] on usb-0000:00:1d.0-1.6.1/input0
    [ 3.004105] usb 2-1.6.2: new full-speed USB device number 8 using ehci_hcd
    [ 3.094077] input: HID 413c:8158 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6.2/2-1.6.2:1.0/input/input3
    [ 3.094424] hid-generic 0003:413C:8158.0003: input,hidraw2: USB HID v1.11 Mouse [HID 413c:8158] on usb-0000:00:1d.0-1.6.2/input0
    [ 824.543880] Btrfs loaded
    [ 824.582726] device fsid 02cda685-4334-4137-a111-ffc149f72b91 devid 1 transid 219619 /dev/dm-4
    [ 824.589373] device fsid f90574c8-73b1-4d21-b0f9-c8383e90f702 devid 1 transid 19638 /dev/dm-1
    [ 825.172465] device fsid f90574c8-73b1-4d21-b0f9-c8383e90f702 devid 1 transid 19638 /dev/mapper/cryptpool-cryptroot
    [ 825.228574] btrfs: mismatching generation and generation_v2 found in root item. This root was probably mounted with an older kernel. Resetting all new fields.
    [ 825.236250] btrfs: mismatching generation and generation_v2 found in root item. This root was probably mounted with an older kernel. Resetting all new fields.
    [ 825.497003] btrfs: mismatching generation and generation_v2 found in root item. This root was probably mounted with an older kernel. Resetting all new fields.
    [ 826.881639] systemd[1]: systemd 195 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 826.913723] systemd[1]: Set hostname to <clawfinger>.
    [ 829.535709] systemd[1]: Cannot add dependency job for unit lvm.service, ignoring: Unit lvm.service failed to load: No such file or directory. See system logs and 'systemctl status lvm.service' for details.
    [ 829.535737] systemd[1]: Cannot add dependency job for unit cpufreq.service, ignoring: Unit cpufreq.service failed to load: No such file or directory. See system logs and 'systemctl status cpufreq.service' for details.
    [ 829.535752] systemd[1]: Cannot add dependency job for unit zeitgeist-daemon.service, ignoring: Unit zeitgeist-daemon.service failed to load: No such file or directory. See system logs and 'systemctl status zeitgeist-daemon.service' for details.
    [ 829.535786] systemd[1]: Cannot add dependency job for unit laptop-mode-tools.service, ignoring: Unit laptop-mode-tools.service failed to load: No such file or directory. See system logs and 'systemctl status laptop-mode-tools.service' for details.
    [ 829.535834] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 829.535861] systemd[1]: Cannot add dependency job for unit console-kit-daemon.service, ignoring: Unit console-kit-daemon.service failed to load: No such file or directory. See system logs and 'systemctl status console-kit-daemon.service' for details.
    [ 829.536380] systemd[1]: Starting Replay Read-Ahead Data...
    [ 829.554901] systemd[1]: Starting Collect Read-Ahead Data...
    [ 829.571226] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 829.571303] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 829.571319] systemd[1]: Starting Login Prompts.
    [ 829.571328] systemd[1]: Reached target Login Prompts.
    [ 829.571337] systemd[1]: Starting Remote File Systems.
    [ 829.571345] systemd[1]: Reached target Remote File Systems.
    [ 829.571354] systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device...
    [ 829.571362] systemd[1]: Starting Syslog Socket.
    [ 829.571364] systemd[1]: Socket service syslog.service not loaded, refusing.
    [ 829.572842] systemd[1]: Failed to listen on Syslog Socket.
    [ 829.574007] systemd[1]: Starting Arch Daemons.
    [ 829.574014] systemd[1]: Reached target Arch Daemons.
    [ 829.574023] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 829.574048] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 829.574055] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 829.574075] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 829.574081] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 829.574098] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 829.574106] systemd[1]: Starting Delayed Shutdown Socket.
    [ 829.574129] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 829.574218] systemd[1]: Starting udev Kernel Socket.
    [ 829.574239] systemd[1]: Listening on udev Kernel Socket.
    [ 829.574284] systemd[1]: Starting udev Control Socket.
    [ 829.574307] systemd[1]: Listening on udev Control Socket.
    [ 829.574332] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 829.574407] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 829.574419] systemd[1]: Starting Encrypted Volumes.
    [ 829.574426] systemd[1]: Reached target Encrypted Volumes.
    [ 829.574436] systemd[1]: Expecting device dev-disk-by\x2duuid-bb356f76\x2dd262\x2d43ca\x2da705\x2da2eab4b6d6ba.device...
    [ 829.574445] systemd[1]: Expecting device dev-disk-by\x2duuid-2796b7f1\x2d10c6\x2d481b\x2d91cb\x2d07cb7110031c.device...
    [ 829.574455] systemd[1]: Expecting device dev-disk-by\x2duuid-d169a015\x2d6ef6\x2d47f5\x2da6b2\x2d3db25ecce4a2.device...
    [ 829.574467] systemd[1]: Starting Journal Socket.
    [ 829.574507] systemd[1]: Listening on Journal Socket.
    [ 829.574529] systemd[1]: Mounting Huge Pages File System...
    [ 829.577956] systemd[1]: Mounting POSIX Message Queue File System...
    [ 829.591510] systemd[1]: Starting udev Coldplug all Devices...
    [ 829.594776] systemd[1]: Mounting Debug File System...
    [ 829.611201] systemd[1]: Starting udev Kernel Device Manager...
    [ 829.614769] systemd[1]: Starting Journal Service...
    [ 829.647758] systemd[1]: Started Journal Service.
    [ 829.647819] systemd[1]: Starting Syslog.
    [ 829.647843] systemd[1]: Reached target Syslog.
    [ 829.647879] systemd[1]: Starting home.automount.
    [ 829.901808] systemd[1]: Set up automount home.automount.
    [ 830.553864] systemd-udevd[249]: starting version 195
    [ 831.070954] ACPI: Requesting acpi_cpufreq
    [ 831.456015] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
    [ 831.456019] ACPI: Power Button [PWRB]
    [ 831.456058] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5
    [ 831.456060] ACPI: Sleep Button [SLPB]
    [ 831.456097] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input6
    [ 831.457156] ACPI: Lid Switch [LID0]
    [ 831.457203] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
    [ 831.457206] ACPI: Power Button [PWRF]
    [ 831.457547] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    [ 831.457548] AMD IOMMUv2 functionality not available on this system
    [ 831.615332] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 831.615336] Disabling lock debugging due to kernel taint
    [ 831.619625] <6>[fglrx] Maximum main memory to use for locked dma buffers: 7745 MBytes.
    [ 831.619972] <6>[fglrx] vendor: 1002 device: 9488 count: 1
    [ 831.620506] <6>[fglrx] ioport: bar 1, base 0x2000, size: 0x100
    [ 831.620722] <6>[fglrx] Kernel PAT support is enabled
    [ 831.620735] <6>[fglrx] module loaded - fglrx 8.97.2 [Jul 4 2012] with 1 minors
    [ 831.621578] ACPI: Fan [FAN0] (off)
    [ 831.621623] ACPI: Fan [FAN1] (off)
    [ 831.631874] vboxdrv: Found 8 processor cores.
    [ 831.633478] vboxdrv: fAsync=0 offMin=0x19b offMax=0x1b771
    [ 831.633549] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 831.633550] vboxdrv: Successfully loaded version 4.2.4_OSE (interface 0x001a0004).
    [ 832.286066] ACPI: AC Adapter [ADP1] (on-line)
    [ 832.312526] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 832.315135] acpi device:03: registered as cooling_device10
    [ 832.315214] ACPI: Video Device [M86] (multi-head: yes rom: no post: no)
    [ 832.315347] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input8
    [ 832.409308] thermal LNXTHERM:00: registered as thermal_zone0
    [ 832.409312] ACPI: Thermal Zone [TZ00] (27 C)
    [ 832.421895] ACPI: Battery Slot [BAT0] (battery present)
    [ 832.422793] thermal LNXTHERM:01: registered as thermal_zone1
    [ 832.422797] ACPI: Thermal Zone [TZ01] (69 C)
    [ 832.590092] microcode: CPU0 sig=0x106e5, pf=0x10, revision=0x3
    [ 832.970363] input: PC Speaker as /devices/platform/pcspkr/input/input9
    [ 833.240290] microcode: CPU1 sig=0x106e5, pf=0x10, revision=0x3
    [ 833.240762] microcode: CPU2 sig=0x106e5, pf=0x10, revision=0x3
    [ 833.241329] microcode: CPU3 sig=0x106e5, pf=0x10, revision=0x3
    [ 833.241760] microcode: CPU4 sig=0x106e5, pf=0x10, revision=0x3
    [ 833.242173] microcode: CPU5 sig=0x106e5, pf=0x10, revision=0x3
    [ 833.242608] microcode: CPU6 sig=0x106e5, pf=0x10, revision=0x3
    [ 833.243025] microcode: CPU7 sig=0x106e5, pf=0x10, revision=0x3
    [ 833.243492] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 833.265118] wmi: Mapper loaded
    [ 833.267255] sdhci: Secure Digital Host Controller Interface driver
    [ 833.267258] sdhci: Copyright(c) Pierre Ossman
    [ 833.268312] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
    [ 833.268319] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 833.268323] ACPI Warning: 0x0000000000001180-0x00000000000011ff SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
    [ 833.268327] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 833.268329] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 833.512963] sdhci-pci 0000:09:00.0: SDHCI controller found [1180:e822] (rev 1)
    [ 833.513049] sdhci-pci 0000:09:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 833.513095] Registered led device: mmc0::
    [ 833.537204] mmc0: SDHCI controller on PCI [0000:09:00.0] using DMA
    [ 833.570607] input: Dell WMI hotkeys as /devices/virtual/input/input10
    [ 833.847354] EDAC MC: Ver: 3.0.0
    [ 833.930269] firewire_ohci 0000:09:00.3: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    [ 834.096451] ite_cir: Auto-detected model: ITE8708 CIR transceiver
    [ 834.096454] ite_cir: Using model: ITE8708 CIR transceiver
    [ 834.096455] ite_cir: TX-capable: 1
    [ 834.096456] ite_cir: Sample period (ns): 8680
    [ 834.096457] ite_cir: TX carrier frequency (Hz): 38000
    [ 834.096458] ite_cir: TX duty cycle (%): 33
    [ 834.096459] ite_cir: RX low carrier frequency (Hz): 0
    [ 834.096460] ite_cir: RX high carrier frequency (Hz): 0
    [ 834.275945] iTCO_vendor_support: vendor-support=0
    [ 834.294684] cfg80211: Calling CRDA to update world regulatory domain
    [ 834.301218] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 834.430008] firewire_core 0000:09:00.3: created device fw0: GUID 324fc0001978e281, S400
    [ 834.433957] ACPI Warning: 0x0000000000001840-0x000000000000185f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
    [ 834.433962] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 834.446316] EDAC i7core: Device not found: dev 00.0 PCI ID 8086:2c50
    [ 834.977790] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 834.977796] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 834.978266] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 835.102238] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 835.137263] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input11
    [ 835.147237] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 835.147687] hda-intel: 0000:02:00.1: Handle VGA-switcheroo audio client
    [ 835.147810] snd_hda_intel 0000:02:00.1: irq 47 for MSI/MSI-X
    [ 835.152252] Registered IR keymap rc-rc6-mce
    [ 835.152388] input: ITE8708 CIR transceiver as /devices/virtual/rc/rc0/input13
    [ 835.152451] rc0: ITE8708 CIR transceiver as /devices/virtual/rc/rc0
    [ 835.152504] ite_cir: driver has been successfully l

    My disk seems also fine
    === START OF INFORMATION SECTION ===
    Model Family: Western Digital Scorpio Blue Serial ATA
    Device Model: WDC WD6400BEVT-75A0RT0
    Serial Number: WD-WX91C8077575
    LU WWN Device Id: 5 0014ee 600865d25
    Firmware Version: 01.01A01
    User Capacity: 640,135,028,736 bytes [640 GB]
    Sector Size: 512 bytes logical/physical
    Rotation Rate: 5400 rpm
    Device is: In smartctl database [for details use: -P show]
    ATA Version is: ATA8-ACS (minor revision not indicated)
    SATA Version is: SATA 2.6, 3.0 Gb/s
    Local Time is: Thu Dec 20 21:36:56 2012 CET
    SMART support is: Available - device has SMART capability.
    SMART support is: Enabled
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    General SMART Values:
    Offline data collection status: (0x00) Offline data collection activity
    was never started.
    Auto Offline Data Collection: Disabled.
    Self-test execution status: ( 248) Self-test routine in progress...
    80% of test remaining.
    Total time to complete Offline
    data collection: (16380) seconds.
    Offline data collection
    capabilities: (0x7b) SMART execute Offline immediate.
    Auto Offline data collection on/off support.
    Suspend Offline collection upon new
    command.
    Offline surface scan supported.
    Self-test supported.
    Conveyance Self-test supported.
    Selective Self-test supported.
    SMART capabilities: (0x0003) Saves SMART data before entering
    power-saving mode.
    Supports SMART auto save timer.
    Error logging capability: (0x01) Error logging supported.
    General Purpose Logging supported.
    Short self-test routine
    recommended polling time: ( 2) minutes.
    Extended self-test routine
    recommended polling time: ( 190) minutes.
    Conveyance self-test routine
    recommended polling time: ( 5) minutes.
    SCT capabilities: (0x7037) SCT Status supported.
    SCT Feature Control supported.
    SCT Data Table supported.
    SMART Attributes Data Structure revision number: 16
    Vendor Specific SMART Attributes with Thresholds:
    ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
    1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0
    3 Spin_Up_Time 0x0027 184 181 021 Pre-fail Always - 1775
    4 Start_Stop_Count 0x0032 079 079 000 Old_age Always - 21418
    5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
    7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
    9 Power_On_Hours 0x0032 095 095 000 Old_age Always - 4329
    10 Spin_Retry_Count 0x0032 100 100 000 Old_age Always - 0
    11 Calibration_Retry_Count 0x0032 100 100 000 Old_age Always - 0
    12 Power_Cycle_Count 0x0032 099 099 000 Old_age Always - 1828
    191 G-Sense_Error_Rate 0x0032 001 001 000 Old_age Always - 2336
    192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 512
    193 Load_Cycle_Count 0x0032 161 161 000 Old_age Always - 119448
    194 Temperature_Celsius 0x0022 106 089 000 Old_age Always - 41
    196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
    197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
    198 Offline_Uncorrectable 0x0030 100 253 000 Old_age Offline - 0
    199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
    200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 1
    240 Head_Flying_Hours 0x0032 095 095 000 Old_age Always - 4000
    241 Total_LBAs_Written 0x0032 200 200 000 Old_age Always - 13521667898
    242 Total_LBAs_Read 0x0032 200 200 000 Old_age Always - 14814445183
    254 Free_Fall_Sensor 0x0032 200 200 000 Old_age Always - 0
    SMART Error Log Version: 1
    No Errors Logged
    SMART Self-test log structure revision number 1
    Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
    # 1 Short offline Interrupted (host reset) 90% 4329 -
    # 2 Extended offline Completed without error 00% 4329 -
    # 3 Short offline Completed without error 00% 0 -
    SMART Selective self-test log data structure revision number 1
    SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
    1 0 0 Not_testing
    2 0 0 Not_testing
    3 0 0 Not_testing
    4 0 0 Not_testing
    5 0 0 Not_testing
    Selective self-test flags (0x0):
    After scanning selected spans, do NOT read-scan remainder of disk.
    If Selective self-test is pending on power-up, resume after 0 minute delay.

  • [SOLVED] systemd: no kernel messages in the journal

    Hi
    Currently the journal holds only application logs; I do not see any kernel logs in the journal. This is an old Arch system that was using syslog-ng but was transitioned to systemd when Arch made systemd default. This was working well until about three weeks back, when journal stopped holding kernel messages. The journal was causing journalctl to crash and I couldn't verify the journal since I had FSS setup but forgotten the keys. So, I had disabled the FSS, cleared the journals to startover again. Only to see kernel messages are not getting logged.
    I would be grrateful for any help in resolving the issue. Thank you!
    Last edited by chaembian (2013-11-20 02:53:00)

    OK, I removed the commandline options, regenerated grub config, rebooted.
    journalctl --dmesg starts:
    -- Logs begin at Sun 2013-11-17 23:26:51 IST, end at Sun 2013-11-17 23:35:38 IST. --
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input3
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input4
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input5
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    Nov 17 23:26:51 chaembian kernel: snd_hda_intel 0000:01:05.1: setting latency timer to 64
    Nov 17 23:26:51 chaembian kernel: input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:05.1/sound/card1/input11
    Nov 17 23:26:51 chaembian kernel: microcode: CPU0: new patch_level=0x010000c8
    Nov 17 23:26:51 chaembian kernel: microcode: CPU1: patch_level=0x010000b6
    Nov 17 23:26:51 chaembian kernel: microcode: CPU1: new patch_level=0x010000c8
    Nov 17 23:26:51 chaembian kernel: microcode: CPU2: patch_level=0x010000b6
    Nov 17 23:26:51 chaembian kernel: microcode: CPU2: new patch_level=0x010000c8
    Nov 17 23:26:51 chaembian kernel: microcode: CPU3: patch_level=0x010000b6
    Nov 17 23:26:51 chaembian kernel: microcode: CPU3: new patch_level=0x010000c8
    Nov 17 23:26:51 chaembian kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Nov 17 23:26:51 chaembian kernel: media: Linux media interface: v0.10
    Nov 17 23:26:51 chaembian kernel: Linux video capture interface: v2.00
    Nov 17 23:26:51 chaembian kernel: kvm: Nested Virtualization enabled
    Nov 17 23:26:51 chaembian kernel: kvm: Nested Paging enabled
    Nov 17 23:26:52 chaembian kernel: hidraw: raw HID events driver (C) Jiri Kosina
    That is indeed a step in the right direction.
    dmesg for cross-reference
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=639e14d4-e548-48ed-a6e5-c73a19c618ff rw quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009abff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ac00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e2000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cff7ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cff80000-0x00000000cff97fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000cff98000-0x00000000cffcffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cffd0000-0x00000000cfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.5 present.
    [ 0.000000] DMI: System manufacturer System Product Name/M4A88TD-M EVO, BIOS 1702 12/10/2010
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x120000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000C0000000 mask FFFFF0000000 write-back
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 0000000130000000 aka 4864M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcff80 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000094000] 94000 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 [0x01b2f000, 0x01b2ffff] PGTABLE
    [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    [ 0.000000] BRK [0x01b31000, 0x01b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x11fe00000-0x11fffffff]
    [ 0.000000] [mem 0x11fe00000-0x11fffffff] page 2M
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11fdfffff]
    [ 0.000000] [mem 0x11c000000-0x11fdfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff]
    [ 0.000000] [mem 0x100000000-0x11bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xcff7ffff]
    [ 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-0xcfdfffff] page 2M
    [ 0.000000] [mem 0xcfe00000-0xcff7ffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x37690000-0x37b3ffff]
    [ 0.000000] ACPI: RSDP 00000000000fb570 00024 (v02 ACPIAM)
    [ 0.000000] ACPI: XSDT 00000000cff80100 0005C (v01 121010 XSDT1437 20101210 MSFT 00000097)
    [ 0.000000] ACPI: FACP 00000000cff80290 000F4 (v03 121010 FACP1437 20101210 MSFT 00000097)
    [ 0.000000] ACPI: DSDT 00000000cff80450 0F2D6 (v01 A1581 A1581001 00000001 INTL 20060113)
    [ 0.000000] ACPI: FACS 00000000cff98000 00040
    [ 0.000000] ACPI: APIC 00000000cff80390 0007C (v01 121010 APIC1437 20101210 MSFT 00000097)
    [ 0.000000] ACPI: MCFG 00000000cff80410 0003C (v01 121010 OEMMCFG 20101210 MSFT 00000097)
    [ 0.000000] ACPI: OEMB 00000000cff98040 00072 (v01 121010 OEMB1437 20101210 MSFT 00000097)
    [ 0.000000] ACPI: SRAT 00000000cff8f8a0 000E8 (v01 AMD FAM_F_10 00000002 AMD 00000001)
    [ 0.000000] ACPI: HPET 00000000cff8f990 00038 (v01 121010 OEMHPET 20101210 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000cff8f9d0 0088C (v01 A M I POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
    [ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
    [ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00100000-0xcfffffff]
    [ 0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x12fffffff]
    [ 0.000000] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xcfffffff] -> [mem 0x00000000-0xcfffffff]
    [ 0.000000] NUMA: Node 0 [mem 0x00000000-0xcfffffff] + [mem 0x100000000-0x11fffffff] -> [mem 0x00000000-0x11fffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x11fffffff]
    [ 0.000000] NODE_DATA [mem 0x11fff9000-0x11fffdfff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011ba00000-ffff88011f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x11fffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00099fff]
    [ 0.000000] node 0: [mem 0x00100000-0xcff7ffff]
    [ 0.000000] node 0: [mem 0x100000000-0x11fffffff]
    [ 0.000000] On node 0 totalpages: 982809
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3993 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13246 pages used for memmap
    [ 0.000000] DMA32 zone: 847744 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2048 pages used for memmap
    [ 0.000000] Normal zone: 131072 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009a000-0x0009afff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e1fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e2000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcff80000-0xcff97fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcff98000-0xcffcffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcffd0000-0xcfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xd0000000-0xff9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffa00000-0xffffffff]
    [ 0.000000] e820: [mem 0xd0000000-0xff9fffff] 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:6 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88011fc00000 s86528 r8192 d24064 u262144
    [ 0.000000] pcpu-alloc: s86528 r8192 d24064 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 - -
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 967430
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=639e14d4-e548-48ed-a6e5-c73a19c618ff rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ c4000000 size 32 MB
    [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
    [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    [ 0.000000] Please enable the IOMMU option in the BIOS setup
    [ 0.000000] This costs you 64 MB of RAM
    [ 0.000000] Mapping aperture over 65536 KB of RAM @ c4000000
    [ 0.000000] PM: Registered nosave memory: [mem 0xc4000000-0xc7ffffff]
    [ 0.000000] Memory: 3720876K/3931236K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 210360K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=6.
    [ 0.000000] NR_IRQS:8448 nr_irqs:728 16
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 15728640 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 3415.125 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 6832.84 BogoMIPS (lpj=11383750)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000027] Security Framework initialized
    [ 0.000033] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000034] Yama: becoming mindful.
    [ 0.000231] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001248] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.001717] Mount-cache hash table entries: 256
    [ 0.001875] Initializing cgroup subsys memory
    [ 0.001885] Initializing cgroup subsys devices
    [ 0.001887] Initializing cgroup subsys freezer
    [ 0.001888] Initializing cgroup subsys net_cls
    [ 0.001889] Initializing cgroup subsys blkio
    [ 0.001904] tseg: 0000000000
    [ 0.001910] CPU: Physical Processor ID: 0
    [ 0.001910] CPU: Processor Core ID: 0
    [ 0.001912] mce: CPU supports 6 MCE banks
    [ 0.001916] LVT offset 0 assigned for vector 0xf9
    [ 0.001919] process: using AMD E400 aware idle routine
    [ 0.001921] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64
    tlb_flushall_shift: 4
    [ 0.001983] Freeing SMP alternatives memory: 20K (ffffffff819e6000 - ffffffff819eb000)
    [ 0.002531] ACPI: Core revision 20130517
    [ 0.006010] ACPI: All ACPI Tables successfully acquired
    [ 0.109344] ftrace: allocating 20100 entries in 79 pages
    [ 0.116210] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.149233] smpboot: CPU0: AMD Phenom(tm) II X4 965 Processor (fam: 10, model: 04, stepping: 03)
    [ 0.253603] Performance Events: AMD PMU driver.
    [ 0.253606] ... version: 0
    [ 0.253607] ... bit width: 48
    [ 0.253608] ... generic registers: 4
    [ 0.253609] ... value mask: 0000ffffffffffff
    [ 0.253609] ... max period: 00007fffffffffff
    [ 0.253610] ... fixed-purpose events: 0
    [ 0.253611] ... event mask: 000000000000000f
    [ 0.253639] process: System has AMD C1E enabled
    [ 0.253645] process: Switch to broadcast mode on CPU0
    [ 0.270404] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.290256] process: Switch to broadcast mode on CPU1
    [ 0.306943] process: Switch to broadcast mode on CPU2
    [ 0.277079] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.323592] Brought up 4 CPUs
    [ 0.323595] smpboot: Total of 4 processors activated (27331.37 BogoMIPS)
    [ 0.323636] process: Switch to broadcast mode on CPU3
    [ 0.328034] devtmpfs: initialized
    [ 0.329347] PM: Registering ACPI NVS region [mem 0xcff98000-0xcffcffff] (229376 bytes)
    [ 0.330091] RTC time: 17:56:43, date: 11/17/13
    [ 0.330127] NET: Registered protocol family 16
    [ 0.330208] node 0 link 0: io port [1000, ffffff]
    [ 0.330210] TOM: 00000000d0000000 aka 3328M
    [ 0.330212] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    [ 0.330213] node 0 link 0: mmio [a0000, bffff]
    [ 0.330215] node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
    [ 0.330217] node 0 link 0: mmio [f0000000, fe6fffff]
    [ 0.330219] node 0 link 0: mmio [fe700000, fe8fffff]
    [ 0.330220] node 0 link 0: mmio [fe900000, ffdfffff]
    [ 0.330221] TOM2: 0000000130000000 aka 4864M
    [ 0.330222] bus: [bus 00-07] on node 0 link 0
    [ 0.330223] bus: 00 [io 0x0000-0xffff]
    [ 0.330224] bus: 00 [mem 0x000a0000-0x000bffff]
    [ 0.330225] bus: 00 [mem 0xd0000000-0xdfffffff]
    [ 0.330226] bus: 00 [mem 0xf0000000-0xffffffff]
    [ 0.330227] bus: 00 [mem 0x130000000-0xfcffffffff]
    [ 0.330268] ACPI: bus type PCI registered
    [ 0.330269] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.330314] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.330316] PCI: not using MMCONFIG
    [ 0.330317] PCI: Using configuration type 1 for base access
    [ 0.330317] PCI: Using configuration type 1 for extended access
    [ 0.330790] bio: create slab <bio-0> at 0
    [ 0.330911] ACPI: Added _OSI(Module Device)
    [ 0.330913] ACPI: Added _OSI(Processor Device)
    [ 0.330914] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.330915] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.331704] ACPI: EC: Look up EC in DSDT
    [ 0.343813] ACPI: Executed 3 blocks of module-level executable AML code
    [ 0.657725] ACPI: Interpreter enabled
    [ 0.657735] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.657746] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.657748] ACPI: Using IOAPIC for interrupt routing
    [ 0.657763] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.658965] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.665871] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.665931] ACPI: No dock devices found.
    [ 0.670245] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.670357] acpi PNP0A03:00: Requesting ACPI _OSC control (0x1d)
    [ 0.670453] acpi PNP0A03:00: ACPI _OSC control (0x1d) granted
    [ 0.670632] PCI host bridge to bus 0000:00
    [ 0.670635] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.670636] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.670638] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.670639] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.670641] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    [ 0.670642] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xdfffffff]
    [ 0.670643] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 0.670652] pci 0000:00:00.0: [1022:9601] type 00 class 0x060000
    [ 0.670728] pci 0000:00:01.0: [1043:9602] type 01 class 0x060400
    [ 0.670791] pci 0000:00:05.0: [1022:9605] type 01 class 0x060400
    [ 0.670818] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    [ 0.670846] pci 0000:00:05.0: System wakeup disabled by ACPI
    [ 0.670871] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
    [ 0.670897] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    [ 0.670924] pci 0000:00:07.0: System wakeup disabled by ACPI
    [ 0.670947] pci 0000:00:09.0: [1022:9608] type 01 class 0x060400
    [ 0.670974] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    [ 0.671001] pci 0000:00:09.0: System wakeup disabled by ACPI
    [ 0.671023] pci 0000:00:0a.0: [1022:9609] type 01 class 0x060400
    [ 0.671050] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.671077] pci 0000:00:0a.0: System wakeup disabled by ACPI
    [ 0.671108] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.671122] pci 0000:00:11.0: reg 0x10: [io 0x9000-0x9007]
    [ 0.671129] pci 0000:00:11.0: reg 0x14: [io 0x8000-0x8003]
    [ 0.671135] pci 0000:00:11.0: reg 0x18: [io 0x7000-0x7007]
    [ 0.671142] pci 0000:00:11.0: reg 0x1c: [io 0x6000-0x6003]
    [ 0.671149] pci 0000:00:11.0: reg 0x20: [io 0x5000-0x500f]
    [ 0.671156] pci 0000:00:11.0: reg 0x24: [mem 0xfe6ffc00-0xfe6fffff]
    [ 0.671231] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.671241] pci 0000:00:12.0: reg 0x10: [mem 0xfe6fe000-0xfe6fefff]
    [ 0.671303] pci 0000:00:12.0: System wakeup disabled by ACPI
    [ 0.671332] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.671346] pci 0000:00:12.2: reg 0x10: [mem 0xfe6ff800-0xfe6ff8ff]
    [ 0.671405] pci 0000:00:12.2: supports D1 D2
    [ 0.671406] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.671435] pci 0000:00:12.2: System wakeup disabled by ACPI
    [ 0.671464] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.671474] pci 0000:00:13.0: reg 0x10: [mem 0xfe6fd000-0xfe6fdfff]
    [ 0.671536] pci 0000:00:13.0: System wakeup disabled by ACPI
    [ 0.671563] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.671577] pci 0000:00:13.2: reg 0x10: [mem 0xfe6ff400-0xfe6ff4ff]
    [ 0.671635] pci 0000:00:13.2: supports D1 D2
    [ 0.671637] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.671665] pci 0000:00:13.2: System wakeup disabled by ACPI
    [ 0.671691] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.671780] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.671795] pci 0000:00:14.2: reg 0x10: [mem 0xfe6f4000-0xfe6f7fff 64bit]
    [ 0.671842] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.671870] pci 0000:00:14.2: System wakeup disabled by ACPI
    [ 0.671893] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.671979] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.672026] pci 0000:00:14.4: System wakeup disabled by ACPI
    [ 0.672049] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.672059] pci 0000:00:14.5: reg 0x10: [mem 0xfe6fc000-0xfe6fcfff]
    [ 0.672121] pci 0000:00:14.5: System wakeup disabled by ACPI
    [ 0.672146] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    [ 0.672156] pci 0000:00:16.0: reg 0x10: [mem 0xfe6f3000-0xfe6f3fff]
    [ 0.672218] pci 0000:00:16.0: System wakeup disabled by ACPI
    [ 0.672245] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    [ 0.672258] pci 0000:00:16.2: reg 0x10: [mem 0xfe6ff000-0xfe6ff0ff]
    [ 0.672317] pci 0000:00:16.2: supports D1 D2
    [ 0.672318] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.672347] pci 0000:00:16.2: System wakeup disabled by ACPI
    [ 0.672372] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    [ 0.672416] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    [ 0.672457] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    [ 0.672499] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    [ 0.672542] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    [ 0.672618] pci 0000:01:05.0: [1002:9715] type 00 class 0x030000
    [ 0.672624] pci 0000:01:05.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
    [ 0.672628] pci 0000:01:05.0: reg 0x14: [io 0xa000-0xa0ff]
    [ 0.672632] pci 0000:01:05.0: reg 0x18: [mem 0xfe8f0000-0xfe8fffff]
    [ 0.672639] pci 0000:01:05.0: reg 0x24: [mem 0xfe700000-0xfe7fffff]
    [ 0.672654] pci 0000:01:05.0: supports D1 D2
    [ 0.672678] pci 0000:01:05.1: [1002:970f] type 00 class 0x040300
    [ 0.672684] pci 0000:01:05.1: reg 0x10: [mem 0xfe8e8000-0xfe8ebfff]
    [ 0.672709] pci 0000:01:05.1: supports D1 D2
    [ 0.672750] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.672753] pci 0000:00:01.0: bridge window [io 0xa000-0xafff]
    [ 0.672755] pci 0000:00:01.0: bridge window [mem 0xfe700000-0xfe8fffff]
    [ 0.672758] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.672796] pci 0000:02:00.0: [1033:0194] type 00 class 0x0c0330
    [ 0.672810] pci 0000:02:00.0: reg 0x10: [mem 0xfe9fe000-0xfe9fffff 64bit]
    [ 0.672875] pci 0000:02:00.0: PME# supported from D0 D3hot
    [ 0.680606] pci 0000:00:05.0: PCI bridge to [bus 02]
    [ 0.680611] pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.680673] pci 0000:03:00.0: [1106:3403] type 00 class 0x0c0010
    [ 0.680702] pci 0000:03:00.0: reg 0x10: [mem 0xfeaff800-0xfeafffff 64bit]
    [ 0.680717] pci 0000:03:00.0: reg 0x18: [io 0xb800-0xb8ff]
    [ 0.680838] pci 0000:03:00.0: supports D2
    [ 0.680839] pci 0000:03:00.0: PME# supported from D2 D3hot D3cold
    [ 0.690631] pci 0000:00:07.0: PCI bridge to [bus 03]
    [ 0.690635] pci 0000:00:07.0: bridge window [io 0xb000-0xbfff]
    [ 0.690637] pci 0000:00:07.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.690704] pci 0000:04:00.0: [1106:0415] type 00 class 0x010185
    [ 0.690726] pci 0000:04:00.0: reg 0x10: [io 0xcc00-0xcc07]
    [ 0.690740] pci 0000:04:00.0: reg 0x14: [io 0xc880-0xc883]
    [ 0.690755] pci 0000:04:00.0: reg 0x18: [io 0xc800-0xc807]
    [ 0.690769] pci 0000:04:00.0: reg 0x1c: [io 0xc480-0xc483]
    [ 0.690783] pci 0000:04:00.0: reg 0x20: [io 0xc400-0xc40f]
    [ 0.690811] pci 0000:04:00.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]
    [ 0.690883] pci 0000:04:00.0: supports D1 D2
    [ 0.690885] pci 0000:04:00.0: PME# supported from D1 D2 D3hot
    [ 0.700620] pci 0000:00:09.0: PCI bridge to [bus 04]
    [ 0.700625] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff]
    [ 0.700627] pci 0000:00:09.0: bridge window [mem 0xfeb00000-0xfebfffff]
    [ 0.700675] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.700687] pci 0000:05:00.0: reg 0x10: [io 0xd800-0xd8ff]
    [ 0.700705] pci 0000:05:00.0: reg 0x18: [mem 0xfdfff000-0xfdffffff 64bit pref]
    [ 0.700717] pci 0000:05:00.0: reg 0x20: [mem 0xfdff8000-0xfdffbfff 64bit pref]
    [ 0.700768] pci 0000:05:00.0: supports D1 D2
    [ 0.700769] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.710623] pci 0000:00:0a.0: PCI bridge to [bus 05]
    [ 0.710627] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.710631] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.710674] pci 0000:06:05.0: [1412:1724] type 00 class 0x040100
    [ 0.710691] pci 0000:06:05.0: reg 0x10: [io 0xec00-0xec1f]
    [ 0.710701] pci 0000:06:05.0: reg 0x14: [io 0xe880-0xe8ff]
    [ 0.710769] pci 0000:06:05.0: supports D2
    [ 0.710824] pci 0000:00:14.4: PCI bridge to [bus 06] (subtractive decode)
    [ 0.710827] pci 0000:00:14.4: bridge window [io 0xe000-0xefff]
    [ 0.710832] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.710833] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.710835] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.710836] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    [ 0.710837] pci 0000:00:14.4: bridge window [mem 0xd0000000-0xdfffffff] (subtractive decode)
    [ 0.710839] pci 0000:00:14.4: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 0.711399] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 9 10 11 14 15)
    [ 0.711445] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 14 15)
    [ 0.711491] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *9 10 11 14 15)
    [ 0.711536] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 9 10 *11 14 15)
    [ 0.711572] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 14 15) *0
    [ 0.711602] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 14 15) *0
    [ 0.711631] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11 14 15) *0
    [ 0.711661] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 14 15) *0
    [ 0.711760] ACPI: Enabled 1 GPEs in block 00 to 1F
    [ 0.711764] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.711791] Found 1 acpi root devices
    [ 0.711811] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    [ 0.711884] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.711885] vgaarb: loaded
    [ 0.711886] vgaarb: bridge control possible 0000:01:05.0
    [ 0.711914] PCI: Using ACPI for IRQ routing
    [ 0.717926] PCI: pci_cache_line_size set to 64 bytes
    [ 0.717976] e820: reserve RAM buffer [mem 0x0009ac00-0x0009ffff]
    [ 0.717978] e820: reserve RAM buffer [mem 0xcff80000-0xcfffffff]
    [ 0.718041] NetLabel: Initializing
    [ 0.718042] NetLabel: domain hash size = 128
    [ 0.718042] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.718052] NetLabel: unlabeled traffic allowed by default
    [ 0.718064] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.718066] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.720112] Switched to clocksource hpet
    [ 0.723318] pnp: PnP ACPI init
    [ 0.723328] ACPI: bus type PNP registered
    [ 0.723421] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.723488] pnp 00:01: [dma 4]
    [ 0.723503] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.723526] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.723543] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.723560] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.723934] pnp 00:05: [dma 0 disabled]
    [ 0.724064] pnp 00:05: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.724097] pnp 00:06: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.724374] pnp 00:07: [dma 0 disabled]
    [ 0.724425] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.724491] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.724493] system 00:08: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.724495] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.724649] system 00:09: [io 0x04d0-0x04d1] has been reserved
    [ 0.724651] system 00:09: [io 0x040b] has been reserved
    [ 0.724653] system 00:09: [io 0x04d6] has been reserved
    [ 0.724654] system 00:09: [io 0x0c00-0x0c01] has been reserved
    [ 0.724656] system 00:09: [io 0x0c14] has been reserved
    [ 0.724657] system 00:09: [io 0x0c50-0x0c51] has been reserved
    [ 0.724659] system 00:09: [io 0x0c52] has been reserved
    [ 0.724660] system 00:09: [io 0x0c6c] has been reserved
    [ 0.724661] system 00:09: [io 0x0c6f] has been reserved
    [ 0.724663] system 00:09: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.724664] system 00:09: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.724666] system 00:09: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.724667] system 00:09: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.724669] system 00:09: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.724670] system 00:09: [io 0x0b00-0x0b3f] has been reserved
    [ 0.724672] system 00:09: [io 0x0800-0x089f] could not be reserved
    [ 0.724673] system 00:09: [io 0x0b00-0x0b1f] has been reserved
    [ 0.724675] system 00:09: [io 0x0b20-0x0b3f] has been reserved
    [ 0.724677] system 00:09: [io 0x0900-0x090f] has been reserved
    [ 0.724678] system 00:09: [io 0x0910-0x091f] has been reserved
    [ 0.724680] system 00:09: [io 0xfe00-0xfefe] has been reserved
    [ 0.724682] system 00:09: [mem 0xffb80000-0xffbfffff] has been reserved
    [ 0.724683] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
    [ 0.724685] system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.724686] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
    [ 0.724688] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.724807] system 00:0a: [io 0x0230-0x023f] has been reserved
    [ 0.724809] system 00:0a: [io 0x0290-0x029f] has been reserved
    [ 0.724810] system 00:0a: [io 0x0300-0x030f] has been reserved
    [ 0.724812] system 00:0a: [io 0x0a30-0x0a3f] has been reserved
    [ 0.724814] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.724858] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.724860] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.724952] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.724953] system 00:0c: [mem 0x000c0000-0x000cffff] could not be reserved
    [ 0.724955] system 00:0c: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.724957] system 00:0c: [mem 0x00100000-0xcfffffff] could not be reserved
    [ 0.724958] system 00:0c: [mem 0xfec00000-0xffffffff] could not be reserved
    [ 0.724960] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.725022] pnp: PnP ACPI: found 13 devices
    [ 0.725022] ACPI: bus type PNP unregistered
    [ 0.731469] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.731472] pci 0000:00:01.0: bridge window [io 0xa000-0xafff]
    [ 0.731474] pci 0000:00:01.0: bridge window [mem 0xfe700000-0xfe8fffff]
    [ 0.731476] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.731479] pci 0000:00:05.0: PCI bridge to [bus 02]
    [ 0.731481] pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.731484] pci 0000:00:07.0: PCI bridge to [bus 03]
    [ 0.731486] pci 0000:00:07.0: bridge window [io 0xb000-0xbfff]
    [ 0.731488] pci 0000:00:07.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.731491] pci 0000:00:09.0: PCI bridge to [bus 04]
    [ 0.731493] pci 0000:00:09.0: bridge window [io 0xc000-0xcfff]
    [ 0.731495] pci 0000:00:09.0: bridge window [mem 0xfeb00000-0xfebfffff]
    [ 0.731498] pci 0000:00:0a.0: PCI bridge to [bus 05]
    [ 0.731499] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.731502] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.731505] pci 0000:00:14.4: PCI bridge to [bus 06]
    [ 0.731507] pci 0000:00:14.4: bridge window [io 0xe000-0xefff]
    [ 0.731716] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.731718] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.731719] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.731721] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.731722] pci_bus 0000:00: resource 8 [mem 0xd0000000-0xdfffffff]
    [ 0.731723] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.731725] pci_bus 0000:01: resource 0 [io 0xa000-0xafff]
    [ 0.731726] pci_bus 0000:01: resource 1 [mem 0xfe700000-0xfe8fffff]
    [ 0.731727] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.731729] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
    [ 0.731730] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 0.731732] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.731733] pci_bus 0000:04: resource 0 [io 0xc000-0xcfff]
    [ 0.731734] pci_bus 0000:04: resource 1 [mem 0xfeb00000-0xfebfffff]
    [ 0.731736] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff]
    [ 0.731737] pci_bus 0000:05: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.731739] pci_bus 0000:06: resource 0 [io 0xe000-0xefff]
    [ 0.731740] pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7]
    [ 0.731741] pci_bus 0000:06: resource 5 [io 0x0d00-0xffff]
    [ 0.731742] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.731744] pci_bus 0000:06: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.731745] pci_bus 0000:06: resource 8 [mem 0xd0000000-0xdfffffff]
    [ 0.731746] pci_bus 0000:06: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.731774] NET: Registered protocol family 2
    [ 0.731920] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.732050] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.732170] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.732202] TCP: reno registered
    [ 0.732208] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.732229] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.732295] NET: Registered protocol family 1
    [ 0.732302] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
    [ 1.774244] pci 0000:01:05.0: Boot video device
    [ 1.774293] PCI: CLS 64 bytes, default 64
    [ 1.774329] Unpacking initramfs...
    [ 1.838503] Freeing initrd memory: 4800K (ffff880037690000 - ffff880037b40000)
    [ 1.839314] PCI-DMA: Disabling AGP.
    [ 1.839384] PCI-DMA: aperture base @ c4000000 size 65536 KB
    [ 1.839385] PCI-DMA: using GART IOMMU.
    [ 1.839387] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    [ 1.842458] LVT offset 1 assigned for vector 0x400
    [ 1.842466] IBS: LVT offset 1 assigned
    [ 1.842487] perf: AMD IBS detected (0x0000001f)
    [ 1.842507] Scanning for low memory corruption every 60 seconds
    [ 1.842725] audit: initializing netlink socket (disabled)
    [ 1.842734] type=2000 audit(1384711004.543:1): initialized
    [ 1.851049] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.852054] zbud: loaded
    [ 1.852166] VFS: Disk quotas dquot_6.5.2
    [ 1.852200] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.852354] msgmni has been set to 7405
    [ 1.852587] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.852634] io scheduler noop registered
    [ 1.852637] io scheduler deadline registered
    [ 1.852674] io scheduler cfq registered (default)
    [ 1.852784] pcieport 0000:00:05.0: irq 40 for MSI/MSI-X
    [ 1.852849] pcieport 0000:00:07.0: irq 41 for MSI/MSI-X
    [ 1.852906] pcieport 0000:00:09.0: irq 42 for MSI/MSI-X
    [ 1.852964] pcieport 0000:00:0a.0: irq 43 for MSI/MSI-X
    [ 1.853049] pcieport 0000:00:05.0: Signaling PME through PCIe PME interrupt
    [ 1.853053] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 1.853055] pcie_pme 0000:00:05.0:pcie01: service driver pcie_pme loaded
    [ 1.853064] pcieport 0000:00:07.0: Signaling PME through PCIe PME interrupt
    [ 1.853066] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 1.853068] pcie_pme 0000:00:07.0:pcie01: service driver pcie_pme loaded
    [ 1.853078] pcieport 0000:00:09.0: Signaling PME through PCIe PME interrupt
    [ 1.853079] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
    [ 1.853081] pcie_pme 0000:00:09.0:pcie01: service driver pcie_pme loaded
    [ 1.853092] pcieport 0000:00:0a.0: Signaling PME through PCIe PME interrupt
    [ 1.853093] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
    [ 1.853095] pcie_pme 0000:00:0a.0:pcie01: service driver pcie_pme loaded
    [ 1.853105] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.853116] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.853160] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
    [ 1.853161] vesafb: scrolling: redraw
    [ 1.853162] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 1.853503] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90010800000, using 10816k, total 10816k
    [ 2.187925] Console: switching to colour frame buffer device 240x90
    [ 2.522112] fb0: VESA VGA frame buffer device
    [ 2.522136] GHES: HEST is not enabled!
    [ 2.522194] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 2.542718] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 2.543025] Linux agpgart interface v0.103
    [ 2.543063] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 2.543414] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 2.543440] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 2.543545] mousedev: PS/2 mouse device common for all mice
    [ 2.543591] rtc_cmos 00:02: RTC can wake from S4
    [ 2.543688] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 2.543707] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 2.543713] cpuidle: using governor ladder
    [ 2.543715] cpuidle: using governor menu
    [ 2.543764] drop_monitor: Initializing network drop monitor service
    [ 2.543811] TCP: cubic registered
    [ 2.543876] NET: Registered protocol family 10
    [ 2.544001] NET: Registered protocol family 17
    [ 2.544009] Key type dns_resolver registered
    [ 2.544240] PM: Hibernation image not present or could not be loaded.
    [ 2.544247] registered taskstats version 1
    [ 2.544768] Magic number: 5:4:947
    [ 2.544782] tty tty4: hash matches
    [ 2.544801] cpu cpu2: hash matches
    [ 2.544807] memory memory0: hash matches
    [ 2.544836] rtc_cmos 00:02: setting system clock to 2013-11-17 17:56:45 UTC (1384711005)
    [ 2.545743] Freeing unused kernel memory: 1140K (ffffffff818c9000 - ffffffff819e6000)
    [ 2.545745] Write protecting the kernel read-only data: 8192k
    [ 2.547931] Freeing unused kernel memory: 1084K (ffff8800014f1000 - ffff880001600000)
    [ 2.548636] Freeing unused kernel memory: 352K (ffff8800017a8000 - ffff880001800000)
    [ 2.554741] systemd-udevd[57]: starting version 208
    [ 2.556092] SCSI subsystem initialized
    [ 2.556877] ACPI: bus type ATA registered
    [ 2.556944] libata version 3.00 loaded.
    [ 2.557360] ahci 0000:00:11.0: version 3.0
    [ 2.557535] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
    [ 2.557538] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 2.558505] scsi0 : ahci
    [ 2.558599] scsi1 : ahci
    [ 2.558778] scsi2 : ahci
    [ 2.558868] scsi3 : ahci
    [ 2.559022] scsi4 : ahci
    [ 2.559089] scsi5 : ahci
    [ 2.559150] ata1: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd00 irq 19
    [ 2.559153] ata2: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffd80 irq 19
    [ 2.559155] ata3: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe00 irq 19
    [ 2.559156] ata4: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6ffe80 irq 19
    [ 2.559159] ata5: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff00 irq 19
    [ 2.559161] ata6: SATA max UDMA/133 abar m1024@0xfe6ffc00 port 0xfe6fff80 irq 19
    [ 2.560807] [drm] Initialized drm 1.1.0 20060810
    [ 2.564745] [drm] radeon kernel modesetting enabled.
    [ 2.564805] checking generic (d0000000 a90000) vs hw (d0000000 10000000)
    [ 2.564808] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver
    [ 2.564821] Console: switching to colour dummy device 80x25
    [ 2.565086] [drm] initializing kernel modesetting (RS880 0x1002:0x9715 0x1043:0x843E).
    [ 2.565095] [drm] register mmio base: 0xFE8F0000
    [ 2.565096] [drm] register mmio size: 65536
    [ 2.565630] ATOM BIOS: 113
    [ 2.565643] radeon 0000:01:05.0: VRAM: 368M 0x00000000C0000000 - 0x00000000D6FFFFFF (368M used)
    [ 2.565645] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
    [ 2.565648] [drm] Detected VRAM RAM=368M, BAR=256M
    [ 2.565649] [drm] RAM width 32bits DDR
    [ 2.565696] [TTM] Zone kernel: Available graphics memory: 1897112 kiB
    [ 2.565697] [TTM] Initializing pool allocator
    [ 2.565700] [TTM] Initializing DMA pool allocator
    [ 2.565716] [drm] radeon: 368M of VRAM memory ready
    [ 2.565717] [drm] radeon: 512M of GTT memory ready.
    [ 2.565725] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 2.576556] [drm] Loading RS780 Microcode
    [ 2.578778] [drm] PCIE GART of 512M enabled (table at 0x00000000C0040000).
    [ 2.578836] radeon 0000:01:05.0: WB enabled
    [ 2.578838] radeon 0000:01:05.0: fence driver on ring 0 use gpu addr 0x00000000a0000c00 and cpu addr 0xffff880117cfdc00
    [ 2.578839] radeon 0000:01:05.0: fence driver on ring 3 use gpu addr 0x00000000a0000c0c and cpu addr 0xffff880117cfdc0c
    [ 2.578841] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.578842] [drm] Driver supports precise vblank timestamp query.
    [ 2.578860] [drm] radeon: irq initialized.
    [ 2.579084] radeon 0000:01:05.0: setting latency timer to 64
    [ 2.611015] [drm] ring test on 0 succeeded in 1 usecs
    [ 2.611072] [drm] ring test on 3 succeeded in 1 usecs
    [ 2.611137] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 2.611149] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 2.611351] [drm] Radeon Display Connectors
    [ 2.611352] [drm] Connector 0:
    [ 2.611353] [drm] VGA-1
    [ 2.611355] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    [ 2.611355] [drm] Encoders:
    [ 2.611356] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 2.611357] [drm] Connector 1:
    [ 2.611357] [drm] DVI-D-1
    [ 2.611358] [drm] HPD1
    [ 2.611359] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
    [ 2.611360] [drm] Encoders:
    [ 2.611361] [drm] DFP3: INTERNAL_KLDSCP_LVTMA
    [ 2.611408] [drm] radeon: power management initialized
    [ 2.652806] [drm] fb mappable at 0xD0142000
    [ 2.652807] [drm] vram apper at 0xD0000000
    [ 2.652808] [drm] size 5242880
    [ 2.652808] [drm] fb depth is 24
    [ 2.652809] [drm] pitch is 5120
    [ 2.652866] fbcon: radeondrmfb (fb0) is primary device
    [ 2.664744] Console: switching to colour frame buffer device 160x64
    [ 2.675575] radeon 0000:01:05.0: fb0: radeondrmfb frame buffer device
    [ 2.675577] radeon 0000:01:05.0: registered panic notifier
    [ 2.675630] [drm] Initialized radeon 2.34.0 20080528 for 0000:01:05.0 on minor 0
    [ 2.692173] pata_via 0000:04:00.0: version 0.3.4
    [ 2.693001] scsi6 : pata_via
    [ 2.693202] scsi7 : pata_via
    [ 2.693237] ata7: PATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc400 irq 17
    [ 2.693238] ata8: PATA max UDMA/133 cmd 0xc800 ctl 0xc480 bmdma 0xc408 irq 17
    [ 2.693302] ACPI: bus type USB registered
    [ 2.693369] usbcore: registered new interface driver usbfs
    [ 2.693378] usbcore: registered new interface driver hub
    [ 2.693419] usbcore: registered new device driver usb
    [ 2.694028] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 2.694034] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
    [ 2.694163] xhci_hcd 0000:02:00.0: irq 44 for MSI/MSI-X
    [ 2.694168] xhci_hcd 0000:02:00.0: irq 45 for MSI/MSI-X
    [ 2.694173] xhci_hcd 0000:02:00.0: irq 46 for MSI/MSI-X
    [ 2.694177] xhci_hcd 0000:02:00.0: irq 47 for MSI/MSI-X
    [ 2.694181] xhci_hcd 0000:02:00.0: irq 48 for MSI/MSI-X
    [ 2.694382] xHCI xhci_add_endpoint called for root hub
    [ 2.694383] xHCI xhci_check_bandwidth called for root hub
    [ 2.694913] hub 1-0:1.0: USB hub found
    [ 2.694918] hub 1-0:1.0: 2 ports detected
    [ 2.695055] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.695347] ehci-pci: EHCI PCI platform driver
    [ 2.695437] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 2.695532] ohci-pci: OHCI PCI platform driver
    [ 2.695613] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 2.695617] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
    [ 2.697530] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 2.697595] xHCI xhci_add_endpoint called for root hub
    [ 2.697596] xHCI xhci_check_bandwidth called for root hub
    [ 2.697636] hub 2-0:1.0: USB hub found
    [ 2.697645] hub 2-0:1.0: 2 ports detected
    [ 2.697762] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 3
    [ 2.697764] QUIRK: Enable AMD PLL fix
    [ 2.697766] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.697776] ehci-pci 0000:00:12.2: debug port 1
    [ 2.697800] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe6ff800
    [ 2.704582] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 2.704674] hub 3-0:1.0: USB hub found
    [ 2.704677] hub 3-0:1.0: 5 ports detected
    [ 2.704845] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 2.704850] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 2.704852] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.704861] ehci-pci 0000:00:13.2: debug port 1
    [ 2.704883] ehci-pci 0000:00:13.2: irq 17, io mem 0xfe6ff400
    [ 2.714637] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 2.714734] hub 4-0:1.0: USB hub found
    [ 2.714737] hub 4-0:1.0: 5 ports detected
    [ 2.714896] ehci-pci 0000:00:16.2: EHCI Host Controller
    [ 2.714900] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 5
    [ 2.714903] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.714911] ehci-pci 0000:00:16.2: debug port 1
    [ 2.714930] ehci-pci 0000:00:16.2: irq 17, io mem 0xfe6ff000
    [ 2.724628] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 2.724725] hub 5-0:1.0: USB hub found
    [ 2.724728] hub 5-0:1.0: 4 ports detected
    [ 2.724888] ohci-pci 0000:00:12.0: OHCI PCI host controller
    [ 2.724892] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 6
    [ 2.724904] ohci-pci 0000:00:12.0: irq 18, io mem 0xfe6fe000
    [ 2.758021] firewire_ohci 0000:03:00.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 2.782133] hub 6-0:1.0: USB hub found
    [ 2.782138] hub 6-0:1.0: 5 ports detected
    [ 2.782291] ohci-pci 0000:00:13.0: OHCI PCI host controller
    [ 2.782296] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 7
    [ 2.782308] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe6fd000
    [ 2.838807] hub 7-0:1.0: USB hub found
    [ 2.838813] hub 7-0:1.0: 5 ports detected
    [ 2.838974] ohci-pci 0000:00:14.5: OHCI PCI host controller
    [ 2.838978] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 8
    [ 2.838989] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe6fc000
    [ 2.844705] tsc: Refined TSC clocksource calibration: 3415.257 MHz
    [ 2.871387] ata1: SATA link down (SStatus 0 SControl 300)
    [ 2.874721] ata6: SATA link down (SStatus 0 SControl 300)
    [ 2.878060] ata4: SATA link down (SStatus 0 SControl 300)
    [ 2.878096] ata3: SATA link down (SStatus 0 SControl 300)
    [ 2.895510] hub 8-0:1.0: USB hub found
    [ 2.895515] hub 8-0:1.0: 2 ports detected
    [ 2.895650] ohci-pci 0000:00:16.0: OHCI PCI host controller
    [ 2.895654] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 9
    [ 2.895665] ohci-pci 0000:00:16.0: irq 18, io mem 0xfe6f3000
    [ 2.952187] hub 9-0:1.0: USB hub found
    [ 2.952192] hub 9-0:1.0: 4 ports detected
    [ 3.011462] usb 3-3: new high-speed USB device number 2 using ehci-pci
    [ 3.041482] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 3.042668] ata5.00: ATA-8: ST31000524AS, JC45, max UDMA/133
    [ 3.042671] ata5.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
    [ 3.044091] ata5.00: configured for UDMA/133
    [ 3.044818] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 3.046010] ata2.00: ATA-8: ST31000524AS, JC45, max UDMA/133
    [ 3.046012] ata2.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
    [ 3.047443] ata2.00: configured for UDMA/133
    [ 3.047593] scsi 1:0:0:0: Direct-Access ATA ST31000524AS JC45 PQ: 0 ANSI: 5
    [ 3.047815] scsi 4:0:0:0: Direct-Access ATA ST31000524AS JC45 PQ: 0 ANSI: 5
    [ 3.048310] sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 3.048332] sd 4:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 3.048407] sd 1:0:0:0: [sda] Write Protect is off
    [ 3.048410] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.048414] sd 4:0:0:0: [sdb] Write Protect is off
    [ 3.048416] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 3.048445] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.048454] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.082120] sdb: sdb1 < sdb5 >
    [ 3.082492] sd 4:0:0:0: [sdb] Attached SCSI disk
    [ 3.123617] sda: sda1 < sda5 sda6 sda7 sda8 sda9 sda10 >
    [ 3.124128] sd 1:0:0:0: [sda] Attached SCSI disk
    [ 3.258326] firewire_core 0000:03:00.0: created device fw0: GUID 001e8c0000dded87, S400
    [ 3.845323] Switched to clocksource tsc
    [ 3.887097] JFS: nTxBlock = 8192, nTxLock = 65536
    [ 4.225475] usb 7-1: new low-speed USB device number 2 using ohci-pci
    [ 4.639033] usb 9-4: new full-speed USB device number 2 using ohci-pci
    [ 4.953305] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 4.973795] systemd[1]: Set hostname to <chaembian>.
    [ 5.179335] usb 6-4: new full-speed USB device number 2 using ohci-pci
    [ 5.596246] usb 6-5: new low-speed USB device number 3 using ohci-pci
    [ 5.801932] systemd[1]: Cannot add dependency job for unit vnstat.service, ignoring: Unit vnstat.service failed to load: No such file or directory.
    [ 5.801948] 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.802146] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 5.802185] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 5.802193] systemd[1]: Starting Login Prompts.
    [ 5.802200] systemd[1]: Reached target Login Prompts.
    [ 5.802206] systemd[1]: Starting Remote File Systems.
    [ 5.802211] systemd[1]: Reached target Remote File Systems.
    [ 5.802218] systemd[1]: Starting Delayed Shutdown Socket.
    [ 5.802235] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 5.802240] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 5.802253] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 5.802258] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 5.802272] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 5.802278] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 5.802294] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 5.802303] systemd[1]: Starting udev Kernel Socket.
    [ 5.802314] systemd[1]: Listening on udev Kernel Socket.
    [ 5.802321] systemd[1]: Starting udev Control Socket.
    [ 5.802332] systemd[1]: Listening on udev Control Socket.
    [ 5.802340] systemd[1]: Starting Journal Socket.
    [ 5.802364] systemd[1]: Listening on Journal Socket.
    [ 5.828144] systemd[1]: Started Load Kernel Modules.
    [ 5.837412] systemd[1]: Starting Apply Kernel Variables...
    [ 5.837770] systemd[1]: Starting udev Coldplug all Devices...
    [ 5.838054] systemd[1]: Starting Setup Virtual Console...
    [ 5.838365] systemd[1]: Starting Journal Service...
    [ 5.838647] systemd[1]: Started Journal Service.
    [ 6.402315] systemd-journald[139]: Vacuuming done, freed 0 bytes
    [ 7.319880] systemd-udevd[177]: starting version 208
    [ 7.794545] wmi: Mapper loaded
    [ 7.847347] parport_pc 00:05: reported by Plug and Play ACPI
    [ 7.847391] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    [ 7.851969] ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \_SB_.PCI0.SBRG.ASOC.SMRG 1 (20130517/utaddress-251)
    [ 7.851974] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.874491] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
    [ 7.874519] sp5100_tco: PCI Revision ID: 0x41
    [ 7.874547] sp5100_tco: Using 0xfed80b00 for watchdog MMIO address
    [ 7.874557] sp5100_tco: Last reboot was not triggered by watchdog.
    [ 7.874600] sp5100_tco: initialized (0xffffc900123fcb00). heartbeat=60 sec (nowayout=0)
    [ 7.881641] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
    [ 7.881645] ACPI: Power Button [PWRB]
    [ 7.881697] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 7.881699] ACPI: Power Button [PWRF]
    [ 7.882757] ACPI: processor limited to max C-state 1
    [ 7.905064] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 7.918926] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 8.165090] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.165417] r8169 0000:05:00.0: irq 49 for MSI/MSI-X
    [ 8.165792] r8169 0000:05:00.0 eth0: RTL8168e/8111e at 0xffffc900123fe000, 20:cf:30:4c:49:a9, XID 0c200000 IRQ 49
    [ 8.165800] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 8.342332] MCE: In-kernel MCE decoding enabled.
    [ 8.346927] EDAC MC: Ver: 3.0.0
    [ 8.348961] AMD64 EDAC driver v3.4.0
    [ 8.349044] EDAC amd64: DRAM ECC disabled.
    [ 8.349073] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    (Note that use of the override may cause unknown side effects.)
    [ 8.495021] input: PC Speaker as /devices/platform/pcspkr/input/input2
    [ 8.558418] snd_ice1724 0000:06:05.0: enabling device (0000 -> 0001)
    [ 8.558556] snd_ice1724 0000:06:05.0: setting latency timer to 64
    [ 8.587452] ice1724: No matching model found for ID 0xffffffa0
    [ 8.588183] ice1724: Invalid EEPROM (size = 255)
    [ 8.588437] snd_ice1724: probe of 0000:06:05.0 failed with error -5
    [ 8.607952] microcode: CPU0: patch_level=0x010000b6
    [ 8.629397] ppdev: user-space parallel port driver
    [ 8.825646] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input3
    [ 8.825863] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input4
    [ 8.826029] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input5
    [ 8.826190] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    [ 8.826357] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    [ 8.826514] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 8.826667] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 8.826823] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 8.827628] snd_hda_intel 0000:01:05.1: setting latency timer to 64
    [ 8.868368] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:05.1/sound/card1/input11
    [ 9.003261] microcode: CPU0: new patch_level=0x010000c8
    [ 9.003302] microcode: CPU1: patch_level=0x010000b6
    [ 9.003328] microcode: CPU1: new patch_level=0x010000c8
    [ 9.003357] microcode: CPU2: patch_level=0x010000b6
    [ 9.003381] microcode: CPU2: new patch_level=0x010000c8
    [ 9.003396] microcode: CPU3: patch_level=0x010000b6
    [ 9.003412] microcode: CPU3: new patch_level=0x010000c8
    [ 9.003552] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 9.031976] media: Linux media interface: v0.10
    [ 9.034867] Linux video capture interface: v2.00
    [ 9.043789] kvm: Nested Virtualization enabled
    [ 9.043793] kvm: Nested Paging enabled
    [ 9.244784] hidraw: raw HID events driver (C) Jiri Kosina
    [ 9.423576] usbcore: registered new interface driver usbhid
    [ 9.423583] usbhid: USB HID core driver
    [ 9.513383] input: Plus More Enterprise LTD. USB-compliant keyboard as /devices/pci0000:00/0000:00:13.0/usb7/7-1/7-1:1.0/input/input12
    [ 9.513638] hid-generic 0003:0518:0001.0001: input,hidraw0: USB HID v1.10 Keyboard [Plus More Enterprise LTD. USB-compliant keyboard] on usb-0000:00:13.0-1/input0
    [ 9.514469] input: Plus More Enterprise LTD. USB-compliant keyboard as /devices/pci0000:00/0000:00:13.0/usb7/7-1/7-1:1.1/input/input13
    [ 9.514899] hid-generic 0003:0518:0001.0002: input,hidraw1: USB HID v1.10 Mouse [Plus More Enterprise LTD. USB-compliant keyboard] on usb-0000:00:13.0-1/input1
    [ 9.516355] input: C-Media Electronics Inc. Philips SPA5210 as /devices/pci0000:00/0000:00:16.0/usb9/9-4/9-4:1.2/input/input14
    [ 9.516925] hid-generic 0003:0D8C:0126.0003: input,hidraw2: USB HID v1.00 Device [C-Media Electronics Inc. Philips SPA5210] on usb-0000:00:16.0-4/input2
    [ 9.595842] hid-generic 0003:051D:0002.0004: hiddev0,hidraw3: USB HID v1.00 Device [American Power Conversion Back-UPS RS 1000G-IN FW:900.L4 .I USB FW:L4 ] on usb-0000:00:12.0-4/input0
    [ 9.596476] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:12.0/usb6/6-5/6-5:1.0/input/input15
    [ 9.596993] hid-generic 0003:046D:C05B.0005: input,hidraw4: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:12.0-5/input0
    [ 9.885366] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 9.886617] ata5.00: failed to set xfermode (err_mask=0x100)
    [ 10.370083] set resolution quirk: cval->res = 384
    [ 10.370534] uvcvideo: Found UVC 1.00 device <unnamed> (046d:081b)
    [ 10.385720] input: UVC Camera (046d:081b) as /devices/pci0000:00/0000:00:12.2/usb3/3-3/3-3:1.0/input/input16
    [ 10.385897] usbcore: registered new interface driver uvcvideo
    [ 10.385902] USB Video Class driver (1.1.1)
    [ 10.443673] usbcore: registered new interface driver snd-usb-audio
    [ 10.530521] Adding 995992k swap on /dev/sda7. Priority:-1 extents:1 across:995992k FS
    [ 17.204835] systemd-journald[139]: Received request to flush runtime journal from PID 1
    [ 17.564410] systemd-journald[139]: Vacuuming done, freed 4194304 bytes
    [ 17.564429] systemd-journald[139]: Vacuuming done, freed 0 bytes
    [ 17.594012] systemd-journald[139]: Vacuuming done, freed 4198400 bytes
    [ 17.594091] systemd-journald[139]: Deleted empty journal /run/log/journal/e44c../[email protected] (684032 bytes).
    [ 17.594101] systemd-journald[139]: Vacuuming done, freed 684032 bytes
    [ 18.430485] r8169 0000:05:00.0 eth0: link down
    [ 18.430501] r8169 0000:05:00.0 eth0: link down
    [ 18.430540] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 20.057527] r8169 0000:05:00.0 eth0: link up
    [ 20.057545] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 26.308009] systemd-journald[139]: File /var/log/journal/e44c../user-1004.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 31.900749] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
    [ 32.146160] fuse init (API version 7.22)
    [ 63.406994] systemd-journald[139]: File /var/log/journal/e44c../user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
    I did not get any output when I tried: " journalctl -b --dmesg | grep systemd". However, when I tried  "journalctl | grep systemd", I got these:
    Nov 17 23:26:51 chaembian systemd[1]: Starting Sound Card.
    Nov 17 23:26:51 chaembian systemd[1]: Reached target Sound Card.
    Nov 17 23:26:52 chaembian systemd[1]: Found device ST31000524AS.
    Nov 17 23:26:52 chaembian systemd[1]: Starting File System Check on /dev/disk/by-uuid/cd1ecac7-97b5-4bcc-b114-858efb77e4c5...
    Nov 17 23:26:52 chaembian systemd[1]: Found device ST31000524AS.
    Nov 17 23:26:52 chaembian systemd[1]: Starting File System Check on /dev/disk/by-uuid/8f972288-02c8-4dd7-a590-400f4fe60244...
    Nov 17 23:26:53 chaembian systemd[1]: Found device ST31000524AS.
    Nov 17 23:26:53 chaembian systemd[1]: Activating swap /dev/disk/by-uuid/cf5549b8-edd7-465a-985c-c096f39b916e...
    Nov 17 23:26:53 chaembian systemd-fsck[254]: fsck.jfs version 1.1.15, 04-Mar-2011
    Nov 17 23:26:53 chaembian systemd-fsck[254]: processing started: 11/17/2013 23:26:53
    Nov 17 23:26:53 chaembian systemd-fsck[254]: The current device is: /dev/sda9
    Nov 17 23:26:53 chaembian systemd-fsck[254]: Block size in bytes: 4096
    Nov 17 23:26:53 chaembian systemd-fsck[254]: Filesystem size in blocks: 50000094
    Nov 17 23:26:53 chaembian systemd-fsck[254]: **Phase 0 - Replay Journal Log
    Nov 17 23:26:53 chaembian systemd-fsck[254]: Filesystem is clean.
    Nov 17 23:26:53 chaembian systemd[1]: Started File System Check on /dev/disk/by-uuid/8f972288-02c8-4dd7-a590-400f4fe60244.
    Nov 17 23:26:53 chaembian systemd[1]: Activated swap /dev/disk/by-uuid/cf5549b8-edd7-465a-985c-c096f39b916e.
    Nov 17 23:26:53 chaembian systemd[1]: Starting Swap.
    Nov 17 23:26:53 chaembian systemd[1]: Reached target Swap.
    Nov 17 23:26:53 chaembian systemd[1]: Found device ST31000524AS.
    Nov 17 23:26:53 chaembian systemd[1]: Starting File System Check on /dev/disk/by-uuid/b36313d6-8efb-444c-b6c9-0d3ca3bdaad1...
    Nov 17 23:26:53 chaembian systemd[1]: Found device ST31000524AS.
    Nov 17 23:26:53 chaembian systemd[1]: Starting File System Check on /dev/disk/by-uuid/e4ee5aff-ef4a-436c-9385-cb37b98df3e1...
    Nov 17 23:26:53 chaembian systemd[1]: Found device ST31000524AS.
    Nov 17 23:26:53 chaembian systemd[1]: Starting File System Check on /dev/disk/by-uuid/da692a03-33e5-4aad-b716-7dedfea99f85...
    Nov 17 23:26:53 chaembian systemd-fsck[267]: fsck.jfs version 1.1.15, 04-Mar-2011
    Nov 17 23:26:53 chaembian systemd-fsck[267]: processing started: 11/17/2013 23:26:53
    Nov 17 23:26:53 chaembian systemd-fsck[267]: The current device is: /dev/sda8
    Nov 17 23:26:53 chaembian systemd-fsck[267]: Block size in bytes: 4096
    Nov 17 23:26:53 chaembian systemd-fsck[267]: Filesystem size in blocks: 24999140
    Nov 17 23:26:53 chaembian systemd-fsck[267]: **Phase 0 - Replay Journal Log
    Nov 17 23:26:53 chaembian systemd-fsck[267]: Filesystem is clean.
    Nov 17 23:26:53 chaembian systemd[1]: Started File System Check on /dev/disk/by-uuid/b36313d6-8efb-444c-b6c9-0d3ca3bdaad1.
    Nov 17 23:26:53 chaembian systemd[1]: Mounting /home...
    Nov 17 23:26:53 chaembian systemd-fsck[273]: fsck.jfs version 1.1.15, 04-Mar-2011
    Nov 17 23:26:53 chaembian systemd-fsck[273]: processing started: 11/17/2013 23:26:53
    Nov 17 23:26:53 chaembian systemd-fsck[273]: The current device is: /dev/sda10
    Nov 17 23:26:53 chaembian systemd-fsck[273]: Block size in bytes: 4096
    Nov 17 23:26:53 chaembian systemd-fsck[273]: Filesystem size in blocks: 161393838
    Nov 17 23:26:53 chaembian systemd-fsck[273]: **Phase 0 - Replay Journal Log
    Nov 17 23:26:53 chaembian systemd-fsck[273]: Filesystem i

  • Systemd poweroff not working [SOLVED]

    I have installed systemd on both my laptop and my desktop pc. The laptop is working fine, but the desktop PC will not poweroff any more.
    systemctl reboot, halt or poweroff simply run to "Stopped target Remote File Systems" and then sits winking at me.
    Adding --force just gets to the winking quicker.
    To be honest, I don't know where to look.
    Thanks
    Andrew
    arch x86_64 up to date
    Last edited by fdservices (2013-02-14 15:49:23)

    Here is the journal from my last shutdown:
    Oct 30 15:54:40 ezcool login[432]: ROOT LOGIN ON tty1
    Oct 30 15:54:44 ezcool systemd-logind[428]: Removed session 1.
    Oct 30 15:55:01 ezcool /usr/sbin/crond[1326]: pam_unix(crond:session): session opened for user root by (uid=0)
    Oct 30 15:55:01 ezcool /USR/SBIN/CROND[1327]: (root) CMD (scanimage -n)
    Oct 30 15:55:02 ezcool /USR/SBIN/CROND[1326]: (root) CMDOUT (sh: /sbin/ifconfig: No such file or directory)
    Oct 30 15:55:02 ezcool /USR/SBIN/CROND[1338]: (CRON) EXEC FAILED (/usr/sbin/sendmail): No such file or directory
    Oct 30 15:55:05 ezcool systemd[1]: Deactivating swap /dev/sda5...
    Oct 30 15:55:05 ezcool systemd[1]: Deactivating swap /dev/sda5...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Bluetooth.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped target Bluetooth.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Sound Card.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped target Sound Card.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping RPC Port Mapper.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped target RPC Port Mapper.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping clamav updater...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping clamav daemon...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Dynamic DNS Update Client...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping UDisks...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Daemon for power management...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Console Manager...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Daemon for monitoring attached scanners and registering them with colord...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Manage, Install and Generate Color Profiles...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping CUPS Printing Service...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Graphical Interface.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped target Graphical Interface.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Multi-User.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped target Multi-User.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping NFSv4 ID-name mapping daemon...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping NFS Mount Daemon...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Periodic Command Scheduler...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Network Time Service...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Samba SMB/CIFS server...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Avahi mDNS/DNS-SD Stack...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Samba Winbind daemon...
    Oct 30 15:55:05 ezcool rpc.mountd[626]: Caught signal 15, un-registering and exiting.
    Oct 30 15:55:05 ezcool avahi-daemon[422]: Got SIGTERM, quitting.
    Oct 30 15:55:05 ezcool avahi-daemon[422]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.100.5.
    Oct 30 15:55:05 ezcool winbindd[584]: [2012/10/30 15:55:05.500858, 0] winbindd/winbindd.c:212(winbindd_sig_term_handler)
    Oct 30 15:55:05 ezcool winbindd[584]: Got sig[15] terminate (is_parent=1)
    Oct 30 15:55:05 ezcool avahi-daemon[422]: avahi-daemon 0.6.31 exiting.
    Oct 30 15:55:05 ezcool sshd[424]: Received signal 15; terminating.
    Oct 30 15:55:05 ezcool NetworkManager[421]: <warn> disconnected by the system bus.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Samba NetBIOS name server...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping OpenSSH Daemon...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping D-Bus System Message Bus...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Arch Daemons.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped target Arch Daemons.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Login Service...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Login Prompts.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped target Login Prompts.
    Oct 30 15:55:05 ezcool systemd[1]: Stopping Getty on tty1...
    Oct 30 15:55:05 ezcool systemd[1]: Stopping K Display Manager...
    Oct 30 15:55:05 ezcool systemd[1]: Starting Store Sound Card State...
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Avahi mDNS/DNS-SD Stack.
    Oct 30 15:55:05 ezcool NetworkManager[421]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on
    Oct 30 15:55:05 ezcool kdm[1296]: :0[1296]: Abnormal termination of greeter for display :0, code 0, signal 11
    Oct 30 15:55:05 ezcool systemd[1]: Stopped OpenSSH Daemon.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped D-Bus System Message Bus.
    Oct 30 15:55:05 ezcool systemd[1]: systemd-logind.service: main process exited, code=exited, status=1/FAILURE
    Oct 30 15:55:05 ezcool login[432]: pam_unix(login:session): session closed for user root
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Login Service.
    Oct 30 15:55:05 ezcool systemd[1]: Unit systemd-logind.service entered failed state
    Oct 30 15:55:05 ezcool systemd[1]: Stopped K Display Manager.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Manage, Install and Generate Color Profiles.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Console Manager.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Samba SMB/CIFS server.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Samba Winbind daemon.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Samba NetBIOS name server.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Network Time Service.
    Oct 30 15:55:05 ezcool systemd[1]: rpc-mountd.service: main process exited, code=exited, status=1/FAILURE
    Oct 30 15:55:05 ezcool systemd[1]: Stopped NFS Mount Daemon.
    Oct 30 15:55:05 ezcool systemd[1]: Unit rpc-mountd.service entered failed state
    Oct 30 15:55:05 ezcool systemd[1]: Stopped NFSv4 ID-name mapping daemon.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Daemon for power management.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped UDisks.
    Oct 30 15:55:05 ezcool systemd[1]: Stopped Dynamic DNS Update Client.
    Oct 30 15:55:05 ezcool systemd[1]: freshclamd.service: main process exited, code=exited, status=2/INVALIDARGUMENT
    Oct 30 15:55:05 ezcool systemd[1]: Stopped clamav updater.
    Oct 30 15:55:05 ezcool systemd[1]: Unit freshclamd.service entered failed state
    Oct 30 15:55:05 ezcool systemd[1]: Stopped clamav daemon.
    Oct 30 15:55:05 ezcool systemd[1]: Deactivated swap /dev/sda5.
    Oct 30 15:55:06 ezcool systemd[1]: Started Store Sound Card State.
    Oct 30 15:55:06 ezcool systemd[1]: Unmounting RPC pipe filesystem...
    Oct 30 15:55:06 ezcool systemd[1]: Stopping NFS server...
    Oct 30 15:55:06 ezcool systemd[1]: Deactivated swap /dev/disk/by-uuid/b134f334-2434-456d-9b29-1551b70a7e04.
    Oct 30 15:55:06 ezcool kernel: nfsd: last server has exited, flushing export cache
    Oct 30 15:55:06 ezcool systemd[1]: Deactivated swap /dev/disk/by-id/ata-MAXTOR_STM380215AS_6QZ11948-part5.
    Oct 30 15:55:06 ezcool systemd[1]: Stopped CUPS Printing Service.
    Oct 30 15:55:06 ezcool systemd[1]: Unmounted RPC pipe filesystem.
    Oct 30 15:55:06 ezcool systemd[1]: Stopped NFS server.
    Oct 30 15:55:06 ezcool systemd[1]: Stopping RPC Bind...
    Oct 30 15:55:06 ezcool rpcbind[586]: rpcbind terminating on signal. Restart with "rpcbind -w"
    Oct 30 15:55:06 ezcool login[432]: pam_systemd(login:session): Failed to connect to system bus: Did not receive a reply. Possible causes include: th
    Oct 30 15:55:06 ezcool systemd[1]: rpcbind.service: main process exited, code=exited, status=2/INVALIDARGUMENT
    Oct 30 15:55:06 ezcool systemd[1]: Stopped RPC Bind.
    Oct 30 15:55:06 ezcool systemd[1]: Unit rpcbind.service entered failed state
    Oct 30 15:55:06 ezcool systemd[1]: Stopped Getty on tty1.
    Oct 30 15:55:06 ezcool systemd[1]: Stopping /etc/rc.local Compatibility...
    Oct 30 15:55:06 ezcool systemd[1]: Stopped /etc/rc.local Compatibility.
    Oct 30 15:55:06 ezcool systemd[1]: Stopping Permit User Sessions...
    Oct 30 15:55:06 ezcool systemd[1]: Stopping Network.
    Oct 30 15:55:06 ezcool systemd[1]: Stopped target Network.
    Oct 30 15:55:06 ezcool systemd[1]: Stopping Network Manager...
    Oct 30 15:55:06 ezcool NetworkManager[421]: <info> caught signal 15, shutting down normally.
    Oct 30 15:55:06 ezcool dhcpcd[453]: received SIGTERM, stopping
    Oct 30 15:55:06 ezcool dhcpcd[453]: eth0: removing interface
    Oct 30 15:55:06 ezcool NetworkManager[421]: <info> exiting (success)
    Oct 30 15:55:06 ezcool systemd[1]: Stopped Network Manager.
    Oct 30 15:55:06 ezcool systemd[1]: Stopped Permit User Sessions.
    Oct 30 15:55:06 ezcool systemd[1]: Stopping Remote File Systems.
    Oct 30 15:55:06 ezcool systemd[1]: Stopped target Remote File Systems.
    Oct 30 15:56:35 ezcool systemd[1]: colord-sane.service stopping timed out. Killing.
    Oct 30 15:58:05 ezcool systemd[1]: colord-sane.service still around after SIGKILL. Ignoring.
    Oct 30 15:59:35 ezcool systemd[1]: colord-sane.service stopping timed out (2). Killing.
    Oct 30 16:01:05 ezcool systemd[1]: colord-sane.service still around after SIGKILL (2). Entering failed mode.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Daemon for monitoring attached scanners and registering them with colord.
    Oct 30 16:01:05 ezcool systemd[1]: Unit colord-sane.service entered failed state
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Basic System.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped target Basic System.
    Oct 30 16:01:05 ezcool systemd[1]: Starting /etc/rc.local.shutdown Compatibility...
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Dispatch Password Requests to Console Directory Watch.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
    Oct 30 16:01:05 ezcool systemd[1]: Stopping CUPS Printer Service Spool.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped CUPS Printer Service Spool.
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Forward Password Requests to Wall Directory Watch.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Daily Cleanup of Temporary Directories.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Daily Cleanup of Temporary Directories.
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Sockets.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped target Sockets.
    Oct 30 16:01:05 ezcool systemd[1]: Stopping CUPS Printing Service Sockets.
    Oct 30 16:01:05 ezcool systemd[1]: Closed CUPS Printing Service Sockets.
    Oct 30 16:01:05 ezcool systemd[1]: Closed D-Bus System Message Bus Socket.
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Load Kernel Modules...
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Load Kernel Modules.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Apply Kernel Variables.
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Setup Virtual Console.
    Oct 30 16:01:05 ezcool systemd[1]: Unmounting /tmp...
    Oct 30 16:01:05 ezcool systemd[1]: Started /etc/rc.local.shutdown Compatibility.
    Oct 30 16:01:05 ezcool systemd[1]: Started Console System Shutdown Logging.
    Oct 30 16:01:05 ezcool systemd[1]: Unmounted /tmp.
    Oct 30 16:01:05 ezcool systemd[1]: Unmounted /home.
    Oct 30 16:01:05 ezcool systemd[1]: Starting Unmount All Filesystems.
    Oct 30 16:01:05 ezcool systemd[1]: Reached target Unmount All Filesystems.
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Local File Systems (Pre).
    Oct 30 16:01:05 ezcool systemd[1]: Stopped target Local File Systems (Pre).
    Oct 30 16:01:05 ezcool systemd[1]: Stopping Remount Root and Kernel File Systems...
    Oct 30 16:01:05 ezcool systemd[1]: Stopped Remount Root and Kernel File Systems.
    Oct 30 16:01:05 ezcool systemd[1]: Starting Shutdown.
    Oct 30 16:01:05 ezcool systemd[1]: Reached target Shutdown.
    Oct 30 16:01:05 ezcool systemd[1]: Starting Update UTMP about System Shutdown...
    Oct 30 16:01:05 ezcool systemd[1]: Starting Save Random Seed...
    Oct 30 16:01:05 ezcool systemd[1]: Started Update UTMP about System Shutdown.
    Oct 30 16:01:05 ezcool systemd[1]: Started Save Random Seed.
    Oct 30 16:01:05 ezcool systemd[1]: Starting Final Step.
    Oct 30 16:01:05 ezcool systemd[1]: Reached target Final Step.
    Oct 30 16:01:05 ezcool systemd[1]: Starting Power-Off...
    Oct 30 16:01:05 ezcool systemd[1]: Shutting down.
    Oct 30 16:01:05 ezcool systemd-journal[153]: Journal stopped
    but it lies, the final messages to the terminal were:
    Disabling Swaps
    Detaching Loop Devices
    Detaching DM Devices
    it did not power down or shut down.
    Andrew

  • [Solved] Systemd - Overrides settings of Gnome-Power-Manager?

    Hello!
    I've always used the following to lines to tell Gnome-Power-Manager not to suspend my laptop, when the lid is closed:
    org.gnome.settings-daemon.plugins.power lid-close-ac-action 'blank'
    org.gnome.settings-daemon.plugins.power lid-close-battery-action 'blank'
    I remember a huge (and regular...) discussion around Gnome 3, because the developers resisted to re-implemented a button for this in the UI of Gnome3. Well, the two lines above done their job all the time. Since the last update of Systemd this seems to be ignored:
    Oct 09 01:19:58 cupcake systemd-logind[273]: Lid closed.
    Oct 09 01:19:58 cupcake systemd-logind[273]: Suspending...
    Oct 09 01:19:58 cupcake systemd[1]: Starting Sleep.
    Oct 09 01:19:58 cupcake systemd[1]: Reached target Sleep.
    Oct 09 01:19:58 cupcake systemd[1]: Starting Suspend...
    Is anyone other affected? Looks like a real problem for me. If I close the lid I want to close my lid, nothing more an especially not suspend
    /var/log/pacman.log
    [2012-10-08 21:59] upgraded systemd (193-1 -> 194-1)
    [2012-10-08 21:59] upgraded systemd-sysvcompat (193-1 -> 194-1)
    Last edited by hoschi (2012-10-08 23:53:06)

    pablox wrote:
    hoschi wrote:
    Nope. Found it five minutes ago. My shame! Thank you
    https://wiki.archlinux.org/index.php/Sy … th_systemd
    This is driving me crazy. I've read the article, but I still don't understand what I'm supposed to do. I have tried changing values from logind.conf *IgnoreInhibited to yes to no, but the laptop still suspend when the lid is closed .
    All you need to do is set HandleLidSwitch=ignore in logind.conf, this will make systemd ignore the lid switch completely, and leave gnome to handle it. Its pretty self explanatory... You can also set the other similar options to ignore, like HandlePowerKey, HandleSuspendKey, HandleHibernateKey if you want only gnome to handle them.
    Last edited by bwat47 (2012-10-10 22:02:54)

  • [SOLVED]laptop suspend when LID close, even set HandleLidSwitch=ignore

    i've modify
    HandleLidSwitch=ignore
    systemctl restart systemd-logind.service
    But when close LID, it suspend.
    Then i click some key on keybord , it come back.
    /var/log/everything:
    Mar 21 11:20:59 localhost logger: ACPI action undefined: PNP0C0A:00
    Mar 21 11:21:06 localhost dbus-daemon[317]: dbus[317]: [system] Rejected send message, 2 matched rules; type="method_call", sender=":1.229" (uid=1000 pid=22838 comm="systemctl stop laptop-mode.service ") interface="org.freedesktop.systemd1.Manager" member="StopUnit" error name="(unset)" requested_reply="0" destination="org.freedesktop.systemd1" (uid=0 pid=1 comm="/sbin/init ")
    Mar 21 11:21:13 localhost systemd[1]: Stopped Laptop Mode Tools.
    Mar 21 11:21:15 localhost logger: ACPI action undefined: PNP0C0A:00
    Mar 21 11:21:37 localhost systemd[1]: Reloading.
    Mar 21 11:21:37 localhost systemd[1]: /usr/lib/systemd/system-generators/systemd-fstab-generator exited with exit status 1.
    Mar 21 11:21:37 localhost [358276.901952] systemd-fstab-generator[22955]: Failed to create mount unit file /run/systemd/generator/tmp.mount, as it already exists. Duplicate entry in /etc/fstab?
    Mar 21 11:21:47 localhost logger: ACPI action undefined: PNP0C0A:00
    Mar 21 11:22:02 localhost logger: ACPI action undefined: PNP0C0A:00
    Mar 21 11:22:23 localhost logger: LID opened
    Mar 21 11:22:31 localhost systemd[1]: Starting Sleep.
    Mar 21 11:22:31 localhost systemd[1]: Reached target Sleep.
    Mar 21 11:22:31 localhost systemd[1]: Starting Suspend...
    Mar 21 11:22:31 localhost logger: LID closed
    Mar 21 11:22:31 localhost systemd-sleep[23159]: Suspending system...
    Mar 21 11:22:32 localhost kernel: [358330.844138] PM: Syncing filesystems ... done.
    Mar 21 11:22:32 localhost kernel: [358331.305611] PM: Preparing system for mem sleep
    Mar 21 11:22:47 localhost kernel: [358331.412348] Freezing user space processes ... (elapsed 0.02 seconds) done.
    Mar 21 11:22:47 localhost kernel: [358331.439427] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Mar 21 11:22:47 localhost kernel: [358331.452995] PM: Entering mem sleep
    Mar 21 11:22:47 localhost kernel: [358331.453150] Suspending console(s) (use no_console_suspend to debug)
    Mar 21 11:22:47 localhost kernel: [358331.466400] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    Mar 21 11:22:47 localhost kernel: [358331.749415] sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Mar 21 11:22:47 localhost kernel: [358331.749546] sd 0:0:0:0: [sda] Stopping disk
    Mar 21 11:22:47 localhost kernel: [358332.106062] i915 0000:00:02.0: power state changed by ACPI to D3hot
    Mar 21 11:22:47 localhost kernel: [358332.242667] PM: suspend of devices complete after 497.619 msecs
    Mar 21 11:22:47 localhost kernel: [358332.243146] PM: late suspend of devices complete after 0.473 msecs
    Mar 21 11:22:47 localhost kernel: [358332.243658] xhci_hcd 0000:03:00.0: wake-up capability enabled by ACPI
    Mar 21 11:22:47 localhost kernel: [358332.269361] ehci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
    Mar 21 11:22:47 localhost kernel: [358332.282850] ehci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
    Mar 21 11:22:47 localhost kernel: [358332.309313] PM: noirq suspend of devices complete after 66.169 msecs
    Mar 21 11:22:47 localhost kernel: [358332.309974] ACPI: Preparing to enter system sleep state S3
    Mar 21 11:22:47 localhost kernel: [358332.310597] PM: Saving platform NVS memory
    Mar 21 11:22:47 localhost kernel: [358332.317339] Disabling non-boot CPUs ...
    Mar 21 11:22:47 localhost kernel: [358332.320383] smpboot: CPU 1 is now offline
    Mar 21 11:22:47 localhost kernel: [358332.323050] smpboot: CPU 2 is now offline
    Mar 21 11:22:47 localhost kernel: [358332.325460] smpboot: CPU 3 is now offline
    Mar 21 11:22:47 localhost kernel: [358332.327433] ACPI: Low-level resume complete
    Mar 21 11:22:47 localhost kernel: [358332.327483] PM: Restoring platform NVS memory
    Mar 21 11:22:47 localhost kernel: [358332.328066] Enabling non-boot CPUs ...
    Mar 21 11:22:47 localhost kernel: [358332.331542] smpboot: Booting Node 0 Processor 1 APIC 0x1
    Mar 21 11:22:47 localhost kernel: [358332.355520] CPU1 is up
    Mar 21 11:22:47 localhost kernel: [358332.358971] smpboot: Booting Node 0 Processor 2 APIC 0x2
    Mar 21 11:22:47 localhost kernel: [358332.587540] CPU2 is up
    Mar 21 11:22:47 localhost kernel: [358332.590984] smpboot: Booting Node 0 Processor 3 APIC 0x3
    Mar 21 11:22:47 localhost kernel: [358332.605172] CPU3 is up
    Mar 21 11:22:47 localhost kernel: [358332.610534] ACPI: Waking up from system sleep state S3
    Mar 21 11:22:47 localhost systemd[1]: Time has been changed
    Mar 21 11:22:47 localhost systemd[1]: systemd-tmpfiles-clean.timer: time change, recalculating next elapse.
    Mar 21 11:22:47 localhost acpid: client 328[0:0] has disconnected
    Mar 21 11:22:47 localhost systemd-sleep[23159]: System resumed.
    Mar 21 11:22:47 localhost kernel: [358332.611098] i915 0000:00:02.0: power state changed by ACPI to D0
    Mar 21 11:22:47 localhost kernel: [358332.661492] ehci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
    Mar 21 11:22:47 localhost kernel: [358332.688143] ehci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
    Mar 21 11:22:47 localhost kernel: [358332.715055] sdhci-pci 0000:01:00.0: MMC controller base frequency changed to 50Mhz.
    Mar 21 11:22:47 localhost kernel: [358332.741549] xhci_hcd 0000:03:00.0: wake-up capability disabled by ACPI
    Mar 21 11:22:47 localhost kernel: [358332.741712] PM: noirq resume of devices complete after 130.745 msecs
    Mar 21 11:22:47 localhost kernel: [358332.743008] PM: early resume of devices complete after 0.206 msecs
    Mar 21 11:22:47 localhost kernel: [358332.743043] i915 0000:00:02.0: setting latency timer to 64
    Mar 21 11:22:47 localhost kernel: [358332.743146] mei 0000:00:16.0: irq 46 for MSI/MSI-X
    Mar 21 11:22:47 localhost kernel: [358332.743195] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    Mar 21 11:22:47 localhost kernel: [358332.743215] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    Mar 21 11:22:47 localhost kernel: [358332.743301] snd_hda_intel 0000:00:1b.0: irq 49 for MSI/MSI-X
    Mar 21 11:22:47 localhost kernel: [358332.743481] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    Mar 21 11:22:47 localhost kernel: [358332.743508] ahci 0000:00:1f.2: setting latency timer to 64
    Mar 21 11:22:47 localhost kernel: [358332.743611] iwlwifi 0000:02:00.0: RF_KILL bit toggled to enable radio.
    Mar 21 11:22:47 localhost kernel: [358332.744213] mei 0000:00:16.0: wd: failed to find the client
    Mar 21 11:22:47 localhost kernel: [358332.811881] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    Mar 21 11:22:47 localhost kernel: [358332.981624] usb 4-1.2: reset high-speed USB device number 3 using ehci_hcd
    Mar 21 11:22:47 localhost kernel: [358333.061455] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mar 21 11:22:47 localhost kernel: [358333.061936] ACPI Error: [GTF0] Namespace lookup failure, AE_NOT_FOUND (20120913/psargs-359)
    Mar 21 11:22:47 localhost kernel: [358333.061944] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff880149a55cf8), AE_NOT_FOUND (20120913/psparse-536)
    Mar 21 11:22:47 localhost kernel: [358333.062035] ACPI Error: [GTF0] Namespace lookup failure, AE_NOT_FOUND (20120913/psargs-359)
    Mar 21 11:22:47 localhost kernel: [358333.062041] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff880149a55d20), AE_NOT_FOUND (20120913/psparse-536)
    Mar 21 11:22:47 localhost kernel: [358333.062591] ACPI Error: [GTF0] Namespace lookup failure, AE_NOT_FOUND (20120913/psargs-359)
    Mar 21 11:22:47 localhost kernel: [358333.062599] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._SDD] (Node ffff880149a55cf8), AE_NOT_FOUND (20120913/psparse-536)
    Mar 21 11:22:47 localhost kernel: [358333.062690] ACPI Error: [GTF0] Namespace lookup failure, AE_NOT_FOUND (20120913/psargs-359)
    Mar 21 11:22:47 localhost kernel: [358333.062696] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.PRT0._GTF] (Node ffff880149a55d20), AE_NOT_FOUND (20120913/psparse-536)
    Mar 21 11:22:47 localhost kernel: [358333.062739] ata1.00: configured for UDMA/100
    Mar 21 11:22:47 localhost kernel: [358333.074899] sd 0:0:0:0: [sda] Starting disk
    Mar 21 11:22:47 localhost kernel: [358333.246448] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    Mar 21 11:22:47 localhost kernel: [358333.253820] iwlwifi 0000:02:00.0: Radio type=0x0-0x0-0x3
    Mar 21 11:22:47 localhost kernel: [358333.391539] restoring control 00000000-0000-0000-0000-000000000101/0/2
    Mar 21 11:22:47 localhost kernel: [358333.391541] restoring control 00000000-0000-0000-0000-000000000101/1/3
    Mar 21 11:22:47 localhost kernel: [358333.391543] restoring control 00000000-0000-0000-0000-000000000101/2/6
    Mar 21 11:22:47 localhost kernel: [358333.391544] restoring control 00000000-0000-0000-0000-000000000101/3/7
    Mar 21 11:22:47 localhost kernel: [358333.391545] restoring control 00000000-0000-0000-0000-000000000101/5/9
    Mar 21 11:22:47 localhost kernel: [358333.693001] PM: resume of devices complete after 950.103 msecs
    Mar 21 11:22:47 localhost kernel: [358333.694210] PM: Finishing wakeup.
    Mar 21 11:22:47 localhost kernel: [358333.694214] Restarting tasks ... done.
    Mar 21 11:22:47 localhost kernel: [358333.706265] video LNXVIDEO:01: Restoring backlight state
    Mar 21 11:22:47 localhost logger: ACPI action undefined: PNP0C0A:00
    Mar 21 11:22:47 localhost acpid: client connected from 328[0:0]
    Mar 21 11:22:47 localhost acpid: 1 client rule loaded
    Mar 21 11:22:47 localhost systemd[1]: Started Suspend.
    Mar 21 11:22:47 localhost systemd[1]: Service sleep.target is not needed anymore. Stopping.
    Mar 21 11:22:47 localhost systemd[1]: Stopping Sleep.
    Mar 21 11:22:47 localhost systemd[1]: Stopped target Sleep.
    Mar 21 11:22:47 localhost systemd[1]: Starting Suspend.
    Mar 21 11:22:47 localhost systemd[1]: Reached target Suspend.
    Mar 21 11:22:50 localhost logger: ACPI action undefined: PNP0C0A:00
    Last edited by whille (2013-03-21 05:26:24)

    You are still using acpid.  That is triggering the suspend, not logind.
    Edit: Also use [ code ] [ /code ] tags (without the spaces) for things like your logs.  Hit the "quote" button if you are more of a visual learner.
    This is how you use code tags.
    Last edited by WonderWoofy (2013-03-21 03:38:53)

  • [systemd] shutdown takes a long time

    Hello.
    It takes quite a long time for my system to shutdown. The systemd ArchWiki suggests to log the shutdown like this. I am not quite sure what to look for. I suspect that smplayer or deluged might be the problem. Am I right and furthermore what can I do about it?
    Thank you for your time.
    Here the shutdown log:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.5.3-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Aug 26 09:14:51 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=55614e59-14b9-47c5-a609-fd76662e6403 ro systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M enforcing=0 quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009c000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005ffeffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000005fff0000-0x000000005fff2fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000005fff3000-0x000000005fffffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.2 present.
    [ 0.000000] DMI: /MS-7030, BIOS 6.00 PG 11/10/2005
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP bridge at 00:00:00
    [ 0.000000] Aperture from AGP @ e0000000 old size 32 MB
    [ 0.000000] Aperture size 4096 MB (APSIZE 0) is not right, using settings from NB
    [ 0.000000] Aperture from AGP @ e0000000 size 32 MB (APSIZE 0)
    [ 0.000000] e820: last_pfn = 0x5fff0 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-C7FFF write-protect
    [ 0.000000] C8000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FFC0000000 write-back
    [ 0.000000] 1 base 0040000000 mask FFE0000000 write-back
    [ 0.000000] 2 base 00E0000000 mask FFF0000000 write-combining
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f4fc0-0x000f4fcf] mapped at [ffff8800000f4fc0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x5ffeffff]
    [ 0.000000] [mem 0x00000000-0x5fdfffff] page 2M
    [ 0.000000] [mem 0x5fe00000-0x5ffeffff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0x5ffeffff @ [mem 0x1fcfd000-0x1fffffff]
    [ 0.000000] log_buf_len: 1048576
    [ 0.000000] early log buf free: 521388(99%)
    [ 0.000000] RAMDISK: [mem 0x37a32000-0x37d10fff]
    [ 0.000000] ACPI: RSDP 00000000000f8eb0 00014 (v00 Nvidia)
    [ 0.000000] ACPI: RSDT 000000005fff3040 00034 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP 000000005fff30c0 00074 (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT 000000005fff3180 048C1 (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000E)
    [ 0.000000] ACPI: FACS 000000005fff0000 00040
    [ 0.000000] ACPI: SSDT 000000005fff7b80 000D6 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    [ 0.000000] ACPI: SRAT 000000005fff7cc0 00090 (v01 AMD HAMMER 00000001 AMD 00000001)
    [ 0.000000] ACPI: APIC 000000005fff7ac0 0007C (v01 Nvidia AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
    [ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
    [ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00100000-0x5fffffff]
    [ 0.000000] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0x5ffeffff] -> [mem 0x00000000-0x5ffeffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x5ffeffff]
    [ 0.000000] NODE_DATA [mem 0x5feec000-0x5feeffff]
    [ 0.000000] [ffffea0000000000-ffffea00017fffff] PMD -> [ffff88005de00000-ffff88005f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009bfff]
    [ 0.000000] node 0: [mem 0x00100000-0x5ffeffff]
    [ 0.000000] On node 0 totalpages: 393084
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3910 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 6080 pages used for memmap
    [ 0.000000] DMA32 zone: 383024 pages, LIFO batch:31
    [ 0.000000] Nvidia board detected. Ignoring ACPI timer override.
    [ 0.000000] If you got timer trouble try acpi_use_timer_override
    [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: BIOS IRQ0 override ignored.
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] ACPI: IRQ14 used by override.
    [ 0.000000] ACPI: IRQ15 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] e820: [mem 0x60000000-0xfebfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88005fc00000 s83392 r8192 d23104 u1048576
    [ 0.000000] pcpu-alloc: s83392 r8192 d23104 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 386934
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=55614e59-14b9-47c5-a609-fd76662e6403 ro systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M enforcing=0 quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] AGP bridge at 00:00:00
    [ 0.000000] Aperture from AGP @ e0000000 old size 32 MB
    [ 0.000000] Aperture size 4096 MB (APSIZE 0) is not right, using settings from NB
    [ 0.000000] Aperture from AGP @ e0000000 size 32 MB (APSIZE 0)
    [ 0.000000] Node 0: aperture @ e0000000 size 256 MB
    [ 0.000000] Memory: 1532356k/1572800k available (4635k kernel code, 464k absent, 39980k reserved, 4212k data, 756k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 6291456 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 2009.231 MHz processor.
    [ 0.000000] Marking TSC unstable due to TSCs unsynchronized
    [ 0.006673] Calibrating delay loop (skipped), value calculated using timer frequency.. 4020.89 BogoMIPS (lpj=6697436)
    [ 0.006678] pid_max: default: 32768 minimum: 301
    [ 0.006716] Security Framework initialized
    [ 0.006725] AppArmor: AppArmor disabled by boot time parameter
    [ 0.006963] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.010848] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.012136] Mount-cache hash table entries: 256
    [ 0.012496] Initializing cgroup subsys cpuacct
    [ 0.012500] Initializing cgroup subsys memory
    [ 0.012520] Initializing cgroup subsys devices
    [ 0.012522] Initializing cgroup subsys freezer
    [ 0.012524] Initializing cgroup subsys net_cls
    [ 0.012526] Initializing cgroup subsys blkio
    [ 0.012564] tseg: 0000000000
    [ 0.012585] mce: CPU supports 5 MCE banks
    [ 0.012635] SMP alternatives: switching to UP code
    [ 0.018800] ACPI: Core revision 20120320
    [ 0.022927] ftrace: allocating 17956 entries in 71 pages
    [ 0.030518] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
    [ 0.064541] CPU0: AMD Athlon(tm) 64 Processor 3000+ stepping 00
    [ 0.066663] Performance Events: AMD PMU driver.
    [ 0.066663] ... version: 0
    [ 0.066663] ... bit width: 48
    [ 0.066663] ... generic registers: 4
    [ 0.066663] ... value mask: 0000ffffffffffff
    [ 0.066663] ... max period: 00007fffffffffff
    [ 0.066663] ... fixed-purpose events: 0
    [ 0.066663] ... event mask: 000000000000000f
    [ 0.083576] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083636] Brought up 1 CPUs
    [ 0.083638] Total of 1 processors activated (4020.89 BogoMIPS).
    [ 0.084405] devtmpfs: initialized
    [ 0.086410] PM: Registering ACPI NVS region [mem 0x5fff0000-0x5fff2fff] (12288 bytes)
    [ 0.087408] NET: Registered protocol family 16
    [ 0.087567] node 0 link 0: io port [9000, ffff]
    [ 0.087570] TOM: 0000000060000000 aka 1536M
    [ 0.087573] node 0 link 0: mmio [a0000, bffff]
    [ 0.087577] node 0 link 0: mmio [d0000000, fe02ffff]
    [ 0.087580] bus: [00, 02] on node 0 link 0
    [ 0.087583] bus: 00 [io 0x0000-0xffff]
    [ 0.087585] bus: 00 [mem 0x000a0000-0x000bffff]
    [ 0.087587] bus: 00 [mem 0x60000000-0xfcffffffff]
    [ 0.087627] ACPI: bus type pci registered
    [ 0.087696] PCI: Using configuration type 1 for base access
    [ 0.088295] bio: create slab <bio-0> at 0
    [ 0.088374] ACPI: Added _OSI(Module Device)
    [ 0.088376] ACPI: Added _OSI(Processor Device)
    [ 0.088378] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.088380] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.089228] ACPI: EC: Look up EC in DSDT
    [ 0.093337] ACPI: Interpreter enabled
    [ 0.093342] ACPI: (supports S0 S1 S4 S5)
    [ 0.093368] ACPI: Using IOAPIC for interrupt routing
    [ 0.094190] ACPI: Power Resource [ISAV] (on)
    [ 0.099077] ACPI: No dock devices found.
    [ 0.099086] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.099148] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.099226] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.099229] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.099233] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.099236] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    [ 0.099238] pci_root PNP0A03:00: host bridge window [mem 0x60000000-0xfebfffff] (ignored)
    [ 0.099241] PCI: root bus 00: hardware-probed resources
    [ 0.099287] PCI host bridge to bus 0000:00
    [ 0.099291] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.099293] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.099296] pci_bus 0000:00: root bus resource [mem 0x60000000-0xfcffffffff]
    [ 0.099312] pci 0000:00:00.0: [10de:00e1] type 00 class 0x060000
    [ 0.099321] pci 0000:00:00.0: reg 10: [mem 0xe0000000-0xefffffff pref]
    [ 0.099381] pci 0000:00:01.0: [10de:00e0] type 00 class 0x060100
    [ 0.099413] pci 0000:00:01.1: [10de:00e4] type 00 class 0x0c0500
    [ 0.099420] pci 0000:00:01.1: reg 10: [io 0xfc00-0xfc1f]
    [ 0.099432] pci 0000:00:01.1: reg 20: [io 0x4c00-0x4c3f]
    [ 0.099437] pci 0000:00:01.1: reg 24: [io 0x4c40-0x4c7f]
    [ 0.099451] pci 0000:00:01.1: PME# supported from D3hot D3cold
    [ 0.099470] pci 0000:00:02.0: [10de:00e7] type 00 class 0x0c0310
    [ 0.099477] pci 0000:00:02.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
    [ 0.099502] pci 0000:00:02.0: supports D1 D2
    [ 0.099504] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.099518] pci 0000:00:02.1: [10de:00e7] type 00 class 0x0c0310
    [ 0.099525] pci 0000:00:02.1: reg 10: [mem 0xfe02e000-0xfe02efff]
    [ 0.099550] pci 0000:00:02.1: supports D1 D2
    [ 0.099552] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.099567] pci 0000:00:02.2: [10de:00e8] type 00 class 0x0c0320
    [ 0.099575] pci 0000:00:02.2: reg 10: [mem 0xfe02d000-0xfe02d0ff]
    [ 0.099605] pci 0000:00:02.2: supports D1 D2
    [ 0.099607] pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.099628] pci 0000:00:06.0: [10de:00ea] type 00 class 0x040100
    [ 0.099635] pci 0000:00:06.0: reg 10: [io 0xf000-0xf0ff]
    [ 0.099640] pci 0000:00:06.0: reg 14: [io 0xec00-0xec7f]
    [ 0.099645] pci 0000:00:06.0: reg 18: [mem 0xfe02c000-0xfe02cfff]
    [ 0.099665] pci 0000:00:06.0: supports D1 D2
    [ 0.099680] pci 0000:00:08.0: [10de:00e5] type 00 class 0x01018a
    [ 0.099696] pci 0000:00:08.0: reg 20: [io 0xe000-0xe00f]
    [ 0.099723] pci 0000:00:09.0: [10de:00ee] type 00 class 0x010185
    [ 0.099730] pci 0000:00:09.0: reg 10: [io 0x09e0-0x09e7]
    [ 0.099735] pci 0000:00:09.0: reg 14: [io 0x0be0-0x0be3]
    [ 0.099740] pci 0000:00:09.0: reg 18: [io 0x0960-0x0967]
    [ 0.099744] pci 0000:00:09.0: reg 1c: [io 0x0b60-0x0b63]
    [ 0.099749] pci 0000:00:09.0: reg 20: [io 0xcc00-0xcc0f]
    [ 0.099754] pci 0000:00:09.0: reg 24: [io 0xc800-0xc87f]
    [ 0.099779] pci 0000:00:0a.0: [10de:00e3] type 00 class 0x010185
    [ 0.099786] pci 0000:00:0a.0: reg 10: [io 0x09f0-0x09f7]
    [ 0.099791] pci 0000:00:0a.0: reg 14: [io 0x0bf0-0x0bf3]
    [ 0.099796] pci 0000:00:0a.0: reg 18: [io 0x0970-0x0977]
    [ 0.099801] pci 0000:00:0a.0: reg 1c: [io 0x0b70-0x0b73]
    [ 0.099806] pci 0000:00:0a.0: reg 20: [io 0xb400-0xb40f]
    [ 0.099810] pci 0000:00:0a.0: reg 24: [io 0xb000-0xb07f]
    [ 0.099834] pci 0000:00:0b.0: [10de:00e2] type 01 class 0x060400
    [ 0.099865] pci 0000:00:0e.0: [10de:00ed] type 01 class 0x060400
    [ 0.099892] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
    [ 0.099913] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
    [ 0.099931] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
    [ 0.099951] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
    [ 0.100003] pci 0000:01:00.0: [10de:0221] type 00 class 0x030000
    [ 0.100017] pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
    [ 0.100025] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff pref]
    [ 0.100033] pci 0000:01:00.0: reg 18: [mem 0xfb000000-0xfbffffff]
    [ 0.100056] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.100111] pci 0000:00:0b.0: PCI bridge to [bus 01-01]
    [ 0.100115] pci 0000:00:0b.0: bridge window [io 0xa000-0xafff]
    [ 0.100119] pci 0000:00:0b.0: bridge window [mem 0xfa000000-0xfcffffff]
    [ 0.100123] pci 0000:00:0b.0: bridge window [mem 0xd0000000-0xdfffffff pref]
    [ 0.100147] pci 0000:02:07.0: [1814:0301] type 00 class 0x028000
    [ 0.100158] pci 0000:02:07.0: reg 10: [mem 0xfdff0000-0xfdff7fff]
    [ 0.100216] pci 0000:02:08.0: [10ec:8139] type 00 class 0x020000
    [ 0.100228] pci 0000:02:08.0: reg 10: [io 0x9c00-0x9cff]
    [ 0.100235] pci 0000:02:08.0: reg 14: [mem 0xfdfff000-0xfdfff0ff]
    [ 0.100260] pci 0000:02:08.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.100278] pci 0000:02:08.0: supports D1 D2
    [ 0.100280] pci 0000:02:08.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.100298] pci 0000:02:09.0: [1106:3038] type 00 class 0x0c0300
    [ 0.100326] pci 0000:02:09.0: reg 20: [io 0x9800-0x981f]
    [ 0.100351] pci 0000:02:09.0: supports D1 D2
    [ 0.100354] pci 0000:02:09.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.100371] pci 0000:02:09.1: [1106:3038] type 00 class 0x0c0300
    [ 0.100399] pci 0000:02:09.1: reg 20: [io 0x9400-0x941f]
    [ 0.100424] pci 0000:02:09.1: supports D1 D2
    [ 0.100427] pci 0000:02:09.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.100445] pci 0000:02:09.2: [1106:3104] type 00 class 0x0c0320
    [ 0.100456] pci 0000:02:09.2: reg 10: [mem 0xfdffe000-0xfdffe0ff]
    [ 0.100499] pci 0000:02:09.2: supports D1 D2
    [ 0.100501] pci 0000:02:09.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.100527] pci 0000:00:0e.0: PCI bridge to [bus 02-02]
    [ 0.100531] pci 0000:00:0e.0: bridge window [io 0x9000-0x9fff]
    [ 0.100534] pci 0000:00:0e.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.100537] pci 0000:00:0e.0: bridge window [mem 0xfde00000-0xfdefffff pref]
    [ 0.100546] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.100629] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.100813] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
    [ 0.100901] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
    [ 0.125942] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.125994] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126043] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126092] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.126140] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126195] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.126245] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126293] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126341] ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126391] ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126440] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126489] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126538] ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.126591] ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126640] ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126697] ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.126753] ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.126812] ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.126889] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0
    [ 0.126950] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
    [ 0.127010] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
    [ 0.127070] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0
    [ 0.127110] ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
    [ 0.127183] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
    [ 0.127250] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0
    [ 0.127316] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127382] ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127449] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
    [ 0.127515] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0
    [ 0.127581] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
    [ 0.127647] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
    [ 0.127713] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127780] ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127847] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
    [ 0.127919] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
    [ 0.127991] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
    [ 0.128144] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.128148] vgaarb: loaded
    [ 0.128149] vgaarb: bridge control possible 0000:01:00.0
    [ 0.128204] PCI: Using ACPI for IRQ routing
    [ 0.128208] PCI: pci_cache_line_size set to 64 bytes
    [ 0.128221] pci 0000:00:00.0: address space collision: [mem 0xe0000000-0xefffffff pref] conflicts with GART [mem 0xe0000000-0xefffffff]
    [ 0.128280] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
    [ 0.128283] e820: reserve RAM buffer [mem 0x5fff0000-0x5fffffff]
    [ 0.128429] NetLabel: Initializing
    [ 0.128430] NetLabel: domain hash size = 128
    [ 0.128432] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.128453] NetLabel: unlabeled traffic allowed by default
    [ 0.139353] pnp: PnP ACPI init
    [ 0.139383] ACPI: bus type pnp registered
    [ 0.139432] pnp 00:00: [io 0x4000-0x407f]
    [ 0.139434] pnp 00:00: [io 0x4080-0x40ff]
    [ 0.139437] pnp 00:00: [io 0x4400-0x447f]
    [ 0.139439] pnp 00:00: [io 0x4480-0x44ff]
    [ 0.139441] pnp 00:00: [io 0x4800-0x487f]
    [ 0.139444] pnp 00:00: [io 0x4880-0x48ff]
    [ 0.139550] system 00:00: [io 0x4000-0x407f] has been reserved
    [ 0.139554] system 00:00: [io 0x4080-0x40ff] has been reserved
    [ 0.139557] system 00:00: [io 0x4400-0x447f] has been reserved
    [ 0.139560] system 00:00: [io 0x4480-0x44ff] has been reserved
    [ 0.139563] system 00:00: [io 0x4800-0x487f] has been reserved
    [ 0.139566] system 00:00: [io 0x4880-0x48ff] has been reserved
    [ 0.139572] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.139776] pnp 00:01: [mem 0x0009e000-0x000a1fff]
    [ 0.139779] pnp 00:01: [mem 0x000cec00-0x000cffff]
    [ 0.139781] pnp 00:01: [mem 0x000f0000-0x000fbfff]
    [ 0.139784] pnp 00:01: [mem 0x000fc000-0x000fffff]
    [ 0.139786] pnp 00:01: [mem 0x5fff0000-0x5fffffff]
    [ 0.139789] pnp 00:01: [mem 0xffff0000-0xffffffff]
    [ 0.139792] pnp 00:01: [mem 0x00000000-0x0009ffff]
    [ 0.139794] pnp 00:01: [mem 0x00100000-0x5ffeffff]
    [ 0.139797] pnp 00:01: [mem 0xfec00000-0xfec00fff]
    [ 0.139799] pnp 00:01: [mem 0xfee00000-0xfeefffff]
    [ 0.139802] pnp 00:01: [mem 0xfefff000-0xfeffffff]
    [ 0.139804] pnp 00:01: [mem 0xfff80000-0xfff80fff]
    [ 0.139807] pnp 00:01: [mem 0xfff90000-0xfffbffff]
    [ 0.139809] pnp 00:01: [mem 0xfffed000-0xfffeffff]
    [ 0.139815] pnp 00:01: disabling [mem 0x0009e000-0x000a1fff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139819] pnp 00:01: disabling [mem 0x000cec00-0x000cffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139823] pnp 00:01: disabling [mem 0x000f0000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139827] pnp 00:01: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139830] pnp 00:01: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139834] pnp 00:01: disabling [mem 0x00100000-0x5ffeffff] because it overlaps 0000:00:00.0 BAR 0 [mem 0x00000000-0x0fffffff pref]
    [ 0.139885] system 00:01: [mem 0x5fff0000-0x5fffffff] could not be reserved
    [ 0.139889] system 00:01: [mem 0xffff0000-0xffffffff] has been reserved
    [ 0.139892] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.139895] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
    [ 0.139898] system 00:01: [mem 0xfefff000-0xfeffffff] has been reserved
    [ 0.139902] system 00:01: [mem 0xfff80000-0xfff80fff] has been reserved
    [ 0.139905] system 00:01: [mem 0xfff90000-0xfffbffff] has been reserved
    [ 0.139908] system 00:01: [mem 0xfffed000-0xfffeffff] has been reserved
    [ 0.139912] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.139976] pnp 00:02: [bus 00-ff]
    [ 0.140003] pnp 00:02: [io 0x0cf8-0x0cff]
    [ 0.140006] pnp 00:02: [io 0x0cf0-0x0cf3]
    [ 0.140009] pnp 00:02: [io 0x0000-0x0cf7 window]
    [ 0.140011] pnp 00:02: [io 0x0d00-0xffff window]
    [ 0.140014] pnp 00:02: [mem 0x000a0000-0x000bffff window]
    [ 0.140017] pnp 00:02: [mem 0x000c0000-0x000dffff window]
    [ 0.140020] pnp 00:02: [mem 0x60000000-0xfebfffff window]
    [ 0.140101] pnp 00:02: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.140629] pnp 00:03: [io 0x0010-0x001f]
    [ 0.140631] pnp 00:03: [io 0x0022-0x003f]
    [ 0.140634] pnp 00:03: [io 0x0044-0x005f]
    [ 0.140636] pnp 00:03: [io 0x0062-0x0063]
    [ 0.140639] pnp 00:03: [io 0x0065-0x006f]
    [ 0.140641] pnp 00:03: [io 0x0074-0x007f]
    [ 0.140644] pnp 00:03: [io 0x0091-0x0093]
    [ 0.140646] pnp 00:03: [io 0x00a2-0x00bf]
    [ 0.140648] pnp 00:03: [io 0x00e0-0x00ef]
    [ 0.140651] pnp 00:03: [io 0x0b78-0x0b7b]
    [ 0.140653] pnp 00:03: [io 0x0f78-0x0f7b]
    [ 0.140656] pnp 00:03: [io 0x0a78-0x0a7b]
    [ 0.140658] pnp 00:03: [io 0x0e78-0x0e7b]
    [ 0.140660] pnp 00:03: [io 0x0bbc-0x0bbf]
    [ 0.140663] pnp 00:03: [io 0x0fbc-0x0fbf]
    [ 0.140665] pnp 00:03: [io 0x04d0-0x04d1]
    [ 0.140741] system 00:03: [io 0x0b78-0x0b7b] has been reserved
    [ 0.140744] system 00:03: [io 0x0f78-0x0f7b] has been reserved
    [ 0.140748] system 00:03: [io 0x0a78-0x0a7b] has been reserved
    [ 0.140751] system 00:03: [io 0x0e78-0x0e7b] has been reserved
    [ 0.140754] system 00:03: [io 0x0bbc-0x0bbf] has been reserved
    [ 0.140757] system 00:03: [io 0x0fbc-0x0fbf] has been reserved
    [ 0.140760] system 00:03: [io 0x04d0-0x04d1] has been reserved
    [ 0.140763] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.140777] pnp 00:04: [dma 4]
    [ 0.140780] pnp 00:04: [io 0x0000-0x000f]
    [ 0.140782] pnp 00:04: [io 0x0080-0x0090]
    [ 0.140785] pnp 00:04: [io 0x0094-0x009f]
    [ 0.140787] pnp 00:04: [io 0x00c0-0x00df]
    [ 0.140832] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.140844] pnp 00:05: [io 0x0070-0x0073]
    [ 0.140862] pnp 00:05: [irq 8]
    [ 0.140904] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.140914] pnp 00:06: [io 0x0061]
    [ 0.140959] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.140969] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.140976] pnp 00:07: [irq 13]
    [ 0.141019] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.141243] pnp 00:08: [io 0x03f8-0x03ff]
    [ 0.141251] pnp 00:08: [irq 4]
    [ 0.141340] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.141514] pnp 00:09: [io 0x02f8-0x02ff]
    [ 0.141522] pnp 00:09: [irq 3]
    [ 0.141596] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.141881] pnp 00:0a: [io 0x0378-0x037f]
    [ 0.141883] pnp 00:0a: [io 0x0778-0x077b]
    [ 0.141890] pnp 00:0a: [irq 7]
    [ 0.141960] pnp 00:0a: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.142046] pnp 00:0b: [io 0x0060]
    [ 0.142049] pnp 00:0b: [io 0x0064]
    [ 0.142055] pnp 00:0b: [irq 1]
    [ 0.142106] pnp 00:0b: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.142129] pnp: PnP ACPI: found 12 devices
    [ 0.142131] ACPI: ACPI bus type pnp unregistered
    [ 0.148689] Switching to clocksource acpi_pm
    [ 0.148760] pci 0000:01:00.0: BAR 6: assigned [mem 0xfc000000-0xfc01ffff pref]
    [ 0.148765] pci 0000:00:0b.0: PCI bridge to [bus 01-01]
    [ 0.148769] pci 0000:00:0b.0: bridge window [io 0xa000-0xafff]
    [ 0.148774] pci 0000:00:0b.0: bridge window [mem 0xfa000000-0xfcffffff]
    [ 0.148778] pci 0000:00:0b.0: bridge window [mem 0xd0000000-0xdfffffff pref]
    [ 0.148787] pci 0000:02:08.0: BAR 6: assigned [mem 0xfde00000-0xfde0ffff pref]
    [ 0.148790] pci 0000:00:0e.0: PCI bridge to [bus 02-02]
    [ 0.148793] pci 0000:00:0e.0: bridge window [io 0x9000-0x9fff]
    [ 0.148796] pci 0000:00:0e.0: bridge window [mem 0xfdf00000-0xfdffffff]
    [ 0.148799] pci 0000:00:0e.0: bridge window [mem 0xfde00000-0xfdefffff pref]
    [ 0.148814] pci 0000:00:0e.0: setting latency timer to 64
    [ 0.148818] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.148821] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.148824] pci_bus 0000:00: resource 6 [mem 0x60000000-0xfcffffffff]
    [ 0.148827] pci_bus 0000:01: resource 0 [io 0xa000-0xafff]
    [ 0.148829] pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfcffffff]
    [ 0.148832] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff pref]
    [ 0.148835] pci_bus 0000:02: resource 0 [io 0x9000-0x9fff]
    [ 0.148837] pci_bus 0000:02: resource 1 [mem 0xfdf00000-0xfdffffff]
    [ 0.148840] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff pref]
    [ 0.148906] NET: Registered protocol family 2
    [ 0.149029] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.149029] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    [ 0.153406] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.154706] TCP: Hash tables configured (established 262144 bind 65536)
    [ 0.154710] TCP: reno registered
    [ 0.154724] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.154769] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.154934] NET: Registered protocol family 1
    [ 0.155185] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
    [ 0.223475] ACPI: PCI Interrupt Link [APCG] enabled at IRQ 22
    [ 0.290128] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 21
    [ 0.290189] pci 0000:01:00.0: Boot video device
    [ 0.290265] ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
    [ 0.290348] ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
    [ 0.290425] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
    [ 0.290445] PCI: CLS 32 bytes, default 64
    [ 0.290526] Unpacking initramfs...
    [ 0.372340] Freeing initrd memory: 2940k freed
    [ 0.379476] agpgart-amd64 0000:00:00.0: AGP bridge [10de/00e1]
    [ 0.379485] agpgart-amd64 0000:00:00.0: aperture size 4096 MB is not right, using settings from NB
    [ 0.379493] agpgart-amd64 0000:00:00.0: setting up Nforce3 AGP
    [ 0.388295] agpgart-amd64 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    [ 0.388742] audit: initializing netlink socket (disabled)
    [ 0.388762] type=2000 audit(1346927638.386:1): initialized
    [ 0.402840] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.405016] VFS: Disk quotas dquot_6.5.2
    [ 0.405085] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.405228] msgmni has been set to 2998
    [ 0.405471] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.405502] io scheduler noop registered
    [ 0.405504] io scheduler deadline registered
    [ 0.405574] io scheduler cfq registered (default)
    [ 0.412567] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    [ 0.412569] vesafb: scrolling: redraw
    [ 0.412572] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.412814] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90000900000, using 5120k, total 5120k
    [ 0.475467] Console: switching to colour frame buffer device 160x64
    [ 0.537946] fb0: VESA VGA frame buffer device
    [ 0.538002] GHES: HEST is not enabled!
    [ 0.538068] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.558511] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.578950] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [ 0.599584] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.620075] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [ 0.620233] Linux agpgart interface v0.103
    [ 0.620290] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.620292] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.620995] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.621096] mousedev: PS/2 mouse device common for all mice
    [ 0.621204] rtc_cmos 00:05: RTC can wake from S4
    [ 0.621333] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.621357] rtc0: alarms up to one year, y3k, 242 bytes nvram
    [ 0.621367] cpuidle: using governor ladder
    [ 0.621370] cpuidle: using governor menu
    [ 0.621586] drop_monitor: Initializing network drop monitor service
    [ 0.621691] TCP: cubic registered
    [ 0.621838] NET: Registered protocol family 10
    [ 0.622084] NET: Registered protocol family 17
    [ 0.622099] Key type dns_resolver registered
    [ 0.622262] PM: Hibernation image not present or could not be loaded.
    [ 0.622282] registered taskstats version 1
    [ 0.622840] rtc_cmos 00:05: setting system clock to 2012-09-06 10:33:58 UTC (1346927638)
    [ 0.624542] Freeing unused kernel memory: 756k freed
    [ 0.625249] Write protecting the kernel read-only data: 8192k
    [ 0.631386] Freeing unused kernel memory: 1496k freed
    [ 0.635859] Freeing unused kernel memory: 616k freed
    [ 0.647736] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.654805] systemd-udevd[38]: starting version 189
    [ 0.730408] ACPI: bus type usb registered
    [ 0.730453] usbcore: registered new interface driver usbfs
    [ 0.730468] usbcore: registered new interface driver hub
    [ 0.735252] usbcore: registered new device driver usb
    [ 0.735879] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.739107] SCSI subsystem initialized
    [ 0.746050] ehci_hcd 0000:00:02.2: setting latency timer to 64
    [ 0.746058] ehci_hcd 0000:00:02.2: EHCI Host Controller
    [ 0.746075] ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 1
    [ 0.746108] ehci_hcd 0000:00:02.2: debug port 1
    [ 0.746114] ehci_hcd 0000:00:02.2: cache line size of 32 is not supported
    [ 0.746141] ehci_hcd 0000:00:02.2: irq 21, io mem 0xfe02d000
    [ 0.749031] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.750857] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.753402] ehci_hcd 0000:00:02.2: USB 2.0 started, EHCI 1.00
    [ 0.753609] hub 1-0:1.0: USB hub found
    [ 0.753616] hub 1-0:1.0: 8 ports detected
    [ 0.753784] uhci_hcd 0000:02:09.0: UHCI Host Controller
    [ 0.753793] uhci_hcd 0000:02:09.0: new USB bus registered, assigned bus number 2
    [ 0.753839] uhci_hcd 0000:02:09.0: irq 19, io base 0x00009800
    [ 0.753984] hub 2-0:1.0: USB hub found
    [ 0.753989] hub 2-0:1.0: 2 ports detected
    [ 0.754706] libata version 3.00 loaded.
    [ 0.756811] ohci_hcd 0000:00:02.0: setting latency timer to 64
    [ 0.756817] ohci_hcd 0000:00:02.0: OHCI Host Controller
    [ 0.756829] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 3
    [ 0.756869] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
    [ 0.757452] uhci_hcd 0000:02:09.1: UHCI Host Controller
    [ 0.757461] uhci_hcd 0000:02:09.1: new USB bus registered, assigned bus number 4
    [ 0.757493] uhci_hcd 0000:02:09.1: irq 16, io base 0x00009400
    [ 0.757704] hub 4-0:1.0: USB hub found
    [ 0.757711] hub 4-0:1.0: 2 ports detected
    [ 0.761428] ehci_hcd 0000:02:09.2: EHCI Host Controller
    [ 0.761447] ehci_hcd 0000:02:09.2: new USB bus registered, assigned bus number 5
    [ 0.761512] ehci_hcd 0000:02:09.2: irq 17, io mem 0xfdffe000
    [ 0.770064] ehci_hcd 0000:02:09.2: USB 2.0 started, EHCI 1.00
    [ 0.770287] hub 5-0:1.0: USB hub found
    [ 0.770294] hub 5-0:1.0: 4 ports detected
    [ 0.812239] hub 3-0:1.0: USB hub found
    [ 0.812251] hub 3-0:1.0: 4 ports detected
    [ 0.816572] ohci_hcd 0000:00:02.1: setting latency timer to 64
    [ 0.816577] ohci_hcd 0000:00:02.1: OHCI Host Controller
    [ 0.816589] ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 6
    [ 0.816630] ohci_hcd 0000:00:02.1: irq 22, io mem 0xfe02e000
    [ 0.868954] hub 6-0:1.0: USB hub found
    [ 0.868962] hub 6-0:1.0: 4 ports detected
    [ 0.873501] sata_nv 0000:00:09.0: version 3.5
    [ 0.873756] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 20
    [ 0.873833] sata_nv 0000:00:09.0: setting latency timer to 64
    [ 0.874345] scsi0 : sata_nv
    [ 0.874497] scsi1 : sata_nv
    [ 0.874645] ata1: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xcc00 irq 20
    [ 0.874648] ata2: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xcc08 irq 20
    [ 0.878342] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 23
    [ 0.878391] sata_nv 0000:00:0a.0: setting latency timer to 64
    [ 0.878840] scsi2 : sata_nv
    [ 0.878963] scsi3 : sata_nv
    [ 0.879110] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xb400 irq 23
    [ 0.879112] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xb408 irq 23
    [ 0.886479] pata_acpi 0000:00:08.0: power state changed by ACPI to D0
    [ 0.886484] pata_acpi 0000:00:08.0: power state changed by ACPI to D0
    [ 0.886533] pata_acpi 0000:00:08.0: setting latency timer to 64
    [ 1.186695] ata1: SATA link down (SStatus 0 SControl 300)
    [ 1.343364] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.350214] ata3.00: ATA-7: SAMSUNG SP1614C, SW100-34, max UDMA7
    [ 1.350217] ata3.00: 312581808 sectors, multi 16: LBA48
    [ 1.356871] ata3.00: configured for UDMA/133
    [ 1.370024] usb 4-1: new low-speed USB device number 2 using uhci_hcd
    [ 1.500024] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.500200] scsi 2:0:0:0: Direct-Access ATA SAMSUNG SP1614C SW10 PQ: 0 ANSI: 5
    [ 1.966704] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.020180] ata4.00: ATA-8: WDC WD15EARS-00Z5B1, 80.00A80, max UDMA/133
    [ 2.020183] ata4.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.033588] ata4.00: configured for UDMA/133
    [ 2.033760] scsi 3:0:0:0: Direct-Access ATA WDC WD15EARS-00Z 80.0 PQ: 0 ANSI: 5
    [ 2.036921] pata_amd 0000:00:08.0: version 0.4.1
    [ 2.036948] pata_amd 0000:00:08.0: power state changed by ACPI to D0
    [ 2.036952] pata_amd 0000:00:08.0: power state changed by ACPI to D0
    [ 2.037017] pata_amd 0000:00:08.0: setting latency timer to 64
    [ 2.040074] scsi4 : pata_amd
    [ 2.041581] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    [ 2.041663] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.041667] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.041692] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.042020] scsi5 : pata_amd
    [ 2.042592] ata5: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xe000 irq 14
    [ 2.042595] ata6: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xe008 irq 15
    [ 2.042887] sd 3:0:0:0: [sdb] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
    [ 2.042937] sd 3:0:0:0: [sdb] Write Protect is off
    [ 2.042941] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.042964] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.055764] sdb: sdb1
    [ 2.056082] sd 3:0:0:0: [sdb] Attached SCSI disk
    [ 2.056117] usbcore: registered new interface driver usbhid
    [ 2.056119] usbhid: USB HID core driver
    [ 2.073368] sda: sda1 sda2 sda3 sda4
    [ 2.073827] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 2.200466] ata5.00: ATA-6: ST340810A, 3.39, max UDMA/100
    [ 2.200473] ata5.00: 78165360 sectors, multi 16: LBA
    [ 2.200484] ata5: nv_mode_filter: 0x3f39f&0x739f->0x739f, BIOS=0x7000 (0xc000c000) ACPI=0x701f (60:120:0x1b)
    [ 2.213741] ata5.00: configured for UDMA/33
    [ 2.213893] scsi 4:0:0:0: Direct-Access ATA ST340810A 3.39 PQ: 0 ANSI: 5
    [ 2.214133] sd 4:0:0:0: [sdc] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
    [ 2.214189] sd 4:0:0:0: [sdc] Write Protect is off
    [ 2.214193] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 2.214216] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.244630] sdc: sdc1
    [ 2.244919] sd 4:0:0:0: [sdc] Attached SCSI disk
    [ 2.373623] ata6.00: ATAPI: _NEC DVD_RW ND-3540A, 1.01, max UDMA/33
    [ 2.373634] ata6: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x7000 (0xc000c000) ACPI=0x701f (60:120:0x1b)
    [ 2.386892] ata6.00: configured for UDMA/33
    [ 2.388189] scsi 5:0:0:0: CD-ROM _NEC DVD_RW ND-3540A 1.01 PQ: 0 ANSI: 5
    [ 2.391609] input: OM as /devices/pci0000:00/0000:00:0e.0/0000:02:09.1/usb4/4-1/4-1:1.0/input/input1
    [ 2.393267] hid-generic 0003:04F3:0234.0001: input,hidraw0: USB HID v1.11 Mouse [OM] on usb-0000:02:09.1-1/input0
    [ 2.397693] sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
    [ 2.397702] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.397986] sr 5:0:0:0: Attached scsi CD-ROM sr0
    [ 3.150376] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.949356] systemd[1]: Successfully opened /dev/kmsg for logging.
    [ 3.949760] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset.
    [ 3.949905] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
    [ 3.950054] systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory.
    [ 3.950167] systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices.
    [ 3.953404] systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer.
    [ 3.953500] systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls of type cgroup with options net_cls.
    [ 3.953597] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
    [ 3.956761] systemd[1]: systemd 189 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 3.979310] systemd[1]: Your kernel apparently lacks built-in autofs4 support. Might be a good idea to compile it in. We'll now try to work around this by loading the module...
    [ 4.144298] systemd[1]: Inserted module 'autofs4'
    [ 4.152053] systemd[1]: Set hostname to <box>.
    [ 4.157882] systemd[1]: Using cgroup controller name=systemd. File system hierarchy is at /sys/fs/cgroup/systemd/system.
    [ 4.157991] systemd[1]: Installed release agent.
    [ 4.158142] systemd[1]: Created root group.
    [ 4.158219] systemd[1]: Using notification socket @/org/freedesktop/systemd1/notify
    [ 4.158401] systemd[1]: Successfully created private D-Bus server.
    [ 4.184882] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 114
    [ 4.185117] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-system-update-generator as 115
    [ 4.185365] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-getty-generator as 116
    [ 4.185641] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 117
    [ 4.255375] systemd[1]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator exited successfully.
    [ 4.255400] systemd[1]: /usr/lib/systemd/system-generators/systemd-system-update-generator exited successfully.
    [ 4.255408] systemd[1]: /usr/lib/systemd/system-generators/systemd-getty-generator exited successfully.
    [ 4.255416] systemd[1]: /usr/lib/systemd/system-generators/systemd-fstab-generator exited successfully.
    [ 4.313459] systemd[1]: Looking for unit files in:
    [ 4.313463] systemd[1]: /etc/systemd/system
    [ 4.313465] systemd[1]: /run/systemd/generator
    [ 4.313468] systemd[1]: /usr/lib/systemd/system
    [ 4.313471] systemd[1]: Disabled SysV init scripts and rcN.d links support
    [ 4.422041] systemd[1]: Failed to load configuration for syslog.service: No such file or directory
    [ 4.495651] systemd[1]: Failed to load configuration for plymouth-start.service: No such file or directory
    [ 4.564783] systemd[1]: Failed to load configuration for rc-local.service: No such file or directory
    [ 4.564799] systemd[1]: Failed to load configuration for plymouth-quit-wait.service: No such file or directory
    [ 4.709247] systemd[1]: Failed to load configuration for auditd.service: No such file or directory
    [ 4.752803] systemd[1]: -.mount changed dead -> mounted
    [ 4.752894] systemd[1]: Activating default unit: default.target
    [ 4.752901] systemd[1]: Trying to enqueue job graphical.target/start/replace
    [ 4.753079] systemd[1]: Installed new job graphical.target/start as 1
    [ 4.753085] systemd[1]: Installed new job multi-user.target/start as 2
    [ 4.753089] systemd[1]: Installed new job basic.target/start as 3
    [ 4.753094] systemd[1]: Installed new job sysinit.target/start as 4
    [ 4.753098] systemd[1]: Installed new job local-fs.target/start as 5
    [ 4.753102] systemd[1]: Installed new job home-hasardeur-Ext.mount/start as 6
    [ 4.753108] systemd[1]: Installed new job systemd-journald.socket/start as 7
    [ 4.753112] systemd[1]: Installed new job systemd-fsck@dev-disk-by\x2duuid-1A54880F5487EBB7.service/start as 9
    [ 4.753116] systemd[1]: Installed new job dev-disk-by\x2duuid-1A54880F5487EBB7.device/start as 10
    [ 4.753138] systemd[1]: Installed new job local-fs-pre.target/start as 11
    [ 4.753142] systemd[1]: Installed new job home-hasardeur-Space.mount/start as 14
    [ 4.753147] systemd[1]: Installed new job systemd-fsck@dev-disk-by\x2duuid-72290182\x2d7429\x2d4fb3\x2da421\x2d1e3bdf21dda9.service/start as 15
    [ 4.753151] systemd[1]: Installed new job dev-disk-by\x2duuid-72290182\x2d7429\x2d4fb3\x2da421\x2d1e3bdf21dda9.device/start as 16
    [ 4.753161] systemd[1]: Installed new job tmp.mount/start as 17
    [ 4.753164] systemd[1]: Installed new job systemd-fsck-root.service/start as 18
    [ 4.753168] systemd[1]: Installed new job systemd-remount-fs.service/start as 19
    [ 4.753172] systemd[1]: Installed new job swap.target/start as 20
    [ 4.753176] systemd[1]: Installed new job dev-disk-by\x2duuid-b5f8685d\x2d2706\x2d44fc\x2d882d\x2d662cc23e7c07.swap/start as 21
    [ 4.753181] systemd[1]: Installed new job dev-disk-by\x2duuid-b5f8685d\x2d2706\x2d44fc\x2d882d\x2d662cc23e7c07.device/start as 22
    [ 4.753191] systemd[1]: Installed new job systemd-udevd.service/start as 23
    [ 4.753195] systemd[1]: Installed new job systemd-udevd-control.socket/start as 24
    [ 4.753198] systemd[1]: Installed new job systemd-udevd-kernel.socket/start as 25
    [ 4.753202] systemd[1]: Installed new job dev-mqueue.mount/start as 26
    [ 4.753206] systemd[1]: Installed new job sys-kernel-config.mount/start as 27
    [ 4.753209] systemd[1]: Installed new job systemd-random-seed-load.service/start as 28
    [ 4.753213] systemd[1]: Installed new job systemd-ask-password-console.path/start as 29
    [ 4.753217] systemd[1]: Installed new job systemd-udev-trigger.service/start as 30
    [ 4.753220] systemd[1]: Installed new job sys-kernel-debug.mount/start as 31
    [ 4.753224] systemd[1]: Installed new job systemd-modules-load.service/start as 32
    [ 4.753228] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 33
    [ 4.753231] systemd[1]: Installed new job proc-sys-fs-binfmt_misc.automount/start as 34
    [ 4.753235] systemd[1]: Installed new job systemd-journald.service/start as 35
    [ 4.753239] systemd[1]: Installed new job systemd-journal-flush.service/start as 36
    [ 4.753242] systemd[1]: Installed new job dev-hugepages.mount/start as 37
    [ 4.753246] systemd[1]: Installed new job systemd-tmpfiles-setup.service/start as 38
    [ 4.753249] systemd[1]: Installed new job cryptsetup.target/start as 39
    [ 4.753253] systemd[1]: Installed new job systemd-sysctl.service/start as 40
    [ 4.753256] systemd[1]: Installed new job systemd-vconsole-setup.service/start as 41
    [ 4.753260] systemd[1]: Installed new job systemd-binfmt.service/start as 42
    [ 4.753263] systemd[1]: Installed new job sockets.target/start as 45
    [ 4.753267] systemd[1]: Installed new job dbus.socket/start as 46
    [ 4.753271] systemd[1]: Installed new job systemd-initctl.socket/start as 47
    [ 4.753274] systemd[1]: Installed new job systemd-shutdownd.socket/start as 48
    [ 4.753278] systemd[1]: Installed new job alsa-restore.service/start as 49
    [ 4.753281] systemd[1]: Installed new job console-kit-log-system-start.service/start as 50
    [ 4.753285] systemd[1]: Installed new job systemd-tmpfiles-clean.timer/start as 51
    [ 4.753289] systemd[1]: Installed new job ntpd.service/start as 52
    [ 4.753292] systemd[1]: Installed new job remote-fs.target/start as 53
    [ 4.753296] systemd[1]: Installed new job netcfg.service/start as 54
    [ 4.753299] systemd[1]: Installed new job network.target/start as 55
    [ 4.753302] systemd[1]: Installed new job cronie.service/start as 56
    [ 4.753306] systemd[1]: Installed new job getty.target/start as 57
    [ 4.753309] systemd[1]: Installed new job [email protected]/start as 58
    [ 4.753313] systemd[1]: Installed new job systemd-ask-password-wall.path/start as 59
    [ 4.753316] systemd[1]: Installed new job dbus.service/start as 60
    [ 4.753320] systemd[1]: Installed new job systemd-logind.service/start as 61
    [ 4.753323] systemd[1]: Installed new job systemd-user-sessions.service/start as 62
    [ 4.753327] systemd[1]: Installed new job systemd-update-utmp-runlevel.service/start as 63
    [ 4.753331] systemd[1]: Installed new job lxdm.service/start as 66
    [ 4.753365] systemd[1]: Enqueued job graphical.target/start as 1
    [ 4.753380] systemd[1]: Loaded units and determined initial transaction in 594ms 940us.
    [ 4.753507] systemd[1]: Got SIGCHLD for process 113 (switch_root)
    [ 4.753580] systemd[1]: Child 113 died (code=exited, status=0/SUCCESS)
    [ 4.753667] systemd[1]: systemd-ask-password-wall.path changed dead -> waiting
    [ 4.753676] systemd[1]: Job systemd-ask-password-wall.path/start finished, result=done
    [ 4.753692] systemd[1]: remote-fs.target changed dead -> active
    [ 4.753700] systemd[1]: Job remote-fs.target/start finished, result=done
    [ 4.753747] systemd[1]: systemd-shutdownd.socket changed dead -> listening
    [ 4.753755] systemd[1]: Job systemd-shutdownd.socket/start finished, result=done
    [ 4.753786] systemd[1]: systemd-initctl.socket changed dead -> listening
    [ 4.753793] systemd[1]: Job systemd-initctl.socket/start finished, result=done
    [ 4.753807] systemd[1]: cryptsetup.target changed dead -> active
    [ 4.753815] systemd[1]: Job cryptsetup.target/start finished, result=done
    [ 4.753875] systemd[1]: Autofs kernel version 1.0
    [ 4.753969] systemd[1]: Autofs protocol version 5.2
    [ 4.753979] systemd[1]: proc-sys-fs-binfmt_misc.automount changed dead -> waiting
    [ 4.753987] systemd[1]: Job proc-sys-fs-binfmt_misc.automount/start finished, result=done
    [ 4.754036] systemd[1]: systemd-ask-password-console.path changed dead -> waiting
    [ 4.754044] systemd[1]: Job systemd-ask-password-console.path/start finished, result=done
    [ 4.754155] systemd[1]: systemd-udevd-kernel.socket changed dead -> listening
    [ 4.754164] systemd[1]: Job systemd-udevd-kernel.socket/start finished, result=done
    [ 4.754246] systemd[1]: systemd-udevd-control.socket changed dead -> listening
    [ 4.754254] systemd[1]: Job systemd-udevd-control.socket/start finished, result=done
    [ 4.754341] systemd[1]: systemd-journald.socket changed dead -> listening
    [ 4.754349] systemd[1]: Job systemd-journald.socket/start finished, result=done
    [ 4.754375] systemd[1]: Starting of systemd-fsck-root.service requested but condition failed. Ignoring.
    [ 4.754379] systemd[1]: Job systemd-fsck-root.service/start finished, result=done
    [ 4.754453] systemd[1]: About to execute: /usr/lib/systemd/systemd-remount-fs
    [ 4.758929] systemd[1]: Forked /usr/lib/systemd/systemd-remount-fs as 118
    [ 4.759050] systemd[1]: systemd-remount-fs.service changed dead -> start
    [ 4.759250] systemd[1]: About to execute: /usr/lib/systemd/systemd-udevd
    [ 4.826866] systemd[1]: Forked /usr/lib/systemd/systemd-udevd as 120
    [ 4.826993] systemd[1]: systemd-udevd.service changed dead -> start
    [ 4.827101] systemd[1]: About to execute: /bin/mount mqueue /dev/mqueue -t mqueue
    [ 4.828859] systemd[1]: Forked /bin/mount as 121
    [ 4.828923] systemd[1]: dev-mqueue.mount changed dead -> mounting
    [ 4.829234] systemd[1]: About to execute: /usr/bin/udevadm trigger --type=subsystems --action=add
    [ 4.833375] systemd[1]: Forked /usr/bin/udevadm as 122
    [ 4.833513] systemd[1]: systemd-udev-trigger.service changed dead -> start
    [ 4.833594] systemd[1]: About to execute: /bin/mount debugfs /sys/kernel/debug -t debugfs
    [ 4.834846] systemd[1]: Forked /bin/mount as 123
    [ 4.834893] systemd[1]: sys-kernel-debug.mount changed dead -> mounting
    [ 4.859660] systemd[1]: About to execute: /usr/lib/systemd/systemd-modules-load
    [ 4.860937] systemd[1]: Forked /usr/lib/systemd/systemd-modules-load as 124
    [ 4.861068] systemd[1]: systemd-modules-load.service changed dead -> start
    [ 4.861180] systemd[1]: About to execute: /bin/mount hugetlbfs /dev/hugepages -t hugetlbfs
    [ 4.863410] systemd[1]: Forked /bin/mount as 125
    [ 4.863451] systemd[1]: dev-hugepages.mount changed dead -> mounting
    [ 4.917003] systemd[1]: About to execute: /usr/lib/systemd/systemd-sysctl
    [ 4.918344] systemd[1]: Forked /usr/lib/systemd/systemd-sysctl as 126
    [ 4.918493] systemd[1]: systemd-sysctl.service changed dead -> start
    [ 4.918602] systemd[1]: About to execute: /usr/lib/systemd/systemd-vconsole-setup
    [ 4.920070] systemd[1]: Forked /usr/lib/systemd/systemd-vconsole-setup as 127
    [ 4.920224] systemd[1]: systemd-vconsole-setup.service changed dead -> start
    [ 4.926908] systemd[1]: Starting of systemd-binfmt.service requested but condition failed. Ignoring.
    [ 4.926918] systemd[1]: Job systemd-binfmt.service/start finished, result=done
    [ 4.927036] systemd[1]: About to execute: /usr/lib/systemd/systemd-journald
    [ 4.928214] systemd[1]: Forked /usr/lib/systemd/systemd-journald as 128
    [ 4.928417] systemd[1]: systemd-journald.service changed dead -> running
    [ 4.928436] systemd[1]: Job systemd-journald.service/start finished, result=done
    [ 4.928562] systemd[1]: Running GC...
    [ 4.929089] systemd[1]: Received SIGCHLD from PID 116 (n/a).
    [ 4.929352] systemd[1]: Incoming traffic on systemd-journald.socket
    [ 4.929370] systemd[1]: systemd-journald.socket changed listening -> running
    [ 4.957457] systemd[1]: Got notification message for unit systemd-udevd.service
    [ 4.957468] systemd[1]: systemd-udevd.service: Got message
    [ 4.957473] systemd[1]: systemd-udevd.service: got READY=1
    [ 4.957551] systemd[1]: systemd-udevd.service changed start -> running
    [ 4.957567] systemd[1]: Job systemd-udevd.service/start finished, result=done
    [ 4.957642] systemd-udevd[120]: starting version 189
    [ 5.064497] systemd[1]: Incoming traffic on systemd-udevd-kernel.socket
    [ 5.064520] systemd[1]: systemd-udevd-kernel.socket changed listening -> running
    [ 5.066198] systemd[1]: Received SIGCHLD from PID 122 (udevadm).
    [ 5.066234] systemd[1]: Got SIGCHLD for process 122 (udevadm)
    [ 5.066313] systemd[1]: Child 122 died (code=exited, status=0/SUCCESS)
    [ 5.066317] systemd[1]: Child 122 belongs to systemd-udev-trigger.service
    [ 5.066333] systemd[1]: systemd-udev-trigger.service: main process exited, code=exited, status=0
    [ 5.066341] systemd[1]: systemd-udev-trigger.service running next main command for state start
    [ 5.066359] systemd[1]: About to execute: /usr/bin/udevadm trigger --type=devices --action=add
    [ 5.067931] systemd[1]: Forked /usr/bin/udevadm as 130
    [ 5.083596] systemd[1]: Received SIGCHLD from PID 130 (udevadm).
    [ 5.083638] systemd[1]: Got SIGCHLD for process 130 (udevadm)
    [ 5.083717] systemd[1]: Child 130 died (code=exited, status=0/SUCCESS)
    [ 5.083721] systemd[1]: Child 130 belongs to systemd-udev-trigger.service
    [ 5.083737] systemd[1]: systemd-udev-trigger.service: main process exited, code=exited, status=0
    [ 5.084106] systemd[1]: systemd-udev-trigger.service changed start -> exited
    [ 5.084118] systemd[1]: Job systemd-udev-trigger.service/start finished, result=done
    [ 5.088748] systemd[1]: Received SIGCHLD from PID 126 (systemd-sysctl).
    [ 5.088779] systemd[1]: Got SIGCHLD for process 126 (systemd-sysctl)
    [ 5.088852] systemd[1]: Child 126 died (code=exited, status=0/SUCCESS)
    [ 5.088856] systemd[1]: Child 126 belongs to systemd-sysctl.service
    [ 5.088873] systemd[1]: systemd-sysctl.service: main process exited, code=exited, status=0
    [ 5.089199] systemd[1]: systemd-sysctl.service changed start -> exited
    [ 5.089210] systemd[1]: Job systemd-sysctl.service/start finished, result=done
    [ 5.336181] FS-Cache: Loaded
    [ 5.379562] RPC: Registered named UNIX socket transport module.
    [ 5.379567] RPC: Registered udp transport module.
    [ 5.379569] RPC: Registered tcp transport module.
    [ 5.379570] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 5.585237] NFS: Registering the id_resolver key type
    [ 5.585264] Key type id_resolver registered
    [ 5.585266] Key type id_legacy registered
    [ 5.585278] FS-Cache: Netfs 'nfs' registered for caching
    [ 5.586108] systemd[1]: Received SIGCHLD from PID 124 (systemd-modules).
    [ 5.586146] systemd[1]: Got SIGCHLD for process 124 (systemd-modules)
    [ 5.586225] systemd[1]: Child 124 died (code=exited, status=0/SUCCESS)
    [ 5.586229] systemd[1]: Child 124 belongs to systemd-modules-load.service
    [ 5.586250] systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=0
    [ 5.586590] systemd[1]: systemd-modules-load.service changed start -> exited
    [ 5.586605] systemd[1]: Job systemd-modules-load.service/start finished, result=done
    [ 5.586717] systemd[1]: Starting of sys-kernel-config.mount requested but condition failed. Ignoring.
    [ 5.586722] systemd[1]: Job sys-kernel-config.mount/start finished, result=done
    [ 5.586742] systemd[1]: Starting of sys-fs-fuse-connections.mount requested but condition failed. Ignoring.
    [ 5.586746] systemd[1]: Job sys-fs-fuse-connections.mount/start finished, result=done
    [ 5.615412] systemd[1]: Accepted connection on private bus.
    [ 5.725920] systemd-journald[128]: Successfully opened /dev/kmsg for logging.
    [ 5.758577] systemd-journald[128]: Fixed max_use=75.1M max_size=9.3M min_size=64.0K keep_free=37.5M
    [ 5.758646] systemd-journald[128]: Reserving 17095 entries in hash table.
    [ 5.759414] systemd-journald[128]: Vacuuming...
    [ 5.759466] systemd-journald[128]: Flushing /dev/kmsg...
    [ 5.777632] systemd[1]: dev-hugepages.mount changed mounting -> mounting-done
    [ 5.777647] systemd[1]: Job dev-hugepages.mount/start finished, result=done
    [ 5.777687] systemd[1]: sys-kernel-debug.mount changed mounting -> mounting-done
    [ 5.777694] systemd[1]: Job sys-kernel-debug.mount/start finished, result=done
    [ 5.777716] systemd[1]: dev-mqueue.mount changed mounting -> mounting-done
    [ 5.777724] systemd[1]: Job dev-mqueue.mount/start finished, result=done
    [ 5.777819] systemd[1]: Received SIGCHLD from PID 125 (mount).
    [ 5.777855] systemd[1]: Got SIGCHLD for process 121 (mount)
    [ 5.777932] systemd[1]: Child 121 died (code=exited, status=0/SUCCESS)
    [ 5.777935] systemd[1]: Child 121 belongs to dev-mqueue.mount
    [ 5.777949] systemd[1]: dev-mqueue.mount mount process exited, code=exited status=0
    [ 5.777962] systemd[1]: dev-mqueue.mount changed mounting-done -> mounted
    [ 5.777998] systemd[1]: Got SIGCHLD for process 123 (mount)
    [ 5.778052] systemd[1]: Child 123 died (code=exited, status=0/SUCCESS)
    [ 5.778056] systemd[1]: Child 123 belongs to sys-kernel-debug.mount
    [ 5.778064] systemd[1]: sys-kernel-debug.mount mount process exited, code=exited status=0
    [ 5.778073] systemd[1]: sys-kernel-debug.mount changed mounting-done -> mounted
    [ 5.778104] systemd[1]: Got SIGCHLD for process 125 (mount)
    [ 5.778159] systemd[1]: Child 125 died (code=exited, status=0/SUCCESS)
    [ 5.778163] systemd[1]: Child 125 belongs to dev-hugepages.mount
    [ 5.778171] systemd[1]: dev-hugepages.mount mount process exited, code=exited status=0
    [ 5.778179] systemd[1]: dev-hugepages.mount changed mounting-done -> mounted
    [ 5.778270] systemd[1]: Accepted connection on private bus.
    [ 5.778429] systemd[1]: Accepted connection on private bus.
    [ 5.778509] systemd[1]: Accepted connection on private bus.
    [ 5.779032] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.779152] systemd[1]: systemd-udev-trigger.service: cgroup is empty
    [ 5.779481] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.779740] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.786928] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.790217] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.790280] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.790338] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 5.796880] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 5.807799] systemd-journald[128]: systemd-journald running as pid 128
    [ 5.808306] systemd[1]: Got notification message for unit systemd-journald.service
    [ 5.808312] systemd[1]: systemd-journald.service: Got message
    [ 5.808318] systemd[1]: systemd-journald.service: got STATUS=Processing requests...
    [ 6.246284] EXT4-fs (sda2): re-mounted. Opts: (null)
    [ 6.247294] systemd[1]: Received SIGCHLD from PID 118 (systemd-remount).
    [ 6.247328] systemd[1]: Got SIGCHLD for process 118 (systemd-remount)
    [ 6.247396] systemd[1]: Child 118 died (code=exited, status=0/SUCCESS)
    [ 6.247401] systemd[1]: Child 118 belongs to systemd-remount-fs.service
    [ 6.247419] systemd[1]: systemd-remount-fs.service: main process exited, code=exited, status=0
    [ 6.247721] systemd[1]: systemd-remount-fs.service changed start -> exited
    [ 6.247733] systemd[1]: Job systemd-remount-fs.service/start finished, result=done
    [ 6.247797] systemd[1]: local-fs-pre.target changed dead -> active
    [ 6.247805] systemd[1]: Job local-fs-pre.target/start finished, result=done
    [ 6.317889] systemd[1]: About to execute: /bin/mount tmpfs /tmp -t tmpfs -o nodev,nosuid
    [ 6.319475] systemd[1]: Forked /bin/mount as 140
    [ 6.319523] systemd[1]: tmp.mount changed dead -> mounting
    [ 6.319680] systemd[1]: About to execute: /usr/lib/systemd/systemd-random-seed load
    [ 6.323401] systemd[1]: Forked /usr/lib/systemd/systemd-random-seed as 141
    [ 6.323546] systemd[1]: systemd-random-seed-load.service changed dead -> start
    [ 6.347887] systemd[1]: tmp.mount changed mounting -> mounting-done
    [ 6.347901] systemd[1]: Job tmp.mount/start finished, result=done
    [ 6.348383] systemd[1]: Received SIGCHLD from PID 140 (mount).
    [ 6.348417] systemd[1]: Got SIGCHLD for process 140 (mount)
    [ 6.348489] systemd[1]: Child 140 died (code=exited, status=0/SUCCESS)
    [ 6.348493] systemd[1]: Child 140 belongs to tmp.mount
    [ 6.348504] systemd[1]: tmp.mount mount process exited, code=exited status=0
    [ 6.348515] systemd[1]: tmp.mount changed mounting-done -> mounted
    [ 6.349779] systemd[1]: Accepted connection on private bus.
    [ 6.350675] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
    [ 6.351301] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
    [ 6.433691] systemd[1]: dev-ttyS2.device changed dead -> plugged
    [ 6.433715] systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device changed dead -> plugged
    [ 6.434762] systemd[1]: dev-ttyS3.device changed dead -> plugged
    [ 6.434780] systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device changed dead -> plugged
    [ 6.439475] systemd[1]: Received SIGCHLD from PID 141 (systemd-random-).
    [ 6.439513] systemd[1]: Got SIGCHLD for process 141 (systemd-random-)
    [ 6.439

    Should I file a bug report? If so, with Arch or upstream?

  • How to properly execute script on shutdown using systemd

    Hello,
    I am trying to execute a simple script to update my freedns.afraid.org DNS record on each machine shutdown. Could somebody please provide me a complete step by step example on how to achieve this? There are many posts, but none work, directory structure is always different, and there are no results. Below is my current directory structure:
    [kbs1@arch ~]$ cd /etc/systemd/
    [kbs1@arch systemd]$ ll
    total 40
    drwxr-xr-x 5 root root 4096 Nov 1 06:55 .
    drwxr-xr-x 75 root root 4096 Nov 15 01:07 ..
    -rw-r--r-- 1 root root 529 May 30 14:55 bootchart.conf
    -rw-r--r-- 1 root root 770 Oct 2 14:01 journald.conf
    -rw-r--r-- 1 root root 709 Oct 2 14:01 logind.conf
    drwxr-xr-x 2 root root 4096 May 30 14:55 ntp-units.d
    drwxr-xr-x 7 root root 4096 Nov 18 13:24 system
    -rw-r--r-- 1 root root 1033 Oct 2 14:01 system.conf
    drwxr-xr-x 2 root root 4096 May 30 14:55 user
    -rw-r--r-- 1 root root 468 Oct 2 14:01 user.conf
    [kbs1@arch systemd]$ ll user
    total 8
    drwxr-xr-x 2 root root 4096 May 30 14:55 .
    drwxr-xr-x 5 root root 4096 Nov 1 06:55 ..
    [kbs1@arch systemd]$ ll system
    total 28
    drwxr-xr-x 7 root root 4096 Nov 18 13:24 .
    drwxr-xr-x 5 root root 4096 Nov 1 06:55 ..
    lrwxrwxrwx 1 root root 39 Sep 22 00:47 dbus-uk.org.thekelleys.dnsmasq -> /usr/lib/systemd/system/dnsmasq.service
    drwxr-xr-x 2 root root 4096 Jul 11 23:47 [email protected]
    drwxr-xr-x 2 root root 4096 Jul 8 06:16 getty.target.wants
    drwxr-xr-x 2 root root 4096 Nov 1 06:55 multi-user.target.wants
    drwxr-xr-x 2 root root 4096 Jul 20 00:45 printer.target.wants
    drwxr-xr-x 2 root root 4096 Jul 20 00:45 sockets.target.wants
    [kbs1@arch systemd]$ cd /usr/lib
    lib/ lib64/
    [kbs1@arch systemd]$ cd /usr/lib
    lib/ lib64/
    [kbs1@arch systemd]$ cd /usr/lib/sys
    sysctl.d/ systemd/
    [kbs1@arch systemd]$ cd /usr/lib/systemd/
    catalog/ systemd-hostnamed systemd-shutdown
    ntp-units.d/ systemd-initctl systemd-shutdownd
    scripts/ systemd-journald systemd-sleep
    system/ systemd-journal-gatewayd systemd-sysctl
    systemd systemd-localed systemd-timedated
    systemd-ac-power systemd-logind systemd-udevd
    systemd-activate systemd-machined systemd-update-utmp
    systemd-backlight systemd-modules-load systemd-user-sessions
    systemd-binfmt systemd-multi-seat-x systemd-vconsole-setup
    systemd-bootchart systemd-quotacheck system-generators/
    systemd-cgroups-agent systemd-random-seed system-shutdown/
    systemd-coredump systemd-readahead system-sleep/
    systemd-cryptsetup systemd-remount-fs user/
    systemd-fsck systemd-reply-password user-generators/
    [kbs1@arch systemd]$ cd /usr/lib/systemd/
    [kbs1@arch systemd]$ ll user
    total 20
    drwxr-xr-x 2 root root 4096 Nov 18 13:39 .
    drwxr-xr-x 11 root root 4096 Nov 18 13:37 ..
    lrwxrwxrwx 1 root root 40 Oct 21 15:27 bluetooth.target -> /usr/lib/systemd/system/bluetooth.target
    -rw-r--r-- 1 root root 373 Oct 21 15:27 default.target
    -rw-r--r-- 1 root root 499 Oct 21 15:27 exit.target
    lrwxrwxrwx 1 root root 36 Oct 21 15:27 paths.target -> /usr/lib/systemd/system/paths.target
    lrwxrwxrwx 1 root root 38 Oct 21 15:27 printer.target -> /usr/lib/systemd/system/printer.target
    lrwxrwxrwx 1 root root 39 Oct 21 15:27 shutdown.target -> /usr/lib/systemd/system/shutdown.target
    lrwxrwxrwx 1 root root 40 Oct 21 15:27 smartcard.target -> /usr/lib/systemd/system/smartcard.target
    lrwxrwxrwx 1 root root 38 Oct 21 15:27 sockets.target -> /usr/lib/systemd/system/sockets.target
    lrwxrwxrwx 1 root root 36 Oct 21 15:27 sound.target -> /usr/lib/systemd/system/sound.target
    -rw-r--r-- 1 root root 501 Oct 21 15:27 systemd-exit.service
    lrwxrwxrwx 1 root root 37 Oct 21 15:27 timers.target -> /usr/lib/systemd/system/timers.target
    [kbs1@arch systemd]$ ll system
    total 856
    drwxr-xr-x 10 root root 12288 Nov 1 06:56 .
    drwxr-xr-x 11 root root 4096 Nov 18 13:37 ..
    -rw-r--r-- 1 root root 428 Jul 29 11:49 alsa-restore.service
    -rw-r--r-- 1 root root 481 Jul 29 11:49 alsa-state.service
    -rw-r--r-- 1 root root 372 Jul 29 11:49 alsa-store.service
    lrwxrwxrwx 1 root root 14 Oct 21 15:27 [email protected] -> [email protected]
    -rw-r--r-- 1 root root 1042 Oct 31 17:31 avahi-daemon.service
    -rw-r--r-- 1 root root 874 Oct 31 17:31 avahi-daemon.socket
    -rw-r--r-- 1 root root 975 Oct 31 17:31 avahi-dnsconfd.service
    -rw-r--r-- 1 root root 546 Oct 21 15:27 basic.target
    drwxr-xr-x 2 root root 4096 Aug 7 16:14 basic.target.wants
    -rw-r--r-- 1 root root 379 Oct 21 15:27 bluetooth.target
    -rw-r--r-- 1 root root 296 Jul 23 16:00 colord.service
    -rw-r--r-- 1 root root 699 Oct 21 15:27 console-getty.service
    -rw-r--r-- 1 root root 722 Oct 21 15:27 console-shell.service
    -rw-r--r-- 1 root root 194 Jun 23 11:17 cronie.service
    -rw-r--r-- 1 root root 366 Oct 21 15:27 cryptsetup.target
    lrwxrwxrwx 1 root root 13 Oct 21 15:27 ctrl-alt-del.target -> reboot.target
    -rw-r--r-- 1 root root 224 Oct 30 15:59 cups-browsed.service
    lrwxrwxrwx 1 root root 12 Oct 25 21:12 cupsd.service -> cups.service
    -rw-r--r-- 1 root root 126 Oct 25 21:12 cups.path
    -rw-r--r-- 1 root root 158 Oct 25 21:12 cups.service
    -rw-r--r-- 1 root root 127 Oct 25 21:12 cups.socket
    lrwxrwxrwx 1 root root 25 Oct 21 15:27 dbus-org.freedesktop.hostname1.service -> systemd-hostnamed.service
    lrwxrwxrwx 1 root root 23 Oct 21 15:27 dbus-org.freedesktop.locale1.service -> systemd-localed.service
    lrwxrwxrwx 1 root root 22 Oct 21 15:27 dbus-org.freedesktop.login1.service -> systemd-logind.service
    lrwxrwxrwx 1 root root 24 Oct 21 15:27 dbus-org.freedesktop.machine1.service -> systemd-machined.service
    lrwxrwxrwx 1 root root 25 Oct 21 15:27 dbus-org.freedesktop.timedate1.service -> systemd-timedated.service
    -rw-r--r-- 1 root root 353 Oct 12 16:22 dbus.service
    -rw-r--r-- 1 root root 102 Oct 12 16:22 dbus.socket
    drwxr-xr-x 2 root root 4096 Nov 1 06:55 dbus.target.wants
    -rw-r--r-- 1 root root 978 Oct 21 15:27 debug-shell.service
    lrwxrwxrwx 1 root root 16 Oct 21 15:27 default.target -> graphical.target
    -rw-r--r-- 1 root root 156 Aug 25 09:57 deluged.service
    -rw-r--r-- 1 root root 145 Aug 25 09:57 deluge-web.service
    -rw-r--r-- 1 root root 636 Oct 21 15:27 dev-hugepages.mount
    -rw-r--r-- 1 root root 590 Oct 21 15:27 dev-mqueue.mount
    -rw-r--r-- 1 root root 227 Aug 3 17:20 dhcpcd.service
    -rw-r--r-- 1 root root 318 Aug 3 17:20 [email protected]
    -rw-r--r-- 1 root root 305 Oct 23 19:30 dmeventd.service
    -rw-r--r-- 1 root root 243 Oct 23 19:30 dmeventd.socket
    -rw-r--r-- 1 root root 383 Oct 30 16:17 dnsmasq.service
    -rw-r--r-- 1 root root 940 Oct 21 15:27 emergency.service
    -rw-r--r-- 1 root root 431 Oct 21 15:27 emergency.target
    -rw-r--r-- 1 root root 149 May 29 05:46 fancontrol.service
    -rw-r--r-- 1 root root 440 Oct 21 15:27 final.target
    -rw-r--r-- 1 root root 141 Sep 12 06:38 ftpd.service
    -rw-r--r-- 1 root root 1486 Oct 21 15:27 [email protected]
    -rw-r--r-- 1 root root 460 Oct 21 15:27 getty.target
    -rw-r--r-- 1 root root 253 Oct 29 01:28 [email protected]
    -rw-r--r-- 1 root root 112 Oct 29 01:28 git-daemon.socket
    -rw-r--r-- 1 root root 161 Oct 24 19:10 gpm.service
    -rw-r--r-- 1 root root 522 Oct 21 15:27 graphical.target
    -rw-r--r-- 1 root root 487 Oct 21 15:27 halt.target
    -rw-r--r-- 1 root root 199 May 29 05:46 healthd.service
    -rw-r--r-- 1 root root 447 Oct 21 15:27 hibernate.target
    -rw-r--r-- 1 root root 337 Jul 18 21:07 httpd.service
    -rw-r--r-- 1 root root 468 Oct 21 15:27 hybrid-sleep.target
    -rw-r--r-- 1 root root 596 Oct 21 15:27 initrd-cleanup.service
    -rw-r--r-- 1 root root 536 Oct 21 15:27 initrd-fs.target
    -rw-r--r-- 1 root root 763 Oct 21 15:27 initrd-parse-etc.service
    -rw-r--r-- 1 root root 509 Oct 21 15:27 initrd-root-fs.target
    -rw-r--r-- 1 root root 606 Oct 21 15:27 initrd-switch-root.service
    -rw-r--r-- 1 root root 691 Oct 21 15:27 initrd-switch-root.target
    -rw-r--r-- 1 root root 654 Oct 21 15:27 initrd.target
    -rw-r--r-- 1 root root 668 Oct 21 15:27 initrd-udevadm-cleanup-db.service
    -rw-r--r-- 1 root root 319 Jun 1 07:35 ip6tables.service
    -rw-r--r-- 1 root root 308 Jun 1 07:35 iptables.service
    -rw-r--r-- 1 root root 162 Oct 14 08:42 irexec.service
    -rw-r--r-- 1 root root 501 Oct 21 15:27 kexec.target
    -rw-r--r-- 1 root root 721 Oct 21 15:27 kmod-static-nodes.service
    -rw-r--r-- 1 root root 137 Jun 10 08:46 krb5-kadmind.service
    -rw-r--r-- 1 root root 129 Jun 10 08:46 krb5-kdc.service
    -rw-r--r-- 1 root root 128 Jun 10 08:46 krb5-kpropd.service
    -rw-r--r-- 1 root root 159 Jun 10 08:46 [email protected]
    -rw-r--r-- 1 root root 122 Jun 10 08:46 krb5-kpropd.socket
    -rw-r--r-- 1 root root 177 Oct 14 08:42 lircm.service
    -rw-r--r-- 1 root root 225 Oct 14 08:42 lirc.service
    -rw-r--r-- 1 root root 348 May 29 05:46 lm_sensors.service
    -rw-r--r-- 1 root root 395 Oct 21 15:27 local-fs-pre.target
    -rw-r--r-- 1 root root 489 Oct 21 15:27 local-fs.target
    drwxr-xr-x 2 root root 4096 Nov 1 06:55 local-fs.target.wants
    -rw-r--r-- 1 root root 332 Oct 23 19:30 lvmetad.service
    -rw-r--r-- 1 root root 239 Oct 23 19:30 lvmetad.socket
    -rw-r--r-- 1 root root 504 Oct 23 19:30 lvm-monitoring.service
    -rw-r--r-- 1 root root 277 Sep 13 15:11 lxdm.service
    -rw-r--r-- 1 root root 405 Oct 21 15:27 machine.slice
    -rw-r--r-- 1 root root 130 Sep 4 16:24 mdadm.service
    -rw-r--r-- 1 root root 524 Oct 21 15:27 multi-user.target
    drwxr-xr-x 2 root root 4096 Nov 1 06:55 multi-user.target.wants
    -rw-r--r-- 1 root root 264 Sep 24 14:50 mysqld.service
    -rw-r--r-- 1 root root 404 Aug 6 10:46 [email protected]
    -rw-r--r-- 1 root root 317 Aug 6 10:46 [email protected]
    -rw-r--r-- 1 root root 238 Aug 6 10:46 netctl.service
    -rw-r--r-- 1 root root 290 Aug 6 10:46 [email protected]
    -rw-r--r-- 1 root root 248 Aug 6 10:46 netctl-sleep.service
    -rw-r--r-- 1 root root 443 Oct 21 15:27 network-online.target
    -rw-r--r-- 1 root root 433 Oct 21 15:27 network.target
    -rw-r--r-- 1 root root 400 Oct 25 17:29 nscd.service
    -rw-r--r-- 1 root root 514 Oct 21 15:27 nss-lookup.target
    -rw-r--r-- 1 root root 473 Oct 21 15:27 nss-user-lookup.target
    -rw-r--r-- 1 root root 207 Aug 1 05:29 ntpdate.service
    -rw-r--r-- 1 root root 210 Aug 1 05:29 ntpd.service
    -rw-r--r-- 1 root root 354 Oct 21 15:27 paths.target
    -rw-r--r-- 1 root root 172 Sep 18 19:20 polkit.service
    -rw-r--r-- 1 root root 287 Sep 6 04:01 postfix.service
    -rw-r--r-- 1 root root 500 Oct 21 15:27 poweroff.target
    -rw-r--r-- 1 root root 377 Oct 21 15:27 printer.target
    -rw-r--r-- 1 root root 693 Oct 21 15:27 proc-sys-fs-binfmt_misc.automount
    -rw-r--r-- 1 root root 603 Oct 21 15:27 proc-sys-fs-binfmt_misc.mount
    -rw-r--r-- 1 root root 641 Oct 21 15:27 quotaon.service
    -rw-r--r-- 1 root root 493 Oct 21 15:27 reboot.target
    -rw-r--r-- 1 root root 396 Oct 21 15:27 remote-fs-pre.target
    -rw-r--r-- 1 root root 482 Oct 21 15:27 remote-fs.target
    -rw-r--r-- 1 root root 958 Oct 21 15:27 rescue.service
    -rw-r--r-- 1 root root 486 Oct 21 15:27 rescue.target
    -rw-r--r-- 1 root root 500 Oct 21 15:27 rpcbind.target
    -rw-r--r-- 1 root root 127 Oct 28 17:58 [email protected]
    -rw-r--r-- 1 root root 115 Oct 28 17:58 saned.socket
    -rw-r--r-- 1 root root 158 May 29 05:46 sensord.service
    -rw-r--r-- 1 root root 989 Oct 21 15:27 [email protected]
    -rw-r--r-- 1 root root 402 Oct 21 15:27 shutdown.target
    drwxr-xr-x 2 root root 4096 Oct 7 05:47 shutdown.target.wants
    -rw-r--r-- 1 root root 362 Oct 21 15:27 sigpwr.target
    -rw-r--r-- 1 root root 420 Oct 21 15:27 sleep.target
    -rw-r--r-- 1 root root 403 Oct 21 15:27 -.slice
    -rw-r--r-- 1 root root 409 Oct 21 15:27 slices.target
    -rw-r--r-- 1 root root 380 Oct 21 15:27 smartcard.target
    -rw-r--r-- 1 root root 279 Aug 11 18:43 smartd.service
    -rw-r--r-- 1 root root 266 Aug 17 12:20 snmpd.service
    -rw-r--r-- 1 root root 283 Aug 17 12:20 snmptrapd.service
    -rw-r--r-- 1 root root 356 Oct 21 15:27 sockets.target
    drwxr-xr-x 2 root root 4096 Nov 1 06:56 sockets.target.wants
    -rw-r--r-- 1 root root 380 Oct 21 15:27 sound.target
    -rw-r--r-- 1 root root 221 Oct 27 01:00 speech-dispatcherd.service
    -rw-r--r-- 1 root root 511 Sep 13 11:00 sshdgenkeys.service
    -rw-r--r-- 1 root root 410 Sep 13 11:00 sshd.service
    -rw-r--r-- 1 root root 156 Sep 13 11:00 [email protected]
    -rw-r--r-- 1 root root 128 Sep 13 11:00 sshd.socket
    -rw-r--r-- 1 root root 441 Oct 21 15:27 suspend.target
    -rw-r--r-- 1 root root 270 Sep 13 05:38 svnserve.service
    -rw-r--r-- 1 root root 353 Oct 21 15:27 swap.target
    -rw-r--r-- 1 root root 681 Oct 21 15:27 sys-fs-fuse-connections.mount
    -rw-r--r-- 1 root root 540 Oct 21 15:27 sysinit.target
    drwxr-xr-x 2 root root 4096 Nov 1 06:55 sysinit.target.wants
    -rw-r--r-- 1 root root 685 Oct 21 15:27 sys-kernel-config.mount
    -rw-r--r-- 1 root root 628 Oct 21 15:27 sys-kernel-debug.mount
    -rw-r--r-- 1 root root 1235 Oct 21 15:27 syslog.socket
    -rw-r--r-- 1 root root 646 Oct 21 15:27 systemd-ask-password-console.path
    -rw-r--r-- 1 root root 657 Oct 21 15:27 systemd-ask-password-console.service
    -rw-r--r-- 1 root root 574 Oct 21 15:27 systemd-ask-password-wall.path
    -rw-r--r-- 1 root root 689 Oct 21 15:27 systemd-ask-password-wall.service
    -rw-r--r-- 1 root root 784 Oct 21 15:27 [email protected]
    -rw-r--r-- 1 root root 1015 Oct 21 15:27 systemd-binfmt.service
    -rw-r--r-- 1 root root 696 Oct 21 15:27 systemd-fsck-root.service
    -rw-r--r-- 1 root root 656 Oct 21 15:27 [email protected]
    -rw-r--r-- 1 root root 548 Oct 21 15:27 systemd-halt.service
    -rw-r--r-- 1 root root 505 Oct 21 15:27 systemd-hibernate.service
    -rw-r--r-- 1 root root 642 Oct 21 15:27 systemd-hostnamed.service
    -rw-r--r-- 1 root root 523 Oct 21 15:27 systemd-hybrid-sleep.service
    -rw-r--r-- 1 root root 484 Oct 21 15:27 systemd-initctl.service
    -rw-r--r-- 1 root root 489 Oct 21 15:27 systemd-initctl.socket
    -rw-r--r-- 1 root root 940 Oct 21 15:27 systemd-journald.service
    -rw-r--r-- 1 root root 833 Oct 21 15:27 systemd-journald.socket
    -rw-r--r-- 1 root root 702 Oct 21 15:27 systemd-journal-flush.service
    -rw-r--r-- 1 root root 582 Oct 21 15:27 systemd-journal-gatewayd.service
    -rw-r--r-- 1 root root 406 Oct 21 15:27 systemd-journal-gatewayd.socket
    -rw-r--r-- 1 root root 561 Oct 21 15:27 systemd-kexec.service
    -rw-r--r-- 1 root root 591 Oct 21 15:27 systemd-localed.service
    -rw-r--r-- 1 root root 972 Oct 21 15:27 systemd-logind.service
    -rw-r--r-- 1 root root 667 Oct 21 15:27 systemd-machined.service
    -rw-r--r-- 1 root root 1029 Oct 21 15:27 systemd-modules-load.service
    -rw-r--r-- 1 root root 478 Oct 21 15:27 [email protected]
    -rw-r--r-- 1 root root 557 Oct 21 15:27 systemd-poweroff.service
    -rw-r--r-- 1 root root 688 Oct 21 15:27 systemd-quotacheck.service
    -rw-r--r-- 1 root root 777 Oct 21 15:27 systemd-random-seed.service
    -rw-r--r-- 1 root root 845 Oct 21 15:27 systemd-readahead-collect.service
    -rw-r--r-- 1 root root 615 Oct 21 15:27 systemd-readahead-done.service
    -rw-r--r-- 1 root root 593 Oct 21 15:27 systemd-readahead-done.timer
    -rw-r--r-- 1 root root 555 Oct 21 15:27 systemd-readahead-drop.service
    -rw-r--r-- 1 root root 757 Oct 21 15:27 systemd-readahead-replay.service
    -rw-r--r-- 1 root root 552 Oct 21 15:27 systemd-reboot.service
    -rw-r--r-- 1 root root 828 Oct 21 15:27 systemd-remount-fs.service
    -rw-r--r-- 1 root root 479 Oct 21 15:27 systemd-shutdownd.service
    -rw-r--r-- 1 root root 528 Oct 21 15:27 systemd-shutdownd.socket
    -rw-r--r-- 1 root root 501 Oct 21 15:27 systemd-suspend.service
    -rw-r--r-- 1 root root 900 Oct 21 15:27 systemd-sysctl.service
    -rw-r--r-- 1 root root 593 Oct 21 15:27 systemd-timedated.service
    -rw-r--r-- 1 root root 853 Oct 21 15:27 systemd-tmpfiles-clean.service
    -rw-r--r-- 1 root root 450 Oct 21 15:27 systemd-tmpfiles-clean.timer
    -rw-r--r-- 1 root root 622 Oct 21 15:27 systemd-tmpfiles-setup-dev.service
    -rw-r--r-- 1 root root 915 Oct 21 15:27 systemd-tmpfiles-setup.service
    -rw-r--r-- 1 root root 578 Oct 21 15:27 systemd-udevd-control.socket
    -rw-r--r-- 1 root root 575 Oct 21 15:27 systemd-udevd-kernel.socket
    -rw-r--r-- 1 root root 772 Oct 21 15:27 systemd-udevd.service
    -rw-r--r-- 1 root root 827 Oct 21 15:27 systemd-udev-settle.service
    -rw-r--r-- 1 root root 723 Oct 21 15:27 systemd-udev-trigger.service
    -rw-r--r-- 1 root root 761 Oct 21 15:27 systemd-update-utmp-runlevel.service
    -rw-r--r-- 1 root root 831 Oct 21 15:27 systemd-update-utmp.service
    -rw-r--r-- 1 root root 558 Oct 21 15:27 systemd-user-sessions.service
    -rw-r--r-- 1 root root 690 Oct 21 15:27 systemd-vconsole-setup.service
    -rw-r--r-- 1 root root 433 Oct 21 15:27 system.slice
    -rw-r--r-- 1 root root 652 Oct 21 15:27 system-update.target
    -rw-r--r-- 1 root root 355 Oct 21 15:27 timers.target
    drwxr-xr-x 2 root root 4096 Nov 1 06:55 timers.target.wants
    -rw-r--r-- 1 root root 509 Oct 21 15:27 time-sync.target
    -rw-r--r-- 1 root root 591 Oct 21 15:27 tmp.mount
    -rw-r--r-- 1 root root 155 May 17 2013 udisks.service
    -rw-r--r-- 1 root root 417 Oct 21 15:27 umount.target
    -rw-r--r-- 1 root root 584 Oct 21 15:27 [email protected]
    -rw-r--r-- 1 root root 392 Oct 21 15:27 user.slice
    -rw-r--r-- 1 root root 202 Oct 21 16:31 uuidd.service
    -rw-r--r-- 1 root root 126 Oct 21 16:31 uuidd.socket
    -rw-r--r-- 1 root root 221 Oct 29 22:58 vboxweb.service
    -rw-r--r-- 1 root root 160 May 12 2013 vsftpd.service
    -rw-r--r-- 1 root root 163 May 12 2013 [email protected]
    -rw-r--r-- 1 root root 104 May 12 2013 vsftpd.socket
    -rw-r--r-- 1 root root 201 May 12 2013 vsftpd-ssl.service
    -rw-r--r-- 1 root root 226 May 12 2013 [email protected]
    -rw-r--r-- 1 root root 105 May 12 2013 vsftpd-ssl.socket
    -rw-r--r-- 1 root root 349 Sep 30 11:32 xmms2d.service
    [kbs1@arch systemd]$
    Could someone tell me which file to create, exactly where, and what symlink to link to it? Also, what commands to type then? I just want to execute these simple commands:
    echo "Updating dynamic IP at freedns.afraid.org..."
    wget -qO- http://freedns.afraid.org/dynamic/update.php?YYY &> /dev/null
    Thank you very much! I'm sure this will help others as well.

    Start by reading systemd.unit(5) and systemd.service(5)

Maybe you are looking for

  • Can I hook 2 external monitors to a new Macbook Pro?  If so what do I need?

    I am purchasing a new macbook pro 15 inch.  I would like to hook it to 2 external monitors with the laptop closed.  Is this possible? And what hardware would I need? Thanks

  • Splash image not working in JNLP

    Hi all... Splash image is not get displayed in my Application.. Here is my JNLP file. <jnlp spec="6.0+" codebase="http://localhost:8080/MyProject/">   <information>     <title>MyProject1.0</title>     <vendor>My Company.</vendor>     <homepage href="

  • Number Finding

    Hi Team I have a query about finding the number like input data like 1234528215 Then ouput should be Number--Repeted Count 1-----------2 2-----------3 3-----------1 4-----------1 5-----------2 8-----------1

  • Event Alert in AP_INVOICES_INTERFACE

    Hi, I have created the event alert on table AP_INVOICES_INTERFACE. Its not firing when I am updating or inserting the invoice record in the AP_INVOICES_INTERFACE table through back end. Could please any body guide me regarding to the Event Alert proc

  • Cancel Vibrating Alerts

    BB Torch 9810  In the last few days the BB has been vibrating whenever I receive an email even though I have turned vibrate of for Message Alerts in all Profiles.  What can I do to eliminate the vibrating? Thanks, Ralph Solved! Go to Solution.