Unix socket

We are writing application that have more then one processes and we are planing to use Unix socket for communication between the processes, and my questions is
1. is there any performance issues with Unix socket ( the message size will be something between 512 - 1k ).
2. my second question is it Ok to have more then process writing to the same socket !!!.
Thanks

Hi,
You can use socket for IPC but cannot use the same socket in two processes. You open socket for a specific port in each of the process and comminucate over that.
Hope this helps,
--Sun/DTS                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Non-global zones and unix sockets

    Hello, I have a problem with local zones and unix socket sharing. I've created directory in global zone for ex. /zones/shared. Added it to zones via 'add fs, type=lofs' . In one zone I'm putting mysql socket in it and I want that other local zones could use it. Is it possible to share socket between zones?
    After all my experiments I'm always getting 'can't connect to mysql ... (146)' , 146 is 'connection refused' error.

    These services are off-line in the non-global zone, which is why non of the
    rc2.d or rc3.d scripts are being run:
    offline Dec_12 svc:/milestone/multi-user-server:default
    offline Dec_12 svc:/milestone/multi-user:default
    Any idea how to enable these, and why they are offline?
    Michael
    Created a non-global zone on a Solaris 10 box.
    Boots up ok and I can login with zlogin.
    It doesn't seem to run any of the scripts in
    /etc/rc2.d or /etc/rc3.d
    I know Solaris 10 uses "Service Management Facility"
    for most services now,
    but could still run legacy scripts in /etc/init.d ?
    Also I can't get sshd to start on the non-global
    zone.
    # svcs -a |grep ssh2
    offline 11:44:58 svc:/network/ssh:default
    # svcadm enable -t svc:/network/ssh:default
    # svcs -a |grep ssh2
    offline 11:44:58 svc:/network/ssh:default
    Anyone got any ideas?
    Michael

  • How to store php sessions using memcached and unix socket

    I am running Arch linux with systemd, nginx, and php with php-fpm. I am trying (and failing) to configure memcached to store sessions using a unix socket. I have memcached installed and active, however, I am unable to disable networking. I added the following line to /etc/conf.d/memcached
    MEMCACHED_ARGS="-s unix:///tmp/memcached.sock -a 666"
    I also tried:
    MEMCACHED_ARGS="-s /tmp/memcached.sock -a 666"
    MEMCACHED_ARGS="-s unix:/tmp/memcached.sock -a 666"
    when I restart memcached I always get:
    memcached.service - Memcached Daemon
              Loaded: loaded (/usr/lib/systemd/system/memcached.service; enabled)
              Active: active (running) since Sat 2013-01-19 17:41:15 PST; 5min ago
            Main PID: 773 (memcached)
              CGroup: name=systemd:/system/memcached.service
                      └─773 /usr/bin/memcached -l 127.0.0.1
    when I run php script with sessions php error log shows (not surprisingly):
    [19-Jan-2013 16:46:45 America/Los_Angeles] PHP Warning:  Unknown: Failed to write session data (memcached). Please verify that the current setting of session.save_path is correct (unix:/tmp/memcached.sock) in Unknown on line 0
    I also installed the php-memcached package but I don't what it does or how to get it going. I uncommented the following line in /etc/php/conf.d/memcached.ini:
    extension=memcached.so
    but that didn't change anything.
    Any insights or suggestions would be greatly appreciated.

    Look at this link -http://odiexperts.com/getting-one-or-several-unknown-files-from-a-directory
    change the command to fetch the ls command and write into File and then using either java or jython break the data and fetch the file name and date and insert into log table.
    (or)
    you can use the os.system command and get the complete ls command into string and then process and insert it.
    Let us know if you need any other help.

  • Clamd Amavisd unix socket question

    I have setup user and group 'clamav'
    The socket for clamd and amavisd is /var/clamav/clamd.sock and is setup in both clamd.conf and amavisd.conf. Permissions have been set. What I see in my log file though, is:
    ClamAV-ClamD: Can't connect to UNIX socket /var/clamav/clamd.sock file does not exist.
    It tries a few times and gives up.
    Looking at the log file, I also noticed a line at amavisd startup:
    Net::Server: Binding to unix socket file /var/amavis/amavisd.sock.
    hmmm. So I changed all the above config files to the amavisd.sock.
    This seemed to remove the issue of clamd being able to connect to the socket, but now it just seems to take a very long time to come back from checking the email.
    Any thoughts?
    Thanks
    Joe

    Hi joe,
    A couple more updates. BTW, did you need to create a clamav user:group? It should have already existed on OS X 10.4.6 onwards at least (maybe even earlier but I can't remember).
    In my /etc/clamav.conf, I have my socket set to "/var/run/clamav/clamd".
    In my /etc/amavisd.conf, in the clamd section, I made sure the path to the clamd socket is as above. Excuse me if I'm misinterpreting your post, but I presume you've left '$unix_socketname' in this file to '$MYHOME/amavisd.sock'.
    Then I added a launchd script to /Library/LaunchDaemons/org.clamav.clamd.plist, in which I pass clamd the '-c /etc/clamav.conf' argument.
    To get launchd to actually detect clamd, I've also enabled the 'Foreground' option in /etc/clamav.conf.

  • Unix domain sockets: How to name them? And where to put them?

    I am using unix sockets for inter-process communication in a C++/gtkmm project.
    Are there naming conventions and conventions about where to place sockets in the filesystem? In all example code I found, dummies like /home/user/mysocket were being used.
    If there are not any conventions: Would it be sensible to put the sockets in /tmp/ and compose the names of the name of the program which uses the concerning socket, and its PID? (The latter also depends on my use case, of course; from that point of view, it seems sensible.)

    @Franek:  KDE applications place their sockets (through KDE API, of course) in "/tmp/ksocket-foo/bar__0", where "foo" is the user name, "bar" the application name and "0" an increasing counter (in case an application creates more than one socket).  Emacs places its server socket in a similar manner "/tmp/emacs1000/server", where "1000" is the UID.
    I'd use emacs' name scheme, e.g. "/tmp/bar1000/what_the_socket_is_for", where "bar" is the application name again. 
    However, do not place sockets directly in "/tmp/". For one thing, it just clutters this global directory, but more importantly it's unsafe, as every other user can inspect these sockets.  Create a directory within "/tmp/" and restrict its access rights to the owner (mode 700).  Thus other users can't inspect the sockets within that directory.  Of course, the access rights of the sockets themselves must also be limited.
    Last edited by lunar (2011-10-12 18:59:32)

  • Unix domain socket connection limits ?

    Hi All,
    I'm trying to handle more than 32 conn. connections on a unix socket domain on Solaris 8 or 7. I couldn't able to pass 32 connection limit. As far as I know, this was a limit for Solaris 2.5.1 or 2.6. I raised the tcp_conn_req_maxq and tcp_conn_req_maxq0 values to greater than 1024 and it didn't help out.
    Is there anyone who knows how to pass this limit ?
    Best Regards,
    P.S. I have 1GB ram on each machine.

    The default limit is 256. Try to look plimit command, which change thats limits.

  • Which socket to use in amavisd.conf for clamav??

    Hi!
    I just updated clamav and amavisd with the help of Alex' excellent tutorials.
    Everything worked as expected, mails also get received, but regarding the logfiles there is an error with the clamav socket in the amavisd.conf file.
    Jul 28 09:41:20 knserver amavis[28447]: (28447-01) (!)ClamAV-clamd: Can't connect to UNIX socket /var/clamav/clamd.sock: Connection refused, retrying (2)
    Jul 28 09:41:26 knserver amavis[28447]: (28447-01) (!)run_av (ClamAV-clamd, built-in i/f): Too many retries to talk to /var/clamav/clamd.sock (Can't connect to UNIX socket /var/clamav/clamd.sock: Connection refused) at (eval 43) line 310.
    Jul 28 09:41:26 knserver amavis[28447]: (28447-01) (!!)ClamAV-clamd av-scanner FAILED: CODE(0x1801470) Too many retries to talk to /var/clamav/clamd.sock (Can't connect to UNIX socket /var/clamav/clamd.sock: Connection refused) at (eval 43) line 310. at (eval 43) line 511.
    I looked in the original amavisd.conf file, there has been the same entry!
    What to do?

    I once again read the whole tutorial. I also tried the tip with switching from clamscan to clamd. So I replaced the the socket entry "/var/clamav/clamd.sock" with "/tmp/clamd". Sadly I still get the same errors. Of course I also tried "/var/amavis/clamd" with no luck...
    Rebooting has been done, reloading the processes with the launchctl tool also.
    Jul 28 11:22:55 knserver amavis[285]: (00285-02) (!)ClamAV-clamd: Can't connect to UNIX socket /tmp/clamd: No such file or directory, retrying (2)
    Jul 28 11:23:01 knserver amavis[285]: (00285-02) (!)run_av (ClamAV-clamd, built-in i/f): Too many retries to talk to /tmp/clamd (Can't connect to UNIX socket /tmp/clamd: No such file or directory) at (eval 43) line 310.
    Jul 28 11:23:01 knserver amavis[285]: (00285-02) (!!)ClamAV-clamd av-scanner FAILED: CODE(0x1801470) Too many retries to talk to /tmp/clamd (Can't connect to UNIX socket /tmp/clamd: No such file or directory) at (eval 43) line 310. at (eval 43) line 511.
    Jul 28 11:23:01 knserver amavis[285]: (00285-02) (!!)WARN: all primary virus scanners failed, considering backups
    Please help! Thx.

  • MySQL socket problems after system update

    I have been using my new Mac Mini Snow Leopard server as Squeezebox Server for over a month wihtout problems. After a system update this weekend I started to get MySQL socket errors after reboot.
    Started; log sequence number 0 43655
    091213 17:10:04 [ERROR] Can't start server : Bind on unix socket: Invalid argument
    091213 17:10:04 [ERROR] Do you already have another mysqld server running on socket: /Users/admin/Library/Caches/Squeezebox/squeezebox-mysql.sock ?
    091213 17:10:04 [ERROR] Aborting
    Although I have posted this issue to the Squeezebox forum (http://forums.slimdevices.com/showthread.php?t=72510) where it primarily belongs to I wanted to hear if anyone maybe had an idea what recent changes in Apple updates could cause this? Maybe someone else has similar MySQL problems with other installations? I am a bit desperate by now so any idea or hint is appreciated.

    Here was my solution/workaround for this issue to the rest of us poor fellas that have too fight around with Squeezebox server from time to time:
    I setup SBS to use the the standard MySQL installation on Mac OS X SL Server since I could get it to run without problems from Server Admin. Here are the instruction from the SBS Wiki:
    http://wiki.slimdevices.com/index.php/ExistingMySQLInstance
    However, I had to deviate a bit from that in order to make it work since it seems a bit outdated.
    First deviation was necessary for the MySQL access privileges. Notice the extra grant to slimserver@localhost. Don't ask me why but this worked. I do also not know whether both grants would be necessary because I haven't tried it. Feel free to improve it:
    # mysql -u admin_user -p
    Enter password: admin_password
    Welcome to the MySQL monitor.
    Commands end with ; or \g.
    Your MySQL connection id is 103 to server version: 5.0.24a-log
    Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
    mysql> create database slimserver;
    Query OK, 1 row affected (0.22 sec)
    mysql> grant all on slimserver.* to slimserver identified by 'slimserver_password';
    Query OK, 0 rows affected (0.13 sec)
    mysql> grant all on slimserver.* to slimserver@localhost identified by 'slimserver_password';
    Query OK, 0 rows affected (0.13 sec)
    mysql> flush privileges;
    Query OK,
    mysql> quit
    There were also slight differences necessary in the preferences setup because MySQL socket location was different from the standard one. Here are my db entries ~/Library/Application Support/Squeezebox/server.prefs:
    dbpassword: slimserver_password
    dbsource: dbi:mysql:database=slimserver;mysql_socket=/var/mysql/mysql.sock
    dbusername: slimserver
    Notice the extra mysql_socket configuration.

  • Too Many Files Open (Errno: 24) - HP Unix server

    Hi All,
    We have many processes (nearly 30) running on HP unix server. Among these 30 processes, 10 processes runs for every 15 mins and transfer files between NT server and UNIX server.
    All these 10 processes are same processes. Only difference is, each one transfer files from/to different NT servers. During the file transfers, we are opening and closing the streams. But, we are not closing the file objects. Without closing the file objects, we are assigning NULL to the file objects after use. I read at many places that it is recommended to assign NULL to the file object as assigning null will be removed by garbage collector.
    Coming to the issue..... after our processes runs for 1 or days, we are getting an error saying "java.io.FileNotFoundException: Too many open files (errno:24)" and the corresponding process is going down.
    it seems, the setting specified to limit the file objects on UNIX server need to be increased. But, as we are closing all the streams, I don't think increasing the setting on UNIX will solve the problem.
    Could any of you throw some light on this and let me know if you already have come across this type of issue before?
    One more doubt I have is.... I read as ...... The file object limit set on UNIX is the sum of file objects as well as open sockets count. Do any can help me in letting me know what else will be considered as part of these fileobject count? I mean, whether the connection to DB from unix also are considered as part of these file object count?
    Thanks in advance and looking for your reply....
    Kamal

    Under Unix, sockets, named and unnamed pipes etc. all use file descriptors as teh open files.
    Unix systems usually provide the /proc pseudo file system.
    ls -l /proc/[process id]/fd
    might yield something interesting.
    total 31
    lr-x------ 1 oracle oinstall 64 Jan 3 12:01 0 -> /dev/null
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 1 -> /opt/oracle/product/AS/10g/R2/opmn/logs/OC4J~ebank~default_island~1
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 10 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/dev/ebank_default_island_1/application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 11 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/dev-sme/ebank_default_island_1/application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 12 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/dev-sme-fun/ebank_default_island_1/application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 13 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/smea-dev/ebank_default_island_1/application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 14 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/dev-noncash/ebank_default_island_1/application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 15 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/fun-noncash/ebank_default_island_1/application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 16 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/act-trambulin/ebank_default_island_1/application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 17 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/ebank-dev/ebank_default_island_1/application.log (deleted)
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 18 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/log/ebank_default_island_1/default-web-access.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 19 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/log/ebank_default_island_1/jms.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 2 -> /opt/oracle/product/AS/10g/R2/opmn/logs/OC4J~ebank~default_island~1
    lrwx------ 1 oracle oinstall 64 Jan 3 12:01 20 -> socket:[2833421]
    lrwx------ 1 oracle oinstall 64 Jan 3 12:01 21 -> socket:[2833419]
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 22 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/log/ebank_default_island_1/rmi.log
    lrwx------ 1 oracle oinstall 64 Jan 3 12:01 23 -> socket:[2833423]
    lrwx------ 1 oracle oinstall 64 Jan 3 12:01 24 -> socket:[2833424]
    lrwx------ 1 oracle oinstall 64 Jan 3 12:01 25 -> socket:[2833425]
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 26 -> /opt/oracle/product/AS/10g/R2/j2ee/home/velocity.log
    lrwx------ 1 oracle oinstall 64 Jan 3 12:01 27 -> socket:[5553789]
    lrwx------ 1 oracle oinstall 64 Jan 3 12:01 28 -> socket:[5786563]
    lr-x------ 1 oracle oinstall 64 Jan 3 12:01 3 -> pipe:[2833350]
    lr-x------ 1 oracle oinstall 64 Jan 3 12:01 32 -> /proc/24214/stat
    lr-x------ 1 oracle oinstall 64 Jan 3 12:01 34 -> /dev/random
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 4 -> pipe:[2833350]
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 5 -> /opt/oracle/product/AS/10g/R2/j2ee/home/velocity.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 6 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/log/ebank_default_island_1/server.log
    lr-x------ 1 oracle oinstall 64 Jan 3 12:01 7 -> /proc/uptime
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 8 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/log/ebank_default_island_1/global-application.log
    l-wx------ 1 oracle oinstall 64 Jan 3 12:01 9 -> /opt/oracle/product/AS/10g/R2/j2ee/ebank/application-deployments/PaymentGatewayTestDevel/ebank_default_island_1/application.log

  • How to keep a socket live....

    Hi,
    Any ideas of how I can keep a socket live in a forever loop and pass the incoming data to another socket?
    thanks in advance.........

    The UnixS class opens a socket to a unix machine
    public class Server extends Thread
         UnixS   unix;
         Socket     clnt  = null;
         int     totin = 0;
    public Server(Socket soc) 
         clnt = soc;
    public void run()
         OutputStream out = null;
         InputStream  in  = null;
         int  i   = 0;
         byte b[] = new byte[120];
         try
              out  = clnt.getOutputStream();
              in   = clnt.getInputStream();
              unix = new UnixS(out);
              unix.start();
              while ((i = in.read(b)) > 0)
                   unix.out.write(b,0,i);
                   totin = totin + i;
         catch (IOException e){}
         serverV.remove(this);
         try
              in.close();
              out.close();
              unix.out.close();
              unix.in.close();
         catch (IOException e){}

  • Leopard PHP MySQL socket problems

    I'm running a default Mac OS X 10.5 Apache2 installation locally, with PHP and MySQL tacked on. I'm running into some trouble running MySQL queries from PHP, namely:
    Can't connect to local MySQL server through socket '/var/mysql/mysql.sock'
    It appears that PHP was compiled with the configuration command '--with-mysql-sock=/var/mysql' but in Terminal the mysqladmin binary reports the UNIX socket as /tmp/mysql.sock. A check reveals that there is indeed a /tmp/mysql.sock, but no /var/mysql/mysql.sock. This appears to be one of those directory differences between Darwin and the standard MySQL distribution.
    Anyhow, I really don't know the best way to attempt to patch this up even after reading suggestions in the MySQL manual. Setting up an option file for mysql to point to /var/mysql didn't improve matters, nor did explicitly setting socket settings in my PHP config file.
    I'm more of a front-end developer not well versed in back end configuration jazz, so any input would be appreciated.

    the other way to fix this is to edit /etc/php.ini and set the following:
    mysql.default_port = /tmp/mysql.sock
    mysqli.default_port = /tmp/mysql.sock
    mysql.default_sock = /tmp/mysql.sock
    mysqli.default_sock = /tmp/mysql.sock

  • [Solved] LXDE missing window borders (or decoratioins, widget?)

    Hello,
    The LXDE runs fine on my newly built arch for a couple of days, and then I must have done something (e.g. upgraded or uninstalled some packages) and now I can still log into LXDE by using slim login manager or startx command, but none of the applications will have the window borders and I am not able to move the application window around or minimize/resize the window.
    Here is my .xinitrc file
    [sgeuser@sge00 ~]$ cat .xinitrc
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    # exec gnome-session
    # exec startkde
    # exec startxfce4
    # ...or the Window Manager of your choice
    FontPath /usr/share/fonts/100dpi
    xset -dpms
    xset s off
    exec /usr/bin/startlxde
    Here is my systemd journal since reboot:
    [1;39m-- Reboot --[0m
    Sep 02 13:13:37 sge00 systemd-journal[98]: Allowing runtime journal files to grow to 100.3M.
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys cpuset
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys cpu
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys cpuacct
    Sep 02 13:13:37 sge00 kernel: Linux version 3.10.10-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Aug 30 11:30:06 CEST 2013
    Sep 02 13:13:37 sge00 kernel: Command line: root=/dev/sda1 rw initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Sep 02 13:13:37 sge00 kernel: e820: BIOS-provided physical RAM map:
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007ffeffff] usable
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
    Sep 02 13:13:37 sge00 kernel: NX (Execute Disable) protection: active
    Sep 02 13:13:37 sge00 kernel: SMBIOS 2.5 present.
    Sep 02 13:13:37 sge00 kernel: DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
    Sep 02 13:13:37 sge00 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Sep 02 13:13:37 sge00 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Sep 02 13:13:37 sge00 kernel: No AGP bridge found
    Sep 02 13:13:37 sge00 kernel: e820: last_pfn = 0x7fff0 max_arch_pfn = 0x400000000
    Sep 02 13:13:37 sge00 kernel: MTRR default type: uncachable
    Sep 02 13:13:37 sge00 kernel: MTRR variable ranges disabled:
    Sep 02 13:13:37 sge00 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Sep 02 13:13:37 sge00 kernel: CPU MTRRs all blank - virtualized system.
    Sep 02 13:13:37 sge00 kernel: found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [ffff88000009fff0]
    Sep 02 13:13:37 sge00 kernel: Scanning 1 areas for low memory corruption
    Sep 02 13:13:37 sge00 kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x00000000-0x000fffff] page 4k
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b23000, 0x01b23fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b24000, 0x01b24fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b25000, 0x01b25fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x7fa00000-0x7fbfffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x7fa00000-0x7fbfffff] page 2M
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b26000, 0x01b26fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x7c000000-0x7f9fffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x7c000000-0x7f9fffff] page 2M
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x00100000-0x7bffffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x00100000-0x001fffff] page 4k
    Sep 02 13:13:37 sge00 kernel: [mem 0x00200000-0x7bffffff] page 2M
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x7fc00000-0x7ffeffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x7fc00000-0x7fdfffff] page 2M
    Sep 02 13:13:37 sge00 kernel: [mem 0x7fe00000-0x7ffeffff] page 4k
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b27000, 0x01b27fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: RAMDISK: [mem 0x7fd22000-0x7ffeefff]
    Sep 02 13:13:37 sge00 kernel: ACPI: RSDP 00000000000e0000 00024 (v02 VBOX )
    Sep 02 13:13:37 sge00 kernel: ACPI: XSDT 000000007fff0030 0003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
    Sep 02 13:13:37 sge00 kernel: ACPI: FACP 000000007fff00f0 000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
    Sep 02 13:13:37 sge00 kernel: ACPI: DSDT 000000007fff0470 01B96 (v01 VBOX VBOXBIOS 00000002 INTL 20100528)
    Sep 02 13:13:37 sge00 kernel: ACPI: FACS 000000007fff0200 00040
    Sep 02 13:13:37 sge00 kernel: ACPI: APIC 000000007fff0240 0005C (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
    Sep 02 13:13:37 sge00 kernel: ACPI: SSDT 000000007fff02a0 001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
    Sep 02 13:13:37 sge00 kernel: ACPI: Local APIC address 0xfee00000
    Sep 02 13:13:37 sge00 kernel: No NUMA configuration found
    Sep 02 13:13:37 sge00 kernel: Faking a node at [mem 0x0000000000000000-0x000000007ffeffff]
    Sep 02 13:13:37 sge00 kernel: Initmem setup node 0 [mem 0x00000000-0x7ffeffff]
    Sep 02 13:13:37 sge00 kernel: NODE_DATA [mem 0x7fd1d000-0x7fd21fff]
    Sep 02 13:13:37 sge00 kernel: [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007d400000-ffff88007f3fffff] on node 0
    Sep 02 13:13:37 sge00 kernel: Zone ranges:
    Sep 02 13:13:37 sge00 kernel: DMA [mem 0x00001000-0x00ffffff]
    Sep 02 13:13:37 sge00 kernel: DMA32 [mem 0x01000000-0xffffffff]
    Sep 02 13:13:37 sge00 kernel: Normal empty
    Sep 02 13:13:37 sge00 kernel: Movable zone start for each node
    Sep 02 13:13:37 sge00 kernel: Early memory node ranges
    Sep 02 13:13:37 sge00 kernel: node 0: [mem 0x00001000-0x0009efff]
    Sep 02 13:13:37 sge00 kernel: node 0: [mem 0x00100000-0x7ffeffff]
    Sep 02 13:13:37 sge00 kernel: On node 0 totalpages: 524174
    Sep 02 13:13:37 sge00 kernel: DMA zone: 64 pages used for memmap
    Sep 02 13:13:37 sge00 kernel: DMA zone: 21 pages reserved
    Sep 02 13:13:37 sge00 kernel: DMA zone: 3998 pages, LIFO batch:0
    Sep 02 13:13:37 sge00 kernel: DMA32 zone: 8128 pages used for memmap
    Sep 02 13:13:37 sge00 kernel: DMA32 zone: 520176 pages, LIFO batch:31
    Sep 02 13:13:37 sge00 kernel: ACPI: PM-Timer IO Port: 0x4008
    Sep 02 13:13:37 sge00 kernel: ACPI: Local APIC address 0xfee00000
    Sep 02 13:13:37 sge00 kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Sep 02 13:13:37 sge00 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Sep 02 13:13:37 sge00 kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Sep 02 13:13:37 sge00 kernel: IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    Sep 02 13:13:37 sge00 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Sep 02 13:13:37 sge00 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Sep 02 13:13:37 sge00 kernel: ACPI: IRQ0 used by override.
    Sep 02 13:13:37 sge00 kernel: ACPI: IRQ2 used by override.
    Sep 02 13:13:37 sge00 kernel: ACPI: IRQ9 used by override.
    Sep 02 13:13:37 sge00 kernel: Using ACPI (MADT) for SMP configuration information
    Sep 02 13:13:37 sge00 kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    Sep 02 13:13:37 sge00 kernel: nr_irqs_gsi: 40
    Sep 02 13:13:37 sge00 kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Sep 02 13:13:37 sge00 kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Sep 02 13:13:37 sge00 kernel: PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Sep 02 13:13:37 sge00 kernel: e820: [mem 0x80000000-0xfffbffff] available for PCI devices
    Sep 02 13:13:37 sge00 kernel: Booting paravirtualized kernel on bare hardware
    Sep 02 13:13:37 sge00 kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    Sep 02 13:13:37 sge00 kernel: PERCPU: Embedded 28 pages/cpu @ffff88007fa00000 s86016 r8192 d20480 u1048576
    Sep 02 13:13:37 sge00 kernel: pcpu-alloc: s86016 r8192 d20480 u1048576 alloc=1*2097152
    Sep 02 13:13:37 sge00 kernel: pcpu-alloc: [0] 0 1
    Sep 02 13:13:37 sge00 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 515961
    Sep 02 13:13:37 sge00 kernel: Policy zone: DMA32
    Sep 02 13:13:37 sge00 kernel: Kernel command line: root=/dev/sda1 rw initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Sep 02 13:13:37 sge00 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Sep 02 13:13:37 sge00 kernel: Checking aperture...
    Sep 02 13:13:37 sge00 kernel: No AGP bridge found
    Sep 02 13:13:37 sge00 kernel: Calgary: detecting Calgary via BIOS EBDA area
    Sep 02 13:13:37 sge00 kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Sep 02 13:13:37 sge00 kernel: Memory: 2049056k/2097088k available (4943k kernel code, 392k absent, 47640k reserved, 4024k data, 1124k init)
    Sep 02 13:13:37 sge00 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Sep 02 13:13:37 sge00 kernel: Preemptible hierarchical RCU implementation.
    Sep 02 13:13:37 sge00 kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Sep 02 13:13:37 sge00 kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Sep 02 13:13:37 sge00 kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=2.
    Sep 02 13:13:37 sge00 kernel: NR_IRQS:4352 nr_irqs:512 16
    Sep 02 13:13:37 sge00 kernel: Console: colour VGA+ 80x25
    Sep 02 13:13:37 sge00 kernel: console [tty0] enabled
    Sep 02 13:13:37 sge00 kernel: allocated 8388608 bytes of page_cgroup
    Sep 02 13:13:37 sge00 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Sep 02 13:13:37 sge00 kernel: tsc: Fast TSC calibration failed
    Sep 02 13:13:37 sge00 kernel: tsc: PIT calibration matches PMTIMER. 2 loops
    Sep 02 13:13:37 sge00 kernel: tsc: Detected 2708.883 MHz processor
    Sep 02 13:13:37 sge00 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5419.50 BogoMIPS (lpj=9029610)
    Sep 02 13:13:37 sge00 kernel: pid_max: default: 32768 minimum: 301
    Sep 02 13:13:37 sge00 kernel: Security Framework initialized
    Sep 02 13:13:37 sge00 kernel: AppArmor: AppArmor disabled by boot time parameter
    Sep 02 13:13:37 sge00 kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Sep 02 13:13:37 sge00 kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Sep 02 13:13:37 sge00 kernel: Mount-cache hash table entries: 256
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys memory
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys devices
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys freezer
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys net_cls
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys blkio
    Sep 02 13:13:37 sge00 kernel: CPU: Physical Processor ID: 0
    Sep 02 13:13:37 sge00 kernel: CPU: Processor Core ID: 0
    Sep 02 13:13:37 sge00 kernel: mce: CPU supports 0 MCE banks
    Sep 02 13:13:37 sge00 kernel: [117B blob data]
    Sep 02 13:13:37 sge00 kernel: Freeing SMP alternatives: 20k freed
    Sep 02 13:13:37 sge00 kernel: ACPI: Core revision 20130328
    Sep 02 13:13:37 sge00 kernel: ACPI: All ACPI Tables successfully acquired
    Sep 02 13:13:37 sge00 kernel: ftrace: allocating 19652 entries in 77 pages
    Sep 02 13:13:37 sge00 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Sep 02 13:13:37 sge00 kernel: smpboot: CPU0: Intel(R) Core(TM) i7-3820QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
    Sep 02 13:13:37 sge00 kernel: Performance Events: unsupported p6 CPU model 58 no PMU driver, software events only.
    Sep 02 13:13:37 sge00 kernel: NMI watchdog: disabled (cpu0): hardware events not enabled
    Sep 02 13:13:37 sge00 kernel: smpboot: Booting Node 0, Processors #1 OK
    Sep 02 13:13:37 sge00 kernel: mce: CPU supports 0 MCE banks
    Sep 02 13:13:37 sge00 kernel: TSC synchronization [CPU#0 -> CPU#1]:
    Sep 02 13:13:37 sge00 kernel: Measured 31057 cycles TSC warp between CPUs, turning off TSC clock.
    Sep 02 13:13:37 sge00 kernel: tsc: Marking TSC unstable due to check_tsc_sync_source failed
    Sep 02 13:13:37 sge00 kernel: Brought up 2 CPUs
    Sep 02 13:13:37 sge00 kernel: smpboot: Total of 2 processors activated (10839.01 BogoMIPS)
    Sep 02 13:13:37 sge00 kernel: devtmpfs: initialized
    Sep 02 13:13:37 sge00 kernel: RTC time: 17:13:36, date: 09/02/13
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 16
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type PCI registered
    Sep 02 13:13:37 sge00 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Sep 02 13:13:37 sge00 kernel: PCI: Using configuration type 1 for base access
    Sep 02 13:13:37 sge00 kernel: bio: create slab <bio-0> at 0
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(Module Device)
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(Processor Device)
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Sep 02 13:13:37 sge00 kernel: ACPI: EC: Look up EC in DSDT
    Sep 02 13:13:37 sge00 kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Sep 02 13:13:37 sge00 kernel: ACPI: Interpreter enabled
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI: (supports S0 S5)
    Sep 02 13:13:37 sge00 kernel: ACPI: Using IOAPIC for interrupt routing
    Sep 02 13:13:37 sge00 kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Sep 02 13:13:37 sge00 kernel: ACPI: No dock devices found.
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [mem 0x80000000-0xffdfffff] (ignored)
    Sep 02 13:13:37 sge00 kernel: PCI: root bus 00: using default resources
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
    Sep 02 13:13:37 sge00 kernel: PCI host bridge to bus 0000:00
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.1: [8086:7111] type 00 class 0x01018a
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.1: reg 20: [io 0xd000-0xd00f]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:02.0: [80ee:beef] type 00 class 0x030000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:02.0: reg 10: [mem 0xe0000000-0xe0ffffff pref]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:03.0: reg 10: [mem 0xf0000000-0xf001ffff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:03.0: reg 18: [io 0xd010-0xd017]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: reg 10: [io 0xd020-0xd03f]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: reg 14: [mem 0xf0400000-0xf07fffff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: reg 18: [mem 0xf0800000-0xf0803fff pref]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:06.0: reg 10: [mem 0xf0804000-0xf0804fff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:07.0: [8086:7113] type 00 class 0x068000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 10: [io 0xd040-0xd047]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 18: [io 0xd050-0xd057]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 20: [io 0xd060-0xd06f]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 24: [mem 0xf0806000-0xf0807fff]
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs *5 9 10 11)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
    Sep 02 13:13:37 sge00 kernel: ACPI: Enabled 1 GPEs in block 00 to 07
    Sep 02 13:13:37 sge00 kernel: acpi root: \_SB_.PCI0 notify handler is installed
    Sep 02 13:13:37 sge00 kernel: Found 1 acpi root devices
    Sep 02 13:13:37 sge00 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Sep 02 13:13:37 sge00 kernel: vgaarb: loaded
    Sep 02 13:13:37 sge00 kernel: vgaarb: bridge control possible 0000:00:02.0
    Sep 02 13:13:37 sge00 kernel: PCI: Using ACPI for IRQ routing
    Sep 02 13:13:37 sge00 kernel: PCI: pci_cache_line_size set to 64 bytes
    Sep 02 13:13:37 sge00 kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Sep 02 13:13:37 sge00 kernel: e820: reserve RAM buffer [mem 0x7fff0000-0x7fffffff]
    Sep 02 13:13:37 sge00 kernel: NetLabel: Initializing
    Sep 02 13:13:37 sge00 kernel: NetLabel: domain hash size = 128
    Sep 02 13:13:37 sge00 kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Sep 02 13:13:37 sge00 kernel: NetLabel: unlabeled traffic allowed by default
    Sep 02 13:13:37 sge00 kernel: Switching to clocksource refined-jiffies
    Sep 02 13:13:37 sge00 kernel: pnp: PnP ACPI init
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type PNP registered
    Sep 02 13:13:37 sge00 kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0303 (active)
    Sep 02 13:13:37 sge00 kernel: pnp 00:01: [dma 4]
    Sep 02 13:13:37 sge00 kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Sep 02 13:13:37 sge00 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f03 (active)
    Sep 02 13:13:37 sge00 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active)
    Sep 02 13:13:37 sge00 kernel: pnp: PnP ACPI: found 4 devices
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type PNP unregistered
    Sep 02 13:13:37 sge00 kernel: Switching to clocksource acpi_pm
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff]
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 2
    Sep 02 13:13:37 sge00 kernel: TCP established hash table entries: 16384 (order: 6, 262144 bytes)
    Sep 02 13:13:37 sge00 kernel: TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
    Sep 02 13:13:37 sge00 kernel: TCP: Hash tables configured (established 16384 bind 16384)
    Sep 02 13:13:37 sge00 kernel: TCP: reno registered
    Sep 02 13:13:37 sge00 kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes)
    Sep 02 13:13:37 sge00 kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 1
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:02.0: Boot video device
    Sep 02 13:13:37 sge00 kernel: PCI: CLS 0 bytes, default 64
    Sep 02 13:13:37 sge00 kernel: Unpacking initramfs...
    Sep 02 13:13:37 sge00 kernel: Freeing initrd memory: 2868k freed
    Sep 02 13:13:37 sge00 kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
    Sep 02 13:13:37 sge00 kernel: Scanning for low memory corruption every 60 seconds
    Sep 02 13:13:37 sge00 kernel: audit: initializing netlink socket (disabled)
    Sep 02 13:13:37 sge00 kernel: type=2000 audit(1378142015.246:1): initialized
    Sep 02 13:13:37 sge00 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Sep 02 13:13:37 sge00 kernel: VFS: Disk quotas dquot_6.5.2
    Sep 02 13:13:37 sge00 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Sep 02 13:13:37 sge00 kernel: msgmni has been set to 4007
    Sep 02 13:13:37 sge00 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Sep 02 13:13:37 sge00 kernel: io scheduler noop registered
    Sep 02 13:13:37 sge00 kernel: io scheduler deadline registered
    Sep 02 13:13:37 sge00 kernel: io scheduler cfq registered (default)
    Sep 02 13:13:37 sge00 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Sep 02 13:13:37 sge00 kernel: intel_idle: does not run on family 6 model 58
    Sep 02 13:13:37 sge00 kernel: GHES: HEST is not enabled!
    Sep 02 13:13:37 sge00 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Sep 02 13:13:37 sge00 kernel: Linux agpgart interface v0.103
    Sep 02 13:13:37 sge00 kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    Sep 02 13:13:37 sge00 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Sep 02 13:13:37 sge00 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Sep 02 13:13:37 sge00 kernel: mousedev: PS/2 mouse device common for all mice
    Sep 02 13:13:37 sge00 kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Sep 02 13:13:37 sge00 kernel: rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
    Sep 02 13:13:37 sge00 kernel: rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
    Sep 02 13:13:37 sge00 kernel: cpuidle: using governor ladder
    Sep 02 13:13:37 sge00 kernel: cpuidle: using governor menu
    Sep 02 13:13:37 sge00 kernel: drop_monitor: Initializing network drop monitor service
    Sep 02 13:13:37 sge00 kernel: TCP: cubic registered
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 10
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 17
    Sep 02 13:13:37 sge00 kernel: Key type dns_resolver registered
    Sep 02 13:13:37 sge00 kernel: PM: Hibernation image not present or could not be loaded.
    Sep 02 13:13:37 sge00 kernel: registered taskstats version 1
    Sep 02 13:13:37 sge00 kernel: Magic number: 13:139:238
    Sep 02 13:13:37 sge00 kernel: rtc_cmos rtc_cmos: setting system clock to 2013-09-02 17:13:36 UTC (1378142016)
    Sep 02 13:13:37 sge00 kernel: Freeing unused kernel memory: 1124k freed
    Sep 02 13:13:37 sge00 kernel: Write protecting the kernel read-only data: 8192k
    Sep 02 13:13:37 sge00 kernel: Freeing unused kernel memory: 1192k freed
    Sep 02 13:13:37 sge00 kernel: Freeing unused kernel memory: 400k freed
    Sep 02 13:13:37 sge00 systemd-udevd[45]: starting version 204
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type USB registered
    Sep 02 13:13:37 sge00 kernel: usbcore: registered new interface driver usbfs
    Sep 02 13:13:37 sge00 kernel: usbcore: registered new interface driver hub
    Sep 02 13:13:37 sge00 kernel: SCSI subsystem initialized
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type ATA registered
    Sep 02 13:13:37 sge00 kernel: usbcore: registered new device driver usb
    Sep 02 13:13:37 sge00 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Sep 02 13:13:37 sge00 kernel: ohci_hcd 0000:00:06.0: OHCI Host Controller
    Sep 02 13:13:37 sge00 kernel: ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 1
    Sep 02 13:13:37 sge00 kernel: ohci_hcd 0000:00:06.0: irq 22, io mem 0xf0804000
    Sep 02 13:13:37 sge00 kernel: libata version 3.00 loaded.
    Sep 02 13:13:37 sge00 kernel: hub 1-0:1.0: USB hub found
    Sep 02 13:13:37 sge00 kernel: hub 1-0:1.0: 8 ports detected
    Sep 02 13:13:37 sge00 kernel: ahci 0000:00:0d.0: version 3.0
    Sep 02 13:13:37 sge00 kernel: ahci: SSS flag set, parallel bus scan disabled
    Sep 02 13:13:37 sge00 kernel: ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    Sep 02 13:13:37 sge00 kernel: ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
    Sep 02 13:13:37 sge00 kernel: scsi0 : ahci
    Sep 02 13:13:37 sge00 kernel: ata1: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806100 irq 21
    Sep 02 13:13:37 sge00 kernel: ata_piix 0000:00:01.1: version 2.13
    Sep 02 13:13:37 sge00 kernel: scsi1 : ata_piix
    Sep 02 13:13:37 sge00 kernel: scsi2 : ata_piix
    Sep 02 13:13:37 sge00 kernel: ata2: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
    Sep 02 13:13:37 sge00 kernel: ata3: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
    Sep 02 13:13:37 sge00 kernel: ata3.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
    Sep 02 13:13:37 sge00 kernel: ata3.00: configured for UDMA/33
    Sep 02 13:13:37 sge00 kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Sep 02 13:13:37 sge00 kernel: ata1.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
    Sep 02 13:13:37 sge00 kernel: ata1.00: 167772160 sectors, multi 128: LBA48 NCQ (depth 31/32)
    Sep 02 13:13:37 sge00 kernel: ata1.00: configured for UDMA/133
    Sep 02 13:13:37 sge00 kernel: scsi 0:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
    Sep 02 13:13:37 sge00 kernel: scsi 2:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] 167772160 512-byte logical blocks: (85.8 GB/80.0 GiB)
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Write Protect is off
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Sep 02 13:13:37 sge00 kernel: sr0: scsi3-mmc drive: 32x/32x xa/form2 tray
    Sep 02 13:13:37 sge00 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Sep 02 13:13:37 sge00 kernel: sr 2:0:0:0: Attached scsi CD-ROM sr0
    Sep 02 13:13:37 sge00 kernel: sda: sda1
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Sep 02 13:13:37 sge00 kernel: usb 1-1: new full-speed USB device number 2 using ohci_hcd
    Sep 02 13:13:37 sge00 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Sep 02 13:13:37 sge00 systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Sep 02 13:13:37 sge00 systemd[1]: Detected virtualization 'oracle'.
    Sep 02 13:13:37 sge00 systemd[1]: Set hostname to <sge00>.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Remote File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Remote File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Expecting device sys-subsystem-net-devices-enp0s3.device...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Delayed Shutdown Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on Delayed Shutdown Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Device-mapper event daemon FIFOs.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Sep 02 13:13:37 sge00 systemd[1]: Starting LVM2 metadata daemon socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on LVM2 metadata daemon socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Encrypted Volumes.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Encrypted Volumes.
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Kernel Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on udev Kernel Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Control Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on udev Control Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Sep 02 13:13:37 sge00 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Paths.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Paths.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Journal Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on Journal Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Load Kernel Modules...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Setup Virtual Console...
    Sep 02 13:13:37 sge00 systemd[1]: Started Set Up Additional Binary Formats.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Apply Kernel Variables...
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Coldplug all Devices...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Create static device nodes in /dev...
    Sep 02 13:13:37 sge00 systemd[1]: Mounting POSIX Message Queue File System...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Journal Service...
    Sep 02 13:13:37 sge00 systemd[1]: Started Journal Service.
    Sep 02 13:13:37 sge00 systemd[1]: Mounting Debug File System...
    Sep 02 13:13:37 sge00 systemd[1]: Mounting Huge Pages File System...
    Sep 02 13:13:37 sge00 systemd[1]: Started File System Check on Root Device.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Remount Root and Kernel File Systems...
    Sep 02 13:13:37 sge00 systemd[1]: Started Setup Virtual Console.
    Sep 02 13:13:37 sge00 systemd[1]: Started Create static device nodes in /dev.
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Kernel Device Manager...
    Sep 02 13:13:37 sge00 kernel: EXT4-fs (sda1): re-mounted. Opts: data=ordered
    Sep 02 13:13:37 sge00 kernel: FS-Cache: Loaded
    Sep 02 13:13:37 sge00 kernel: RPC: Registered named UNIX socket transport module.
    Sep 02 13:13:37 sge00 kernel: RPC: Registered udp transport module.
    Sep 02 13:13:37 sge00 kernel: RPC: Registered tcp transport module.
    Sep 02 13:13:37 sge00 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
    Sep 02 13:13:37 sge00 systemd-journal[98]: Journal started
    Sep 02 13:13:37 sge00 systemd[1]: Started Apply Kernel Variables.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted POSIX Message Queue File System.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted Debug File System.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted Huge Pages File System.
    Sep 02 13:13:37 sge00 systemd[1]: Started Remount Root and Kernel File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Load Random Seed...
    Sep 02 13:13:37 sge00 systemd[1]: Activating swap /swapfile...
    Sep 02 13:13:37 sge00 systemd[1]: Started udev Coldplug all Devices.
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'nfs'
    Sep 02 13:13:37 sge00 kernel: FS-Cache: Netfs 'nfs' registered for caching
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'vboxguest'
    Sep 02 13:13:37 sge00 kernel: input: Unspecified device as /devices/pci0000:00/0000:00:04.0/input/input1
    Sep 02 13:13:37 sge00 kernel: vboxguest: major 0, IRQ 20, I/O port d020, MMIO at 00000000f0400000 (size 0x400000)
    Sep 02 13:13:37 sge00 kernel: vboxguest: Successfully loaded version 4.2.16_OSE (interface 0x00010004)
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'vboxsf'
    Sep 02 13:13:37 sge00 kernel: vboxsf: Successfully loaded version 4.2.16_OSE (interface 0x00010004)
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'vboxvideo'
    Sep 02 13:13:37 sge00 systemd[1]: Started Load Kernel Modules.
    Sep 02 13:13:37 sge00 systemd[1]: Mounting Configuration File System...
    Sep 02 13:13:37 sge00 kernel: [drm] Initialized drm 1.1.0 20060810
    Sep 02 13:13:37 sge00 kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Sep 02 13:13:37 sge00 kernel: [drm] No driver support for vblank timestamp query.
    Sep 02 13:13:37 sge00 kernel: [drm] Initialized vboxvideo 1.0.0 20090303 for 0000:00:02.0 on minor 0
    Sep 02 13:13:37 sge00 systemd[1]: Mounted FUSE Control File System.
    Sep 02 13:13:37 sge00 systemd[1]: Started udev Kernel Device Manager.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Local File Systems (Pre).
    Sep 02 13:13:37 sge00 systemd-udevd[106]: starting version 204
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Local File Systems (Pre).
    Sep 02 13:13:37 sge00 systemd[1]: Mounting RPC pipe filesystem...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Local File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Local File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Recreate Volatile Files and Directories...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage...
    Sep 02 13:13:37 sge00 systemd[1]: Mounted RPC pipe filesystem.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted Configuration File System.
    Sep 02 13:13:37 sge00 systemd[1]: Started Load Random Seed.
    Sep 02 13:13:37 sge00 systemd-journal[98]: Allowing system journal files to grow to 4.0G.
    Sep 02 13:13:37 sge00 systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Sep 02 13:13:37 sge00 systemd[1]: Started Recreate Volatile Files and Directories.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Update UTMP about System Reboot/Shutdown...
    Sep 02 13:13:37 sge00 systemd[1]: Started Update UTMP about System Reboot/Shutdown.
    Sep 02 13:13:37 sge00 systemd[1]: Activated swap /swapfile.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Swap.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Swap.
    Sep 02 13:13:37 sge00 systemd[1]: Starting System Initialization.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target System Initialization.
    Sep 02 13:13:37 sge00 systemd[1]: Starting D-Bus System Message Bus Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on D-Bus System Message Bus Socket.
    Sep 02 13:13:38 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:38 sge00 swapon[116]: swapon: /swapfile: insecure permissions 0777, 0600 suggested.
    Sep 02 13:13:38 sge00 kernel: ACPI: AC Adapter [AC] (on-line)
    Sep 02 13:13:37 sge00 sshd[155]: Server listening on 0.0.0.0 port 22.
    Sep 02 13:13:37 sge00 sshd[155]: Server listening on :: port 22.
    Sep 02 13:13:37 sge00 slapd[156]: @(#) $OpenLDAP: slapd 2.4.35 (May 20 2013 16:33:13) $
    Sep 02 13:13:37 sge00 slapd[168]: bdb_monitor_db_open: monitoring disabled; configure monitor database to enable
    Sep 02 13:13:37 sge00 slapd[168]: slapd starting
    Sep 02 13:13:38 sge00 kernel: parport_pc 00:03: reported by Plug and Play ACPI
    Sep 02 13:13:38 sge00 kernel: input: PC Speaker as /devices/platform/pcspkr/input/input2
    Sep 02 13:13:38 sge00 kernel: microcode: CPU0 sig=0x306a9, pf=0x1, revision=0x0
    Sep 02 13:13:38 sge00 kernel: microcode: CPU1 sig=0x306a9, pf=0x1, revision=0x0
    Sep 02 13:13:38 sge00 kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Sep 02 13:13:38 sge00 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Sep 02 13:13:38 sge00 kernel: ACPI: Battery Slot [BAT0] (battery present)
    Sep 02 13:13:38 sge00 kernel: ACPI: Power Button [PWRF]
    Sep 02 13:13:38 sge00 CLCGenomicsServer[163]: Starting CLCGenomicsServer
    Sep 02 13:13:38 sge00 kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input4
    Sep 02 13:13:38 sge00 slim[166]: /usr/bin/xauth: file /var/run/slim.auth does not exist
    Sep 02 13:13:38 sge00 slim[166]: X.Org X Server 1.14.2
    Sep 02 13:13:38 sge00 slim[166]: Release Date: 2013-06-25
    Sep 02 13:13:38 sge00 slim[166]: X Protocol Version 11, Revision 0
    Sep 02 13:13:38 sge00 slim[166]: Build Operating System: Linux 3.9.7-1-ARCH x86_64
    Sep 02 13:13:38 sge00 slim[166]: Current Operating System: Linux sge00 3.10.10-1-ARCH #1 SMP PREEMPT Fri Aug 30 11:30:06 CEST 2013 x86_64
    Sep 02 13:13:38 sge00 slim[166]: Kernel command line: root=/dev/sda1 rw initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Sep 02 13:13:38 sge00 slim[166]: Build Date: 01 July 2013 10:48:42AM
    Sep 02 13:13:38 sge00 slim[166]: Current version of pixman: 0.30.2
    Sep 02 13:13:38 sge00 slim[166]: Before reporting problems, check http://wiki.x.org
    Sep 02 13:13:38 sge00 slim[166]: to make sure that you have the latest version.
    Sep 02 13:13:38 sge00 slim[166]: Markers: (--) probed, (**) from config file, (==) default setting,
    Sep 02 13:13:38 sge00 slim[166]: (++) from command line, (!!) notice, (II) informational,
    Sep 02 13:13:38 sge00 slim[166]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    Sep 02 13:13:38 sge00 slim[166]: (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 2 13:13:37 2013
    Sep 02 13:13:38 sge00 slim[166]: (==) Using config directory: "/etc/X11/xorg.conf.d"
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension Generic Event Extension
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension SHAPE
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension MIT-SHM
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XInputExtension
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XTEST
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension BIG-REQUESTS
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension SYNC
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XKEYBOARD
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XC-MISC
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension SECURITY
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XINERAMA
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFIXES
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension RENDER
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension RANDR
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension COMPOSITE
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DAMAGE
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension MIT-SCREEN-SAVER
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DOUBLE-BUFFER
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension RECORD
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DPMS
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension X-Resource
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XVideo
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XVideo-MotionCompensation
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFree86-VidModeExtension
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFree86-DGA
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFree86-DRI
    Sep 02 13:13:38 sge00 kernel: ACPI: Sleep Button [SLPF]
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DRI2
    Sep 02 13:13:38 sge00 slim[166]: Loading extension GLX
    Sep 02 13:13:38 sge00 kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Sep 02 13:13:38 sge00 kernel: ppdev: user-space parallel port driver
    Sep 02 13:13:38 sge00 kernel: usbcore: registered new interface driver usbhid
    Sep 02 13:13:38 sge00 kernel: usbhid: USB HID core driver
    Sep 02 13:13:38 sge00 kernel: input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/input/input5
    Sep 02 13:13:38 sge00 kernel: hid-generic 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
    Sep 02 13:13:38 sge00 kernel: e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
    Sep 02 13:13:38 sge00 kernel: e1000: Copyright (c) 1999-2006 Intel Corporation.
    Sep 02 13:13:38 sge00 kernel: Adding 1048572k swap on /swapfile. Priority:-1 extents:5 across:1105916k FS
    Sep 02 13:13:38 sge00 kernel: input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input6
    Sep 02 13:13:38 sge00 systemd-logind[158]: Watching system buttons on /dev/input/event3 (Power Button)
    Sep 02 13:13:38 sge00 systemd-logind[158]: Watching system buttons on /dev/input/event4 (Sleep Button)
    Sep 02 13:13:38 sge00 kernel: e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 08:00:27:3d:4f:34
    Sep 02 13:13:38 sge00 kernel: e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
    Sep 02 13:13:38 sge00 systemd[1]: Found device PRO/1000 MT Desktop Adapter.
    Sep 02 13:13:38 sge00 systemd[1]: Starting dhcpcd on enp0s3...
    Sep 02 13:13:38 sge00 systemd-udevd[128]: renamed network interface eth0 to enp0s3
    Sep 02 13:13:38 sge00 sgeexecd[161]: starting sge_execd
    Sep 02 13:13:38 sge00 dhcpcd[239]: version 6.0.5 starting
    Sep 02 13:13:38 sge00 kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s3: link is not ready
    Sep 02 13:13:38 sge00 kernel: e1000: enp0s3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
    Sep 02 13:13:38 sge00 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp0s3: link becomes ready
    Sep 02 13:13:38 sge00 sgemaster[162]: starting sge_qmaster
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: soliciting an IPv6 router
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: rebinding lease of 192.168.1.10
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: carrier lost
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: carrier acquired
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: soliciting an IPv6 router
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: rebinding lease of 192.168.1.10
    Sep 02 13:13:39 sge00 slim[166]: pam_unix(slim:session): session opened for user sgeuser by (uid=0)
    Sep 02 13:13:39 sge00 systemd-logind[158]: New session 1 of user sgeuser.
    Sep 02 13:13:39 sge00 systemd-logind[158]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
    Sep 02 13:13:40 sge00 slim[166]: /usr/bin/xauth: file /home/sgeuser/.Xauthority does not exist
    Sep 02 13:13:40 sge00 slim[166]: /home/sgeuser/.xinitrc: line 18: FontPath: command not found
    Sep 02 13:13:40 sge00 slim[166]: openbox: error while loading shared libraries: librsvg-2.so.2: cannot open shared object file: No such file or directory
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: leased 192.168.1.10 for 86400 seconds
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: adding host route to 192.168.1.10 via 127.0.0.1
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: adding route to 192.168.1.0/24
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: adding default route via 192.168.1.1
    Sep 02 13:13:44 sge00 dhcpcd[239]: forked to background, child pid 648
    Sep 02 13:13:44 sge00 systemd[1]: Started dhcpcd on enp0s3.
    Sep 02 13:13:44 sge00 systemd[1]: Starting Network.
    Sep 02 13:13:44 sge00 systemd[1]: Reached target Network.
    Sep 02 13:13:44 sge00 systemd[1]: Starting RPC Bind...
    Sep 02 13:13:44 sge00 systemd[1]: Starting Apache Web Server...
    Sep 02 13:13:44 sge00 systemd[1]: Started RPC Bind.
    Sep 02 13:13:44 sge00 systemd[1]: Starting NFS server...
    Sep 02 13:13:44 sge00 apachectl[650]: httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.1.10 for ServerName
    Sep 02 13:13:44 sge00 systemd[1]: Starting RPC Port Mapper.
    Sep 02 13:13:44 sge00 systemd[1]: Reached target RPC Port Mapper.
    Sep 02 13:13:44 sge00 systemd[1]: Starting RPC GSS-API client-side daemon...
    Sep 02 13:13:44 sge00 systemd[1]: Started RPC GSS-API client-side daemon.
    Sep 02 13:13:44 sge00 kernel: Installing knfsd (copyright (C) 1996 [email protected]).
    Sep 02 13:13:44 sge00 kernel: NFSD: starting 90-second grace period (net ffffffff81893040)
    Sep 02 13:13:44 sge00 systemd[1]: Started NFS server.
    Sep 02 13:13:44 sge00 systemd[1]: Starting NFS Mount Daemon...
    Sep 02 13:13:44 sge00 systemd[1]: Starting NFSv4 ID-name mapping daemon...
    Sep 02 13:13:44 sge00 systemd[1]: Started NFSv4 ID-name mapping daemon.
    Sep 02 13:13:44 sge00 rpc.mountd[682]: Version 1.2.8 starting
    Sep 02 13:13:44 sge00 systemd[1]: Started NFS Mount Daemon.
    Sep 02 13:13:45 sge00 systemd[1]: PID file /run/httpd/httpd.pid not readable (yet?) after start.
    Sep 02 13:13:45 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:45 sge00 systemd[1]: Starting SGE Execution Daemon...
    Sep 02 13:13:45 sge00 lmx-serv-clcbio[690]: LM-X License Server v3.6.1 (Linux_x64)
    Sep 02 13:13:45 sge00 lmx-serv-clcbio[690]: Copyright (C) 2002-2010 X-Formation. All rights reserved.
    Sep 02 13:13:45 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:45 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:46 sge00 systemd[1]: Started Apache Web Server.
    Sep 02 13:13:46 sge00 systemd[1]: Starting Multi-User System.
    Sep 02 13:13:46 sge00 systemd[1]: Reached target Multi-User System.
    Sep 02 13:13:46 sge00 systemd[1]: Starting Graphical Interface.
    Sep 02 13:13:46 sge00 systemd[1]: Reached target Graphical Interface.
    Sep 02 13:13:46 sge00 systemd[1]: Startup finished in 1.441s (kernel) + 8.969s (userspace) = 10.410s.
    Sep 02 13:13:48 sge00 slapd[168]: conn=1000 fd=10 ACCEPT from IP=192.168.1.10:47238 (IP=0.0.0.0:389)
    Sep 02 13:13:48 sge00 slapd[168]: conn=1000 op=0 BIND dn="" method=128
    Sep 02 13:13:48 sge00 slapd[168]: conn=1000 op=0 RESULT tag=97 err=0 text=
    Sep 02 13:13:51 sge00 dhcpcd[648]: enp0s3: no IPv6 Routers available
    Sep 02 13:14:10 sge00 kernel: VBoxGuest: VBoxGuestCommonGuestCapsAcquire: pSession(0xffff88007b747810), OR(0x0), NOT(0xffffffff), flags(0x0)
    Sep 02 13:14:50 sge00 su[755]: (to sgeuser) sgeuser on none
    Sep 02 13:14:50 sge00 su[755]: pam_unix(su-l:session): session opened for user root by sgeuser(uid=1000)
    Sep 02 13:19:33 sge00 kernel: hrtimer: interrupt took 1387321 ns
    Sep 02 13:28:35 sge00 systemd[1]: Starting Cleanup of Temporary Directories...
    Sep 02 13:28:35 sge00 systemd[1]: Started Cleanup of Temporary Directories.
    Sep 02 14:39:38 sge00 su[755]: pam_unix(su-l:session): session closed for user root
    Sep 02 14:44:39 sge00 su[807]: (to sgeuser) sgeuser on none
    Sep 02 14:44:39 sge00 su[807]: pam_unix(su-l:session): session opened for user root by sgeuser(uid=1000)
    Sep 02 14:46:34 sge00 rpc.mountd[682]: authenticated mount request from 192.168.1.162:1022 for /opt/gridengine/sge (/opt/gridengine/sge)
    Last edited by teetee1 (2013-09-02 19:34:30)

    Thanks. The problem is solved.
    Both openbox and lxsession were installed. The only thing missing was the missing libsvg library. Here is the relevant entries in /var/log/pacman.log (when I installed the libsvg package just now)
    # egrep -ri svg /var/log/pacman.log
    [2013-09-02 14:52] [PACMAN] Running 'pacman --color auto -S extra/librsvg'
    [2013-09-02 14:52] [PACMAN] installed librsvg (1:2.37.0-1)
    so somehow it wasn't needed on a working lxde since 08/28 when the system was installed, and right after 3.10.10 kernel upgrade(Sat., 8/31), it is required to have the windows manager working properly. 3.10.10 linux kernel change log from https://www.kernel.org/pub/linux/kernel … og-3.10.10 did not return anything relevant.
    Anyway thanks for the input and I'm glad that the problem was solved quickly.
    Last edited by teetee1 (2013-09-02 19:36:39)

  • [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 do I/Do I need to fix "ata#.00 status { DRDY }" error?

    I've got an old server that used to be running windows that I have received to set up with linux for myself.  As I was working with it, I remembered that I had an old computer that I was just going to trash/give away anyways, of which many components would be better.  I have since set up a computer that's a mash of components between the two and everything seems to run perfectly except for one problem: I keep getting this error: (Where "#" is either 2, 3, or 4)
    ata#.00: exception Emask 0x50 SAct 0x0 SErr 0x48900 action 0x6 frozen
    ata#: SError: {UnrecovData HostInt 10B8B Handshk }
    ata#.00: failed command WRITE DMA
    ata#.00: cmd ca/00:88:9f:ca:8d/00:00:00:00:00/e8 tag 0 dma 69632 out
    res 50/00:88:9f:ca:8d/00:00:9e:c9:8d/e8 Emask 0x50 (AtA bus error)
    ata#.00: status: { DRDY }
    This error occurred once for each of the three numbers (which also happens to correspond to the three sata ports my HDs are plugged into): 2 and 3 while I was using dd to zero them (I zeroed all three but 4 didn't give any errors), and 4 just after installing grub onto a mirror raid composing of HDs 2 and 3. 
    All of the HDs originally used IDE so I used a converted to switch them (Model number CB-IS100)
    Additionally, when deconstructing the computers, one of the sata cables tore the first female connector out of the motherboard (hence why they start at 2), but while I know that's not preferable, I don't think it would cause this error.
    Finally, this motherboard was in a computer that had, as far as I could tell, a poor power supply that cause it to reboot when using a lot of CPU power.
    My question is really this: Will this cause any major problems or can I ignore it?  Also, is there anything I can do to fix it?
    This is my dmesg:
    [ 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-i686-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Oct 19 00:29:46 CEST 2013
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000987ff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000098800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfedf7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cfedf800-0x00000000cfedffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfee2fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cfee3000-0x00000000cfeeffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000cfef0000-0x00000000cfefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: HP Pavilion 061 ER879AA-ABA M7457C/EMERY, BIOS 3.15 06/23/2006
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0xcfedf max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FF0000000 write-back
    [ 0.000000] 3 base 0CFF00000 mask FFFF00000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f5f80-0x000f5f8f] mapped at [c00f5f80]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x00bfffff]
    [ 0.000000] Base memory trampoline at [c0094000] 94000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
    [ 0.000000] [mem 0x37000000-0x373fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
    [ 0.000000] [mem 0x30000000-0x36ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x37400000-0x377fdfff]
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] BRK [0x00877000, 0x00877fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x7ef2f000-0x7fffffff]
    [ 0.000000] Allocated new RAMDISK: [mem 0x3672d000-0x377fddaf]
    [ 0.000000] Move RAMDISK from [mem 0x7ef2f000-0x7ffffdaf] to [mem 0x3672d000-0x377fddaf]
    [ 0.000000] ACPI: RSDP 000f82e0 00014 (v00 HP-CPC)
    [ 0.000000] ACPI: RSDT cfee3040 00030 (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP cfee30c0 00074 (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT cfee3180 0505D (v01 HP-CPC AWRDACPI 00001000 MSFT 0100000E)
    [ 0.000000] ACPI: FACS cfee0000 00040
    [ 0.000000] ACPI: MCFG cfee8340 0003C (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: APIC cfee8240 00084 (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 2438MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x00878000, 0x00878fff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0xcfedefff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00097fff]
    [ 0.000000] node 0: [mem 0x00100000-0xcfedefff]
    [ 0.000000] On node 0 totalpages: 851574
    [ 0.000000] free_area_init_node: node 0, pgdat c06d7740, node_mem_map f4d2d020
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3991 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 4878 pages used for memmap
    [ 0.000000] HighMem zone: 624353 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x00098000-0x00098fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00099000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
    [ 0.000000] e820: [mem 0xcff00000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 14 pages/cpu @f4ce3000 s33536 r0 d23808 u57344
    [ 0.000000] pcpu-alloc: s33536 r0 d23808 u57344 alloc=14*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 849798
    [ 0.000000] Kernel command line: BOOT_IMAGE=boot/i686/vmlinuz archisobasedir=arch archisolabel=ARCH_201311 initrd=boot/i686/archiso.img
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 6813424 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:000cfedf)
    [ 0.000000] Memory: 3346976K/3406296K available (4262K kernel code, 426K rwdata, 1356K rodata, 608K init, 948K bss, 59320K reserved, 2497412K highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc06e9000 - 0xc0781000 ( 608 kB)
    .data : 0xc0529d5e - 0xc06e8a00 (1787 kB)
    .text : 0xc0100000 - 0xc0529d5e (4263 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:2304 nr_irqs:712 16
    [ 0.000000] CPU 0 irqstacks, hard=f4008000 soft=f400a000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 3000.893 MHz processor
    [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6004.86 BogoMIPS (lpj=10002976)
    [ 0.003342] pid_max: default: 32768 minimum: 301
    [ 0.003402] Security Framework initialized
    [ 0.003416] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003418] Yama: becoming mindful.
    [ 0.003442] Mount-cache hash table entries: 512
    [ 0.003753] Initializing cgroup subsys memory
    [ 0.003767] Initializing cgroup subsys devices
    [ 0.003771] Initializing cgroup subsys freezer
    [ 0.003774] Initializing cgroup subsys net_cls
    [ 0.006675] Initializing cgroup subsys blkio
    [ 0.006723] CPU: Physical Processor ID: 0
    [ 0.006727] CPU: Processor Core ID: 0
    [ 0.006731] mce: CPU supports 4 MCE banks
    [ 0.006745] CPU0: Thermal monitoring enabled (TM1)
    [ 0.006763] Last level iTLB entries: 4KB 128, 2MB 128, 4MB 128
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 64
    tlb_flushall_shift: 6
    [ 0.006919] Freeing SMP alternatives memory: 20K (c0781000 - c0786000)
    [ 0.008197] ACPI: Core revision 20130517
    [ 0.012076] ACPI: All ACPI Tables successfully acquired
    [ 0.013370] ftrace: allocating 19099 entries in 38 pages
    [ 0.023450] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.023843] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.057502] smpboot: CPU0: Intel(R) Pentium(R) D CPU 3.00GHz (fam: 0f, model: 06, stepping: 02)
    [ 0.059999] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
    [ 0.059999] ... version: 0
    [ 0.059999] ... bit width: 40
    [ 0.059999] ... generic registers: 18
    [ 0.059999] ... value mask: 000000ffffffffff
    [ 0.059999] ... max period: 0000007fffffffff
    [ 0.059999] ... fixed-purpose events: 0
    [ 0.059999] ... event mask: 000000000003ffff
    [ 0.076727] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083427] CPU 1 irqstacks, hard=f40ce000 soft=f40d8000
    [ 0.006666] Initializing CPU#1
    [ 0.083431] smpboot: Booting Node 0, Processors #1
    [ 0.096604] Brought up 2 CPUs
    [ 0.096610] smpboot: Total of 2 processors activated (12008.72 BogoMIPS)
    [ 0.096819] devtmpfs: initialized
    [ 0.096976] PM: Registering ACPI NVS region [mem 0xcfee0000-0xcfee2fff] (12288 bytes)
    [ 0.100507] RTC time: 20:09:02, date: 05/19/14
    [ 0.100577] NET: Registered protocol family 16
    [ 0.100840] ACPI: bus type PCI registered
    [ 0.100846] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.100944] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xf0000000-0xffffffff] (base 0xf0000000)
    [ 0.100950] PCI: MMCONFIG at [mem 0xf0000000-0xffffffff] reserved in E820
    [ 0.100954] PCI: MMCONFIG for 0000 [bus00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000) (size reduced!)
    [ 0.100956] PCI: Using MMCONFIG for extended config space
    [ 0.100959] PCI: Using configuration type 1 for base access
    [ 0.102090] bio: create slab <bio-0> at 0
    [ 0.102090] ACPI: Added _OSI(Module Device)
    [ 0.102090] ACPI: Added _OSI(Processor Device)
    [ 0.102090] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.102090] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.103853] ACPI: EC: Look up EC in DSDT
    [ 0.110158] ACPI: Interpreter enabled
    [ 0.110189] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.110213] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.110217] ACPI: Using IOAPIC for interrupt routing
    [ 0.110269] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.110379] ACPI: No dock devices found.
    [ 0.118318] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.118328] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.118332] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.118461] acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.118466] acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.118470] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.118474] acpi PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    [ 0.118478] acpi PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff] (ignored)
    [ 0.118481] PCI: root bus 00: using default resources
    [ 0.118486] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.118696] PCI host bridge to bus 0000:00
    [ 0.118703] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.118707] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.118710] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    [ 0.118725] pci 0000:00:00.0: [8086:2770] type 00 class 0x060000
    [ 0.118895] pci 0000:00:01.0: [8086:2771] type 01 class 0x060400
    [ 0.118957] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.119125] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
    [ 0.119148] pci 0000:00:1b.0: reg 0x10: [mem 0xfdff8000-0xfdffbfff 64bit]
    [ 0.119231] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.119317] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.119384] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
    [ 0.119433] pci 0000:00:1d.0: reg 0x20: [io 0xff00-0xff1f]
    [ 0.119532] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.119597] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
    [ 0.119646] pci 0000:00:1d.1: reg 0x20: [io 0xfe00-0xfe1f]
    [ 0.119745] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.119808] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
    [ 0.119857] pci 0000:00:1d.2: reg 0x20: [io 0xfd00-0xfd1f]
    [ 0.119955] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.120030] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
    [ 0.120079] pci 0000:00:1d.3: reg 0x20: [io 0xfc00-0xfc1f]
    [ 0.120178] pci 0000:00:1d.3: System wakeup disabled by ACPI
    [ 0.120251] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
    [ 0.120273] pci 0000:00:1d.7: reg 0x10: [mem 0xfdfff000-0xfdfff3ff]
    [ 0.120360] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.120440] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.120507] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    [ 0.120640] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.120712] pci 0000:00:1f.0: [8086:27b0] type 00 class 0x060100
    [ 0.120948] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
    [ 0.120966] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
    [ 0.120978] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
    [ 0.120990] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
    [ 0.121002] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
    [ 0.121014] pci 0000:00:1f.1: reg 0x20: [io 0xfb00-0xfb0f]
    [ 0.121164] pci 0000:00:1f.2: [8086:27c3] type 00 class 0x010400
    [ 0.121185] pci 0000:00:1f.2: reg 0x10: [io 0xfa00-0xfa07]
    [ 0.121196] pci 0000:00:1f.2: reg 0x14: [io 0xf900-0xf903]
    [ 0.121206] pci 0000:00:1f.2: reg 0x18: [io 0xf800-0xf807]
    [ 0.121217] pci 0000:00:1f.2: reg 0x1c: [io 0xf700-0xf703]
    [ 0.121228] pci 0000:00:1f.2: reg 0x20: [io 0xf600-0xf60f]
    [ 0.121238] pci 0000:00:1f.2: reg 0x24: [mem 0xfdffe000-0xfdffe3ff]
    [ 0.121284] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.121418] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
    [ 0.121478] pci 0000:00:1f.3: reg 0x20: [io 0x0500-0x051f]
    [ 0.121706] pci 0000:01:00.0: [10de:0a65] type 00 class 0x030000
    [ 0.121722] pci 0000:01:00.0: reg 0x10: [mem 0xfb000000-0xfbffffff]
    [ 0.121737] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.121752] pci 0000:01:00.0: reg 0x1c: [mem 0xee000000-0xefffffff 64bit pref]
    [ 0.121762] pci 0000:01:00.0: reg 0x24: [io 0xdf00-0xdf7f]
    [ 0.121773] pci 0000:01:00.0: reg 0x30: [mem 0xfcf00000-0xfcf7ffff pref]
    [ 0.121887] pci 0000:01:00.1: [10de:0be3] type 00 class 0x040300
    [ 0.121903] pci 0000:01:00.1: reg 0x10: [mem 0xfcffc000-0xfcffffff]
    [ 0.126691] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.126697] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.126703] pci 0000:00:01.0: bridge window [mem 0xfb000000-0xfcffffff]
    [ 0.126709] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xefffffff 64bit pref]
    [ 0.126783] pci 0000:02:01.0: [1106:3044] type 00 class 0x0c0010
    [ 0.126806] pci 0000:02:01.0: reg 0x10: [mem 0xfdeff000-0xfdeff7ff]
    [ 0.126819] pci 0000:02:01.0: reg 0x14: [io 0xef00-0xef7f]
    [ 0.126902] pci 0000:02:01.0: supports D2
    [ 0.126905] pci 0000:02:01.0: PME# supported from D2 D3hot D3cold
    [ 0.126989] pci 0000:02:05.0: [10ec:8169] type 00 class 0x020000
    [ 0.127012] pci 0000:02:05.0: reg 0x10: [io 0xec00-0xecff]
    [ 0.127025] pci 0000:02:05.0: reg 0x14: [mem 0xfdefe000-0xfdefe0ff]
    [ 0.127075] pci 0000:02:05.0: reg 0x30: [mem 0xfdec0000-0xfdedffff pref]
    [ 0.127109] pci 0000:02:05.0: supports D1 D2
    [ 0.127113] pci 0000:02:05.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.127196] pci 0000:02:08.0: [8086:27dc] type 00 class 0x020000
    [ 0.127218] pci 0000:02:08.0: reg 0x10: [mem 0xfdefd000-0xfdefdfff]
    [ 0.127230] pci 0000:02:08.0: reg 0x14: [io 0xee00-0xee3f]
    [ 0.127308] pci 0000:02:08.0: supports D1 D2
    [ 0.127311] pci 0000:02:08.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.127410] pci 0000:00:1e.0: PCI bridge to [bus 02] (subtractive decode)
    [ 0.127417] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    [ 0.127423] pci 0000:00:1e.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.127431] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.127435] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
    [ 0.127448] pci_bus 0000:00: on NUMA node 0
    [ 0.128183] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 7 9 10 11 12 14 15)
    [ 0.128303] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 *12 14 15)
    [ 0.128422] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.128542] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12 14 15)
    [ 0.128661] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 *10 11 12 14 15)
    [ 0.128780] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.128900] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.129019] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.129353] ACPI: Enabled 2 GPEs in block 00 to 1F
    [ 0.129366] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.129414] Found 1 acpi root devices
    [ 0.129499] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.129499] vgaarb: loaded
    [ 0.129499] vgaarb: bridge control possible 0000:01:00.0
    [ 0.129499] PCI: Using ACPI for IRQ routing
    [ 0.131455] PCI: pci_cache_line_size set to 64 bytes
    [ 0.131514] e820: reserve RAM buffer [mem 0x00098800-0x0009ffff]
    [ 0.131517] e820: reserve RAM buffer [mem 0xcfedf800-0xcfffffff]
    [ 0.131681] NetLabel: Initializing
    [ 0.131684] NetLabel: domain hash size = 128
    [ 0.131686] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.131709] NetLabel: unlabeled traffic allowed by default
    [ 0.131784] Switched to clocksource refined-jiffies
    [ 0.141221] pnp: PnP ACPI init
    [ 0.141249] ACPI: bus type PNP registered
    [ 0.141516] system 00:00: [io 0x04d0-0x04d1] has been reserved
    [ 0.141521] system 00:00: [io 0x0800-0x087f] has been reserved
    [ 0.141526] system 00:00: [io 0x0880-0x088f] has been reserved
    [ 0.141533] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.141554] pnp 00:01: [dma 4]
    [ 0.141597] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.141664] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.141714] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.141773] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.142316] pnp 00:05: [dma 3]
    [ 0.142386] pnp 00:05: Plug and Play ACPI device, IDs PNP0401 (active)
    [ 0.142549] system 00:06: [io 0x0400-0x04bf] has been reserved
    [ 0.142556] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.142624] pnp 00:07: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.143002] system 00:08: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.143009] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.143327] system 00:09: [mem 0x000d4800-0x000d7fff] has been reserved
    [ 0.143339] system 00:09: [mem 0x000f0000-0x000f7fff] could not be reserved
    [ 0.143344] system 00:09: [mem 0x000f8000-0x000fbfff] could not be reserved
    [ 0.143349] system 00:09: [mem 0x000fc000-0x000fffff] could not be reserved
    [ 0.143353] system 00:09: [mem 0xcfee0000-0xcfefffff] could not be reserved
    [ 0.143357] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.143361] system 00:09: [mem 0x00100000-0xcfedffff] could not be reserved
    [ 0.143365] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.143370] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.143374] system 00:09: [mem 0xffb00000-0xffb7ffff] has been reserved
    [ 0.143378] system 00:09: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.143382] system 00:09: [mem 0x000e0000-0x000effff] has been reserved
    [ 0.143387] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.143401] pnp: PnP ACPI: found 10 devices
    [ 0.143404] ACPI: bus type PNP unregistered
    [ 0.181586] Switched to clocksource acpi_pm
    [ 0.181620] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.181626] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.181632] pci 0000:00:01.0: bridge window [mem 0xfb000000-0xfcffffff]
    [ 0.181637] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xefffffff 64bit pref]
    [ 0.181644] pci 0000:00:1e.0: PCI bridge to [bus 02]
    [ 0.181649] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    [ 0.181655] pci 0000:00:1e.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.181797] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.181804] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.181808] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.181812] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.181815] pci_bus 0000:01: resource 1 [mem 0xfb000000-0xfcffffff]
    [ 0.181819] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xefffffff 64bit pref]
    [ 0.181823] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.181826] pci_bus 0000:02: resource 1 [mem 0xfde00000-0xfdefffff]
    [ 0.181830] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
    [ 0.181833] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.181886] NET: Registered protocol family 2
    [ 0.182168] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.182210] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.182250] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.182288] TCP: reno registered
    [ 0.182293] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.182304] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.182388] NET: Registered protocol family 1
    [ 0.182388] pci 0000:01:00.0: Boot video device
    [ 0.182388] pci 0000:02:08.0: Firmware left e100 interrupts enabled; disabling
    [ 0.182388] PCI: CLS 32 bytes, default 64
    [ 0.182388] Unpacking initramfs...
    [ 3.767636] Freeing initrd memory: 17220K (f672d000 - f77fe000)
    [ 3.767832] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
    [ 3.767836] apm: disabled - APM is not SMP safe.
    [ 3.767883] Scanning for low memory corruption every 60 seconds
    [ 3.768350] audit: initializing netlink socket (disabled)
    [ 3.768369] type=2000 audit(1400530145.763:1): initialized
    [ 3.783776] bounce pool size: 64 pages
    [ 3.783794] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 3.786252] zbud: loaded
    [ 3.786379] VFS: Disk quotas dquot_6.5.2
    [ 3.786456] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 3.786770] msgmni has been set to 1692
    [ 3.787189] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 3.787246] io scheduler noop registered
    [ 3.787250] io scheduler deadline registered
    [ 3.787303] io scheduler cfq registered (default)
    [ 3.787440] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 3.787553] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 3.787585] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 3.787808] GHES: HEST is not enabled!
    [ 3.787828] isapnp: Scanning for PnP cards...
    [ 4.143916] isapnp: No Plug & Play device found
    [ 4.144002] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 4.144834] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 4.393708] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 4.393902] mousedev: PS/2 mouse device common for all mice
    [ 4.394026] rtc_cmos 00:02: RTC can wake from S4
    [ 4.394188] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 4.394220] rtc_cmos 00:02: alarms up to one month, 242 bytes nvram
    [ 4.394271] cpuidle: using governor ladder
    [ 4.394275] cpuidle: using governor menu
    [ 4.394354] drop_monitor: Initializing network drop monitor service
    [ 4.394463] TCP: cubic registered
    [ 4.394689] NET: Registered protocol family 10
    [ 4.394926] NET: Registered protocol family 17
    [ 4.394941] Key type dns_resolver registered
    [ 4.395148] Using IPI No-Shortcut mode
    [ 4.395277] PM: Hibernation image not present or could not be loaded.
    [ 4.395295] registered taskstats version 1
    [ 4.395849] Magic number: 14:160:195
    [ 4.395919] rtc_cmos 00:02: setting system clock to 2014-05-19 20:09:06 UTC (1400530146)
    [ 4.396373] Freeing unused kernel memory: 608K (c06e9000 - c0781000)
    [ 4.396483] Write protecting the kernel text: 4264k
    [ 4.396526] Write protecting the kernel read-only data: 1360k
    [ 4.409586] systemd-udevd[47]: starting version 208
    [ 4.441220] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
    [ 4.441231] ACPI: Power Button [PWRB]
    [ 4.441342] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 4.441349] ACPI: Power Button [PWRF]
    [ 4.453112] Linux agpgart interface v0.103
    [ 4.456375] [drm] Initialized drm 1.1.0 20060810
    [ 4.458668] wmi: Mapper loaded
    [ 4.464289] ACPI: bus type USB registered
    [ 4.464341] usbcore: registered new interface driver usbfs
    [ 4.464366] usbcore: registered new interface driver hub
    [ 4.465442] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.465645] r8169 0000:02:05.0 (unregistered net_device): not PCI Express
    [ 4.466029] r8169 0000:02:05.0 eth0: RTL8110s at 0xf850e000, 00:1e:2a:c2:08:13, XID 04000000 IRQ 17
    [ 4.466034] r8169 0000:02:05.0 eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
    [ 4.466473] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    [ 4.466476] e100: Copyright(c) 1999-2006 Intel Corporation
    [ 4.468849] SCSI subsystem initialized
    [ 4.470129] usbcore: registered new device driver usb
    [ 4.472537] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.472967] uhci_hcd: USB Universal Host Controller Interface driver
    [ 4.473145] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 4.473151] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 4.473162] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
    [ 4.473215] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000ff00
    [ 4.474467] hub 1-0:1.0: USB hub found
    [ 4.474476] hub 1-0:1.0: 2 ports detected
    [ 4.476265] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 4.476273] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 4.476283] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
    [ 4.476285] ehci-pci: EHCI PCI platform driver
    [ 4.476334] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fe00
    [ 4.477340] ACPI: bus type ATA registered
    [ 4.478267] hub 2-0:1.0: USB hub found
    [ 4.478276] hub 2-0:1.0: 2 ports detected
    [ 4.478975] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 4.479324] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 4.479335] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
    [ 4.483257] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
    [ 4.483270] ehci-pci 0000:00:1d.7: irq 23, io mem 0xfdfff000
    [ 4.483319] libata version 3.00 loaded.
    [ 4.490116] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 4.490318] hub 3-0:1.0: USB hub found
    [ 4.490328] hub 3-0:1.0: 8 ports detected
    [ 4.497666] e100 0000:02:08.0 eth1: addr 0xfdefd000, irq 20, MAC addr 00:17:31:0e:7b:1b
    [ 4.498311] nouveau [ DEVICE][0000:01:00.0] BOOT0 : 0x0a8280a2
    [ 4.498316] nouveau [ DEVICE][0000:01:00.0] Chipset: GT218 (NVA8)
    [ 4.498320] nouveau [ DEVICE][0000:01:00.0] Family : NV50
    [ 4.499944] nouveau [ VBIOS][0000:01:00.0] checking PRAMIN for image...
    [ 4.513467] hub 1-0:1.0: USB hub found
    [ 4.513476] hub 1-0:1.0: 2 ports detected
    [ 4.536751] hub 2-0:1.0: USB hub found
    [ 4.536759] hub 2-0:1.0: 2 ports detected
    [ 4.537041] ata_piix 0000:00:1f.1: version 2.13
    [ 4.537215] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 4.538319] scsi0 : ata_piix
    [ 4.539121] scsi1 : ata_piix
    [ 4.539242] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfb00 irq 14
    [ 4.539246] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfb08 irq 15
    [ 4.539349] ahci 0000:00:1f.2: version 3.0
    [ 4.539518] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 4.539607] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl RAID mode
    [ 4.539612] ahci 0000:00:1f.2: flags: 64bit ncq led clo
    [ 4.539618] ahci 0000:00:1f.2: setting latency timer to 64
    [ 4.540696] scsi2 : ahci
    [ 4.540853] scsi3 : ahci
    [ 4.540977] scsi4 : ahci
    [ 4.541096] scsi5 : ahci
    [ 4.541226] ata3: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe100 irq 41
    [ 4.541231] ata4: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe180 irq 41
    [ 4.541235] ata5: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe200 irq 41
    [ 4.541239] ata6: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe280 irq 41
    [ 4.541389] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 4.541395] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 4.541406] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 4.541450] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fd00
    [ 4.541676] hub 4-0:1.0: USB hub found
    [ 4.541683] hub 4-0:1.0: 2 ports detected
    [ 4.541931] uhci_hcd 0000:00:1d.3: setting latency timer to 64
    [ 4.541937] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 4.541946] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 4.541985] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000fc00
    [ 4.542120] ata2: port disabled--ignoring
    [ 4.542317] hub 5-0:1.0: USB hub found
    [ 4.542325] hub 5-0:1.0: 2 ports detected
    [ 4.563395] firewire_ohci 0000:02:01.0: added OHCI v1.0 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 4.574546] nouveau [ VBIOS][0000:01:00.0] ... appears to be valid
    [ 4.574552] nouveau [ VBIOS][0000:01:00.0] using image from PRAMIN
    [ 4.574662] nouveau [ VBIOS][0000:01:00.0] BIT signature found
    [ 4.574667] nouveau [ VBIOS][0000:01:00.0] version 70.18.36.00.00
    [ 4.575237] nouveau [ PFB][0000:01:00.0] RAM type: DDR2
    [ 4.575243] nouveau [ PFB][0000:01:00.0] RAM size: 512 MiB
    [ 4.575247] nouveau [ PFB][0000:01:00.0] ZCOMP: 960 tags
    [ 4.713759] ata1.00: ATAPI: TSSTcorpCD/DVDW TS-H652L, 0803, max UDMA/33
    [ 4.743671] ata1.00: configured for UDMA/33
    [ 4.744629] scsi 0:0:0:0: CD-ROM TSSTcorp CD/DVDW TS-H652L 0803 PQ: 0 ANSI: 5
    [ 4.770051] tsc: Refined TSC clocksource calibration: 3000.853 MHz
    [ 4.860047] ata3: SATA link down (SStatus 0 SControl 300)
    [ 5.020046] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.020077] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.021034] ata5.00: ATA-6: WDC WD800BB-00JHC0, 05.01C05, max UDMA/100
    [ 5.021039] ata5.00: 156301488 sectors, multi 0: LBA
    [ 5.021915] ata5.00: configured for UDMA/100
    [ 5.023691] ata4.00: ATA-6: WDC WD800BB-00JHC0, 05.01C05, max UDMA/100
    [ 5.023695] ata4.00: 156301488 sectors, multi 0: LBA
    [ 5.024602] ata4.00: configured for UDMA/100
    [ 5.024731] scsi 3:0:0:0: Direct-Access ATA WDC WD800BB-00JH 05.0 PQ: 0 ANSI: 5
    [ 5.025019] scsi 4:0:0:0: Direct-Access ATA WDC WD800BB-00JH 05.0 PQ: 0 ANSI: 5
    [ 5.063459] firewire_core 0000:02:01.0: created device fw0: GUID 0011d800009e9dd1, S400
    [ 5.090025] usb 1-1: new low-speed USB device number 2 using uhci_hcd
    [ 5.180043] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.184039] ata6.00: ATA-6: ST380011A, 3.04, max UDMA/100
    [ 5.184044] ata6.00: 156301488 sectors, multi 0: LBA48
    [ 5.188337] ata6.00: configured for UDMA/100
    [ 5.188461] scsi 5:0:0:0: Direct-Access ATA ST380011A 3.04 PQ: 0 ANSI: 5
    [ 5.199621] sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 5.199627] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 5.199923] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 5.200185] sd 3:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 5.200346] sd 3:0:0:0: [sda] Write Protect is off
    [ 5.200351] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 5.200393] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.200900] sd 4:0:0:0: [sdb] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 5.200997] sd 4:0:0:0: [sdb] Write Protect is off
    [ 5.201002] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 5.201043] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.201527] sd 5:0:0:0: [sdc] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 5.201623] sd 5:0:0:0: [sdc] Write Protect is off
    [ 5.201627] sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 5.201669] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.207456] sdc: sdc1
    [ 5.207886] sd 5:0:0:0: [sdc] Attached SCSI disk
    [ 5.235174] sda: sda1 sda2 < sda5 >
    [ 5.235744] sd 3:0:0:0: [sda] Attached SCSI disk
    [ 5.237596] sdb: sdb1 sdb2 < sdb5 >
    [ 5.238117] sd 4:0:0:0: [sdb] Attached SCSI disk
    [ 5.260907] hidraw: raw HID events driver (C) Jiri Kosina
    [ 5.277654] usbcore: registered new interface driver usbhid
    [ 5.277659] usbhid: USB HID core driver
    [ 5.280199] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.0/input/input2
    [ 5.280357] hid-generic 0003:413C:2003.0001: input,hidraw0: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1d.0-1/input0
    [ 5.770105] Switched to clocksource tsc
    [ 6.481687] nouveau [ PTHERM][0000:01:00.0] FAN control: none / external
    [ 6.481702] nouveau [ PTHERM][0000:01:00.0] fan management: disabled
    [ 6.481708] nouveau [ PTHERM][0000:01:00.0] internal sensor: yes
    [ 6.481900] [TTM] Zone kernel: Available graphics memory: 433706 kiB
    [ 6.481904] [TTM] Zone highmem: Available graphics memory: 1682412 kiB
    [ 6.481907] [TTM] Initializing pool allocator
    [ 6.481924] nouveau [ DRM] VRAM: 512 MiB
    [ 6.481927] nouveau [ DRM] GART: 1048576 MiB
    [ 6.481933] nouveau [ DRM] TMDS table version 2.0
    [ 6.481936] nouveau [ DRM] DCB version 4.0
    [ 6.481940] nouveau [ DRM] DCB outp 00: 01000302 00020030
    [ 6.481944] nouveau [ DRM] DCB outp 01: 02000300 00000000
    [ 6.481948] nouveau [ DRM] DCB outp 03: 02011362 00020010
    [ 6.481951] nouveau [ DRM] DCB outp 04: 01022310 00000000
    [ 6.481954] nouveau [ DRM] DCB conn 00: 00001030
    [ 6.481959] nouveau [ DRM] DCB conn 01: 00202161
    [ 6.481964] nouveau [ DRM] DCB conn 02: 00000200
    [ 6.505501] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 6.505505] [drm] No driver support for vblank timestamp query.
    [ 6.505631] nouveau [ DRM] 2 available performance level(s)
    [ 6.505637] nouveau [ DRM] 1: core 405MHz shader 810MHz memory 405MHz voltage 900mV
    [ 6.505642] nouveau [ DRM] 3: core 589MHz shader 1402MHz memory 405MHz voltage 1000mV
    [ 6.505646] nouveau [ DRM] c: core 405MHz shader 810MHz memory 405MHz voltage 900mV
    [ 6.531333] nouveau [ DRM] MM: using COPY for buffer copies
    [ 6.581567] nouveau [ DRM] allocated 1280x1024 fb: 0x70000, bo f7015a00
    [ 6.581724] fbcon: nouveaufb (fb0) is primary device
    [ 6.653923] Console: switching to colour frame buffer device 160x64
    [ 6.655952] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
    [ 6.655955] nouveau 0000:01:00.0: registered panic notifier
    [ 6.655962] [drm] Initialized nouveau 1.1.1 20120801 for 0000:01:00.0 on minor 0
    [ 7.082698] ISO 9660 Extensions: RRIP_1991A
    [ 7.168774] loop: module loaded
    [ 8.253583] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [ 8.355925] device-mapper: uevent: version 1.0.3
    [ 8.356608] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: [email protected]
    [ 8.362693] bio: create slab <bio-1> at 1
    [ 8.386733] EXT4-fs (dm-0): mounted filesystem without journal. Opts: (null)
    [ 10.338096] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 10.417677] systemd[1]: Set hostname to <archiso>.
    [ 10.724871] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 10.724981] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 10.725005] systemd[1]: Starting Remote File Systems.
    [ 10.725151] systemd[1]: Reached target Remote File Systems.
    [ 10.725172] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 10.725323] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 10.725343] systemd[1]: Starting Delayed Shutdown Socket.
    [ 10.725469] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 10.725488] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 10.725627] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 10.725646] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 10.725770] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 10.725790] systemd[1]: Starting Root Slice.
    [ 10.726156] systemd[1]: Created slice Root Slice.
    [ 10.726176] systemd[1]: Starting User and Session Slice.
    [ 10.726413] systemd[1]: Created slice User and Session Slice.
    [ 10.726434] systemd[1]: Starting System Slice.
    [ 10.726647] systemd[1]: Created slice System Slice.
    [ 10.726682] systemd[1]: Starting system-getty.slice.
    [ 10.726921] systemd[1]: Created slice system-getty.slice.
    [ 10.726941] systemd[1]: Starting Slices.
    [ 10.727040] systemd[1]: Reached target Slices.
    [ 10.727064] systemd[1]: Starting Journal Socket.
    [ 10.727235] systemd[1]: Listening on Journal Socket.
    [ 10.727662] systemd[1]: Starting Load Kernel Modules...
    [ 10.728292] systemd[1]: Mounting POSIX Message Queue File System...
    [ 10.880863] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 10.881454] systemd[1]: Starting Journal Service...
    [ 10.882180] systemd[1]: Started Journal Service.
    [ 11.716066] systemd-journald[149]: Vacuuming done, freed 0 bytes
    [ 11.916159] FS-Cache: Loaded
    [ 12.202893] RPC: Registered named UNIX socket transport module.
    [ 12.202899] RPC: Registered udp transport module.
    [ 12.202902] RPC: Registered tcp transport module.
    [ 12.202904] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 12.619444] FS-Cache: Netfs 'nfs' registered for caching
    [ 12.812715] systemd-udevd[181]: starting version 208
    [ 12.905896] systemd-journald[149]: Received request to flush runtime journal from PID 1
    [ 15.580133] thermal LNXTHERM:00: registered as thermal_zone0
    [ 15.580139] ACPI: Thermal Zone [THRM] (40 C)
    [ 15.915160] ACPI: Fan [FAN] (on)
    [ 16.002108] ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \PM2S 1 (20130517/utaddress-251)
    [ 16.002119] ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \PM1K 2 (20130517/utaddress-251)
    [ 16.002126] ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \GPE1 3 (20130517/utaddress-251)
    [ 16.002133] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.002139] ACPI Warning: 0x000004b0-0x000004bf SystemIO conflicts with Region \GPO2 1 (20130517/utaddress-251)
    [ 16.002145] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.002148] ACPI Warning: 0x00000480-0x000004af SystemIO conflicts with Region \GPIV 1 (20130517/utaddress-251)
    [ 16.002153] ACPI Warning: 0x00000480-0x000004af SystemIO conflicts with Region \GPO_ 2 (20130517/utaddress-251)
    [ 16.002158] ACPI Warning: 0x00000480-0x000004af SystemIO conflicts with Region \PALD 3 (20130517/utaddress-251)
    [ 16.002164] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.002166] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 16.342474] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 16.403348] leds_ss4200: no LED devices found
    [ 16.664449] parport_pc 00:05: reported by Plug and Play ACPI
    [ 16.664509] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
    [ 16.686843] systemd-udevd[203]: renamed network interface eth0 to enp2s5
    [ 16.770163] systemd-udevd[209]: renamed network interface eth1 to enp2s8
    [ 17.098798] input: PC Speaker as /devices/platform/pcspkr/input/input3
    [ 17.779883] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 17.780620] ppdev: user-space parallel port driver
    [ 17.849790] microcode: CPU0 sig=0xf62, pf=0x4, revision=0xf
    [ 17.944384] iTCO_vendor_support: vendor-support=0
    [ 17.946278] microcode: CPU1 sig=0xf62, pf=0x4, revision=0xf
    [ 17.947486] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 17.950629] r8169 0000:02:05.0 enp2s5: link down
    [ 17.950649] r8169 0000:02:05.0 enp2s5: link down
    [ 17.950666] IPv6: ADDRCONF(NETDEV_UP): enp2s5: link is not ready
    [ 17.965112] IPv6: ADDRCONF(NETDEV_UP): enp2s8: link is not ready
    [ 18.405080] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 18.405126] iTCO_wdt: Found a ICH7DH TCO device (Version=2, TCOBASE=0x0460)
    [ 18.405284] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 18.872915] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [ 19.433622] hda_codec: ALC882: SKU not ready 0x411111f0
    [ 19.445025] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input4
    [ 19.479013] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
    [ 19.479156] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 19.479804] hda_intel: Disabling MSI
    [ 19.479816] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 20.178014] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input7
    [ 20.178270] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input8
    [ 20.178485] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
    [ 20.178696] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
    [44490.433683] md: bind<sda1>
    [44490.446722] md: bind<sdb1>
    [44490.449241] md: raid1 personality registered for level 1
    [44490.450198] md/raid1:md1: not clean -- starting background reconstruction
    [44490.450203] md/raid1:md1: active with 2 out of 2 mirrors
    [44490.450235] md1: detected capacity change from 0 to 75934400512
    [44490.452050] md: resync of RAID array md1
    [44490.452056] md: minimum _guaranteed_ speed: 1000 KB/sec/disk.
    [44490.452059] md: using maximum available idle IO bandwidth (but not more than 200000 KB/sec) for resync.
    [44490.452064] md: using 128k window, over a total of 74154688k.
    [44490.454641] md1: unknown partition table
    [45968.754029] md: md1: resync done.
    [45968.841250] RAID1 conf printout:
    [45968.841254] --- wd:2 rd:2
    [45968.841258] disk 0, wo:0, o:1, dev:sda1
    [45968.841261] disk 1, wo:0, o:1, dev:sdb1
    [47642.847783] EXT4-fs (md1): mounted filesystem with ordered data mode. Opts: (null)
    [47687.134362] r8169 0000:02:05.0 enp2s5: link up
    [47687.134376] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s5: link becomes ready
    [47825.775238] usb 3-6: new high-speed USB device number 3 using ehci-pci
    [47825.899362] usb 3-6: unable to get BOS descriptor set
    [47826.017245] usb-storage 3-6:1.0: USB Mass Storage device detected
    [47826.017363] scsi6 : usb-storage 3-6:1.0
    [47826.017504] usbcore: registered new interface driver usb-storage
    [47827.081919] scsi 6:0:0:0: Direct-Access PMAP PQ: 0 ANSI: 4
    [47827.802316] sd 6:0:0:0: [sdd] 15466496 512-byte logical blocks: (7.91 GB/7.37 GiB)
    [47827.804809] sd 6:0:0:0: [sdd] Write Protect is off
    [47827.804814] sd 6:0:0:0: [sdd] Mode Sense: 23 00 00 00
    [47827.807314] sd 6:0:0:0: [sdd] No Caching mode page found
    [47827.807763] sd 6:0:0:0: [sdd] Assuming drive cache: write through
    [47827.816453] sd 6:0:0:0: [sdd] No Caching mode page found
    [47827.816915] sd 6:0:0:0: [sdd] Assuming drive cache: write through
    [47827.845089] sdd: sdd1
    [47827.851818] sd 6:0:0:0: [sdd] No Caching mode page found
    [47827.852305] sd 6:0:0:0: [sdd] Assuming drive cache: write through
    [47827.852776] sd 6:0:0:0: [sdd] Attached SCSI removable disk
    [47901.177187] FAT-fs (sdd1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [48255.001967] usb 3-6: USB disconnect, device number 3
    [48456.278507] usb 3-6: new high-speed USB device number 4 using ehci-pci
    [48456.402614] usb 3-6: unable to get BOS descriptor set
    [48456.425683] usb-storage 3-6:1.0: USB Mass Storage device detected
    [48456.425763] scsi7 : usb-storage 3-6:1.0
    [48457.491544] scsi 7:0:0:0: Direct-Access PMAP PQ: 0 ANSI: 4
    [48458.209938] sd 7:0:0:0: [sdd] 15466496 512-byte logical blocks: (7.91 GB/7.37 GiB)
    [48458.212437] sd 7:0:0:0: [sdd] Write Protect is off
    [48458.212442] sd 7:0:0:0: [sdd] Mode Sense: 23 00 00 00
    [48458.214932] sd 7:0:0:0: [sdd] No Caching mode page found
    [48458.215426] sd 7:0:0:0: [sdd] Assuming drive cache: write through
    [48458.224684] sd 7:0:0:0: [sdd] No Caching mode page found
    [48458.225143] sd 7:0:0:0: [sdd] Assuming drive cache: write through
    [48458.253332] sdd: sdd1
    [48458.265813] sd 7:0:0:0: [sdd] No Caching mode page found
    [48458.266295] sd 7:0:0:0: [sdd] Assuming drive cache: write through
    [48458.266755] sd 7:0:0:0: [sdd] Attached SCSI removable disk
    [48470.450341] FAT-fs (sdd1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [50093.387926] Adding 3930408k swap on /dev/sda5. Priority:-1 extents:1 across:3930408k FS
    [50096.410969] Adding 3930408k swap on /dev/sdb5. Priority:-2 extents:1 across:3930408k FS
    [54374.314336] ata4.00: exception Emask 0x50 SAct 0x0 SErr 0x480900 action 0x6 frozen
    [54374.314836] ata4.00: irq_stat 0x08000000, interface fatal error
    [54374.315323] ata4: SError: { UnrecovData HostInt 10B8B Handshk }
    [54374.315764] ata4.00: failed command: WRITE DMA
    [54374.316198] ata4.00: cmd ca/00:88:9f:ca:8d/00:00:00:00:00/e8 tag 0 dma 69632 out
    res 50/00:00:9e:ca:8d/00:00:9e:c9:8d/e8 Emask 0x50 (ATA bus error)
    [54374.317334] ata4.00: status: { DRDY }
    [54374.318002] ata4: hard resetting link
    [54374.904585] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [54374.906314] ata4.00: configured for UDMA/100
    [54374.906332] ata4: EH complete
    [56161.610355] sdd: detected capacity change from 7918845952 to 0
    [56178.066775] usb 3-6: USB disconnect, device number 4
    [56193.205154] ata6: exception Emask 0x50 SAct 0x0 SErr 0x90800 action 0xe frozen
    [56193.205703] ata6: irq_stat 0x00400000, PHY RDY changed
    [56193.206232] ata6: SError: { HostInt PHYRdyChg 10B8B }
    [56193.206732] ata6: hard resetting link
    [56193.924403] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [56193.932798] ata6.00: configured for UDMA/100
    [56193.932805] ata6: EH complete
    [56195.044927] ata6: exception Emask 0x10 SAct 0x0 SErr 0x90000 action 0xe frozen
    [56195.045472] ata6: irq_stat 0x00400000, PHY RDY changed
    [56195.046003] ata6: SError: { PHYRdyChg 10B8B }
    [56195.046511] ata6: hard resetting link
    [56195.764407] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [56195.772826] ata6.00: configured for UDMA/100
    [56195.772832] ata6: EH complete
    [56217.331067] usb 3-6: new high-speed USB device number 5 using ehci-pci
    [56217.455149] usb 3-6: unable to get BOS descriptor set
    [56217.478526] usb-storage 3-6:1.0: USB Mass Storage device detected
    [56217.478662] scsi8 : usb-storage 3-6:1.0
    [56218.544212] scsi 8:0:0:0: Direct-Access PMAP PQ: 0 ANSI: 4
    [56219.262349] sd 8:0:0:0: [sdd] 15466496 512-byte logical blocks: (7.91 GB/7.37 GiB)
    [56219.264849] sd 8:0:0:0: [sdd] Write Protect is off
    [56219.264855] sd 8:0:0:0: [sdd] Mode Sense: 23 00 00 00
    [56219.267343] sd 8:0:0:0: [sdd] No Caching mode page found
    [56219.267939] sd 8:0:0:0: [sdd] Assuming drive cache: write through
    [56219.277220] sd 8:0:0:0: [sdd] No Caching mode page found
    [56219.277802] sd 8:0:0:0: [sdd] Assuming drive cache: write through
    [56219.305984] sdd: sdd1
    [56219.318099] sd 8:0:0:0: [sdd] No Caching mode page found
    [56219.318677] sd 8:0:0:0: [sdd] Assuming drive cache: write through
    [56219.319238] sd 8:0:0:0: [sdd] Attached SCSI removable disk
    [56234.556099] FAT-fs (sdd1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    Edit: Just after I took out my flashdrive, when I accidentally bumped one of the HDs, this popped up:
    [56193.205154] ata6: exception Emask 0x50 SAct 0x0 SErr 0x90800 action 0xe frozen
    [56193.205703] ata6: irq_stat 0x00400000, PHY RDY changed
    [56193.206232] ata6: SError: { HostInt PHYRdyChg 10B8B }
    [56193.206732] ata6: hard resetting link
    [56193.924403] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [56193.932798] ata6.00: configured for UDMA/100
    [56193.932805] ata6: EH complete
    [56195.044927] ata6: exception Emask 0x10 SAct 0x0 SErr 0x90000 action 0xe frozen
    [56195.045472] ata6: irq_stat 0x00400000, PHY RDY changed
    [56195.046003] ata6: SError: { PHYRdyChg 10B8B }
    [56195.046511] ata6: hard resetting link
    Last edited by Dornith (2014-05-20 16:08:40)

    http://ww2.cs.fsu.edu/~rosentha/linux/2.6.26.5/docs/DocBook/libata/ch07.html#excatATAbusErr wrote:
    ATA bus error means that data corruption occurred during transmission over ATA bus (SATA or PATA). This type of errors can be indicated by
    ICRC or ABRT error as described in the section called “ATA/ATAPI device error (non-NCQ / non-CHECK CONDITION)”.
    Controller-specific error completion with error information indicating transmission error.
    On some controllers, command timeout. In this case, there may be a mechanism to determine that the timeout is due to transmission error.
    Unknown/random errors, timeouts and all sorts of weirdities.
    As described above, transmission errors can cause wide variety of symptoms ranging from device ICRC error to random device lockup, and, for many cases, there is no way to tell if an error condition is due to transmission error or not; therefore, it's necessary to employ some kind of heuristic when dealing with errors and timeouts. For example, encountering repetitive ABRT errors for known supported command is likely to indicate ATA bus error.
    Once it's determined that ATA bus errors have possibly occurred, lowering ATA bus transmission speed is one of actions which may alleviate the problem.
    I'd also add; make sure you have good backups when ATA errors are frequent

  • [solved] No sound, ALSA finds soundcard, pulseaudio does not.

    Problem:
    pulseaudio can't find my soundcard (or it can't find ALSA, not sure). It falls back to a dummy-output and no input so i can't play sounds or use my mic.
    First appeared when:
    Installing software updates like a month ago. I ignored it at first in the hopes it will resolve itself with the next update an few dates later. It didn't so far. None of the packets I updated had linux|pulse|alsa|sound|audio in its name. So i guess it just triggered the problem in a indirect way.
    What did not help:
    Reinstalling packets with pulse|alsa|sound|audio in its name.
    Deleting ${HOME}/.pulse* .
    Rebooting.
    Resetting /etc/pulse/* or /etc/asound.conf to the defaults of the packaes they come with.
    Adding or removing my user to the audio group.
    Googling. Other threads i this forum.
    Additional infos:
    (Stuff that was requested from others which had similar problems. No other [solved]-threads were helping me so far.)
    /dev/dsp does not exist.
    fuser -v /dev/snd/* returns nothing
    aplay whatever.wav produces no sound.
    aplay -D sysdefault whatever.wav works.
    Using Gnome 3 started with gdm.
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog]
    Subdevices: 0/1
    Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    aplay -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    sysdefault:CARD=Intel
    HDA Intel, ALC272 Analog
    Default Audio Device
    front:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    Front speakers
    surround40:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    hdmi:CARD=Intel,DEV=0
    HDA Intel, HDMI 0
    HDMI Audio Output
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.6.7-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Sun Nov 18 10:11:22 CET 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux cryptdevice=/dev/sda7:root root=/dev/mapper/root ro quiet init=/bin/systemd
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d2000-0x00000000000d3fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d8000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000b76a0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b76a1000-0x00000000b76a6fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b76a7000-0x00000000b77d1fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b77d2000-0x00000000b780efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b780f000-0x00000000b7908fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7909000-0x00000000b7b0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b0f000-0x00000000b7b18fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b19000-0x00000000b7b1efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b1f000-0x00000000b7b62fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b63000-0x00000000b7b9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b9f000-0x00000000b7be4fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7be5000-0x00000000b7bfefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000b7bff000-0x00000000b7bfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7c00000-0x00000000b7dfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b8000000-0x00000000bfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] 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] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: Dell Inc. Inspiron 1370/0R8PR3, BIOS A01 09/15/2009
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0xb7c00 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-D3FFF write-protect
    [ 0.000000] D4000-DBFFF uncachable
    [ 0.000000] DC000-EFFFF write-back
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0B8000000 mask FF8000000 uncachable
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0FFE40000 mask FFFFC0000 write-protect
    [ 0.000000] 4 base 0B7E00000 mask FFFE00000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f6bf0-0x000f6bff] mapped at [ffff8800000f6bf0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xb7bfffff]
    [ 0.000000] [mem 0x00000000-0xb7bfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xb7bfffff @ [mem 0x1fffc000-0x1fffffff]
    [ 0.000000] RAMDISK: [mem 0x376e2000-0x37b68fff]
    [ 0.000000] ACPI: RSDP 00000000000f6b10 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 00000000b7bf7369 00064 (v01 DELL CL09 06040000 LTP 00000000)
    [ 0.000000] ACPI: FACP 00000000b7be7000 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001)
    [ 0.000000] ACPI: DSDT 00000000b7be8000 077A9 (v02 Dell CANTIGA 06040000 INTL 20060608)
    [ 0.000000] ACPI: FACS 00000000b7b9efc0 00040
    [ 0.000000] ACPI: HPET 00000000b7bfed16 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: MCFG 00000000b7bfed4e 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: OSFR 00000000b7bfed8a 00070 (v01 DELL DELL 06040000 ASL 00000061)
    [ 0.000000] ACPI: APIC 00000000b7bfedfa 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    [ 0.000000] ACPI: BOOT 00000000b7bfee62 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SLIC 00000000b7bfee8a 00176 (v01 DELL CL09 06040000 LTP 00000000)
    [ 0.000000] ACPI: SSDT 00000000b7be6000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000000b7bfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0xb7bfffff]
    [ 0.000000] NODE_DATA [mem 0xb7be1000-0xb7be4fff]
    [ 0.000000] [ffffea0000000000-ffffea0002dfffff] PMD -> [ffff8800b4000000-ffff8800b6dfffff] 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-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0xb76a0fff]
    [ 0.000000] node 0: [mem 0xb76a7000-0xb77d1fff]
    [ 0.000000] node 0: [mem 0xb780f000-0xb7908fff]
    [ 0.000000] node 0: [mem 0xb7b0f000-0xb7b18fff]
    [ 0.000000] node 0: [mem 0xb7b1f000-0xb7b62fff]
    [ 0.000000] node 0: [mem 0xb7b9f000-0xb7be4fff]
    [ 0.000000] node 0: [mem 0xb7bff000-0xb7bfffff]
    [ 0.000000] On node 0 totalpages: 751850
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3913 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11696 pages used for memmap
    [ 0.000000] DMA32 zone: 736171 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    [ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000d8000
    [ 0.000000] PM: Registered nosave memory: 00000000000d8000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000b76a1000 - 00000000b76a7000
    [ 0.000000] PM: Registered nosave memory: 00000000b77d2000 - 00000000b780f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7909000 - 00000000b7b0f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7b19000 - 00000000b7b1f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7b63000 - 00000000b7b9f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7be5000 - 00000000b7bff000
    [ 0.000000] e820: [mem 0xc0000000-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:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff8800b7400000 s84608 r8192 d21888 u1048576
    [ 0.000000] pcpu-alloc: s84608 r8192 d21888 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 740084
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux cryptdevice=/dev/sda7:root root=/dev/mapper/root ro quiet init=/bin/systemd
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240
    [ 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: 2944188k/3010560k available (4727k kernel code, 3160k absent, 63212k reserved, 4143k data, 772k 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] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 12058624 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1296.696 MHz processor
    [ 0.003337] Calibrating delay loop (skipped), value calculated using timer frequency.. 2594.45 BogoMIPS (lpj=4322320)
    [ 0.003343] pid_max: default: 32768 minimum: 301
    [ 0.003400] Security Framework initialized
    [ 0.003407] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003948] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.006850] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008132] Mount-cache hash table entries: 256
    [ 0.008498] Initializing cgroup subsys cpuacct
    [ 0.008503] Initializing cgroup subsys memory
    [ 0.008517] Initializing cgroup subsys devices
    [ 0.008520] Initializing cgroup subsys freezer
    [ 0.008522] Initializing cgroup subsys net_cls
    [ 0.008525] Initializing cgroup subsys blkio
    [ 0.008570] CPU: Physical Processor ID: 0
    [ 0.008572] CPU: Processor Core ID: 0
    [ 0.008575] mce: CPU supports 6 MCE banks
    [ 0.008587] CPU0: Thermal monitoring enabled (TM2)
    [ 0.008592] process: using mwait in idle threads
    [ 0.008600] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift is 0xffffffff
    [ 0.010851] ACPI: Core revision 20120711
    [ 0.016699] ftrace: allocating 18348 entries in 72 pages
    [ 0.027201] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061706] smpboot: CPU0: Genuine Intel(R) CPU U7300 @ 1.30GHz stepping 0a
    [ 0.063329] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.063329] ... version: 2
    [ 0.063329] ... bit width: 40
    [ 0.063329] ... generic registers: 2
    [ 0.063329] ... value mask: 000000ffffffffff
    [ 0.063329] ... max period: 000000007fffffff
    [ 0.063329] ... fixed-purpose events: 3
    [ 0.063329] ... event mask: 0000000700000003
    [ 0.086782] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.100007] smpboot: Booting Node 0, Processors #1 OK
    [ 0.113162] Brought up 2 CPUs
    [ 0.113162] smpboot: Total of 2 processors activated (5188.90 BogoMIPS)
    [ 0.113436] devtmpfs: initialized
    [ 0.116686] PM: Registering ACPI NVS region [mem 0xb7b63000-0xb7b9efff] (245760 bytes)
    [ 0.121465] NET: Registered protocol family 16
    [ 0.121699] ACPI: bus type pci registered
    [ 0.121824] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.121828] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.174683] PCI: Using configuration type 1 for base access
    [ 0.175619] bio: create slab <bio-0> at 0
    [ 0.175619] ACPI: Added _OSI(Module Device)
    [ 0.175619] ACPI: Added _OSI(Processor Device)
    [ 0.175619] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.175619] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.178073] ACPI: EC: Look up EC in DSDT
    [ 0.182902] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.188123] ACPI: SSDT 00000000b7b1aca0 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.188671] ACPI: Dynamic OEM Table Load:
    [ 0.188676] ACPI: SSDT (null) 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.188875] ACPI: SSDT 00000000b7b19620 00568 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.189399] ACPI: Dynamic OEM Table Load:
    [ 0.189404] ACPI: SSDT (null) 00568 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.189425] ACPI: SSDT 00000000b7b1aa20 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.190407] ACPI: Dynamic OEM Table Load:
    [ 0.190412] ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.190429] ACPI: SSDT 00000000b7b1af20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.190693] ACPI: Dynamic OEM Table Load:
    [ 0.190698] ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.190715] ACPI: Interpreter enabled
    [ 0.190715] ACPI: (supports S0 S3 S4 S5)
    [ 0.190715] ACPI: Using IOAPIC for interrupt routing
    [ 0.323314] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    [ 0.323314] ACPI: No dock devices found.
    [ 0.323314] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.323314] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.323314] PCI host bridge to bus 0000:00
    [ 0.323314] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
    [ 0.323314] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.323314] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.323314] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 0.323314] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.323314] DMAR: Forcing write-buffer flush capability
    [ 0.323314] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.323314] pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    [ 0.323314] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
    [ 0.323314] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.323314] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807]
    [ 0.323314] pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    [ 0.323314] pci 0000:00:02.1: reg 10: [mem 0xf0400000-0xf04fffff 64bit]
    [ 0.323314] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f]
    [ 0.323314] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f]
    [ 0.323314] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.2: reg 20: [io 0x1860-0x187f]
    [ 0.323314] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.323314] pci 0000:00:1a.7: reg 10: [mem 0xf0804800-0xf0804bff]
    [ 0.323314] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.323314] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.323314] pci 0000:00:1b.0: reg 10: [mem 0xf0800000-0xf0803fff 64bit]
    [ 0.323314] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.323342] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.323470] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.323513] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.323640] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.323688] pci 0000:00:1c.5: [8086:294a] type 01 class 0x060400
    [ 0.323816] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.323860] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.323931] pci 0000:00:1d.0: reg 20: [io 0x1880-0x189f]
    [ 0.324017] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.324087] pci 0000:00:1d.1: reg 20: [io 0x18a0-0x18bf]
    [ 0.324173] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.324243] pci 0000:00:1d.2: reg 20: [io 0x18c0-0x18df]
    [ 0.324346] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.324379] pci 0000:00:1d.7: reg 10: [mem 0xf0804c00-0xf0804fff]
    [ 0.324516] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.324552] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.324666] pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
    [ 0.324866] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.324900] pci 0000:00:1f.2: reg 10: [io 0x1818-0x181f]
    [ 0.324915] pci 0000:00:1f.2: reg 14: [io 0x180c-0x180f]
    [ 0.324931] pci 0000:00:1f.2: reg 18: [io 0x1810-0x1817]
    [ 0.324946] pci 0000:00:1f.2: reg 1c: [io 0x1808-0x180b]
    [ 0.324960] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff]
    [ 0.324975] pci 0000:00:1f.2: reg 24: [mem 0xf0804000-0xf08047ff]
    [ 0.325062] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.325096] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.325123] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff 64bit]
    [ 0.325160] pci 0000:00:1f.3: reg 20: [io 0x1c00-0x1c1f]
    [ 0.325277] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-ff]
    [ 0.325283] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.325366] pci_bus 0000:08: busn_res: [bus 08] is inserted under [bus 00-ff]
    [ 0.325632] pci 0000:08:00.0: [14e4:4315] type 00 class 0x028000
    [ 0.325707] pci 0000:08:00.0: reg 10: [mem 0xf0500000-0xf0503fff 64bit]
    [ 0.326109] pci 0000:08:00.0: supports D1 D2
    [ 0.326112] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
    [ 0.326304] pci 0000:00:1c.1: PCI bridge to [bus 08]
    [ 0.326314] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.326391] pci_bus 0000:20: busn_res: [bus 20] is inserted under [bus 00-ff]
    [ 0.326477] pci 0000:20:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.326546] pci 0000:20:00.0: reg 10: [io 0x2000-0x20ff]
    [ 0.326670] pci 0000:20:00.0: reg 18: [mem 0xf0904000-0xf0904fff 64bit pref]
    [ 0.326745] pci 0000:20:00.0: reg 20: [mem 0xf0900000-0xf0903fff 64bit pref]
    [ 0.326794] pci 0000:20:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.327093] pci 0000:20:00.0: supports D1 D2
    [ 0.327096] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.327302] pci 0000:00:1c.5: PCI bridge to [bus 20]
    [ 0.327309] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.327323] pci 0000:00:1c.5: bridge window [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.327363] pci_bus 0000:26: busn_res: [bus 26] is inserted under [bus 00-ff]
    [ 0.327435] pci 0000:00:1e.0: PCI bridge to [bus 26] (subtractive decode)
    [ 0.327452] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.327456] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.327460] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.327463] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.327467] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    [ 0.327471] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 0.327505] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.327638] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    [ 0.327717] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.327766] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.327824] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.327883] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.327886] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.334993] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.335069] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.335141] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    [ 0.335212] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.335283] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.335355] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 *7 11 12 14 15)
    [ 0.335424] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.335495] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.336671] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.336689] vgaarb: loaded
    [ 0.336691] vgaarb: bridge control possible 0000:00:02.0
    [ 0.336769] PCI: Using ACPI for IRQ routing
    [ 0.348092] PCI: pci_cache_line_size set to 64 bytes
    [ 0.348605] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
    [ 0.348608] e820: reserve RAM buffer [mem 0xb76a1000-0xb7ffffff]
    [ 0.348614] e820: reserve RAM buffer [mem 0xb77d2000-0xb7ffffff]
    [ 0.348619] e820: reserve RAM buffer [mem 0xb7909000-0xb7ffffff]
    [ 0.348623] e820: reserve RAM buffer [mem 0xb7b19000-0xb7ffffff]
    [ 0.348627] e820: reserve RAM buffer [mem 0xb7b63000-0xb7ffffff]
    [ 0.348631] e820: reserve RAM buffer [mem 0xb7be5000-0xb7ffffff]
    [ 0.348634] e820: reserve RAM buffer [mem 0xb7c00000-0xb7ffffff]
    [ 0.348791] NetLabel: Initializing
    [ 0.348794] NetLabel: domain hash size = 128
    [ 0.348796] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.348816] NetLabel: unlabeled traffic allowed by default
    [ 0.348840] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.348847] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.348855] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.370000] Switching to clocksource hpet
    [ 0.381464] pnp: PnP ACPI init
    [ 0.381496] ACPI: bus type pnp registered
    [ 0.382022] pnp 00:00: [bus 00-ff]
    [ 0.382027] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.382031] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.382035] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.382039] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.382042] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.382046] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.382050] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.382053] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.382057] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.382060] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.382064] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.382067] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.382071] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.382075] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.382078] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.382086] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.382089] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.382093] pnp 00:00: [mem 0xc0000000-0xdfffffff window]
    [ 0.382097] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
    [ 0.382100] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 0.382200] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.440057] pnp 00:01: [io 0x0000-0x001f]
    [ 0.440061] pnp 00:01: [io 0x0081-0x0091]
    [ 0.440065] pnp 00:01: [io 0x0093-0x009f]
    [ 0.440068] pnp 00:01: [io 0x00c0-0x00df]
    [ 0.440072] pnp 00:01: [dma 4]
    [ 0.440121] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.440232] pnp 00:02: [mem 0xfed00000-0xfed003ff]
    [ 0.440329] system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.440336] system 00:02: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.440353] pnp 00:03: [io 0x00f0]
    [ 0.440369] pnp 00:03: [irq 13]
    [ 0.440414] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.440433] pnp 00:04: [io 0x002e-0x002f]
    [ 0.440436] pnp 00:04: [io 0x0061]
    [ 0.440439] pnp 00:04: [io 0x0063]
    [ 0.440443] pnp 00:04: [io 0x0065]
    [ 0.440446] pnp 00:04: [io 0x0067]
    [ 0.440449] pnp 00:04: [io 0x0070]
    [ 0.440452] pnp 00:04: [io 0x0080]
    [ 0.440456] pnp 00:04: [io 0x0092]
    [ 0.440459] pnp 00:04: [io 0x00b2-0x00b3]
    [ 0.440462] pnp 00:04: [io 0x0480-0x048f]
    [ 0.440466] pnp 00:04: [io 0xffff]
    [ 0.440469] pnp 00:04: [io 0xffff]
    [ 0.440472] pnp 00:04: [io 0x0400-0x047f]
    [ 0.440475] pnp 00:04: [io 0x1180-0x11ff]
    [ 0.440479] pnp 00:04: [io 0xfe00]
    [ 0.440482] pnp 00:04: [io 0xff2c-0xff7f]
    [ 0.440574] system 00:04: [io 0x0480-0x048f] has been reserved
    [ 0.440578] system 00:04: [io 0xffff] has been reserved
    [ 0.440583] system 00:04: [io 0xffff] has been reserved
    [ 0.440587] system 00:04: [io 0x0400-0x047f] has been reserved
    [ 0.440591] system 00:04: [io 0x1180-0x11ff] has been reserved
    [ 0.440596] system 00:04: [io 0xfe00] has been reserved
    [ 0.440600] system 00:04: [io 0xff2c-0xff7f] has been reserved
    [ 0.440606] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.440620] pnp 00:05: [io 0x0070-0x0077]
    [ 0.440629] pnp 00:05: [irq 8]
    [ 0.440674] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.440691] pnp 00:06: [io 0x0060]
    [ 0.440694] pnp 00:06: [io 0x0064]
    [ 0.440703] pnp 00:06: [irq 1]
    [ 0.440753] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.440772] pnp 00:07: [irq 12]
    [ 0.440819] pnp 00:07: Plug and Play ACPI device, IDs DLL0418 PNP0f13 (active)
    [ 0.441027] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
    [ 0.441031] pnp 00:08: [mem 0xfed10000-0xfed13fff]
    [ 0.441034] pnp 00:08: [mem 0xfed18000-0xfed18fff]
    [ 0.441038] pnp 00:08: [mem 0xfed19000-0xfed19fff]
    [ 0.441041] pnp 00:08: [mem 0xe0000000-0xefffffff]
    [ 0.441045] pnp 00:08: [mem 0xfed20000-0xfed3ffff]
    [ 0.441048] pnp 00:08: [mem 0xfed45000-0xfed8ffff]
    [ 0.441146] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.441151] system 00:08: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.441155] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.441159] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.441164] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.441168] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.441172] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.441178] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.441356] pnp: PnP ACPI: found 9 devices
    [ 0.441359] ACPI: ACPI bus type pnp unregistered
    [ 0.449759] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.449766] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.449771] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
    [ 0.449786] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
    [ 0.449791] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000
    [ 0.449807] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x001fffff] to [bus 20] add_size 400000
    [ 0.449828] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.449833] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.449837] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.449841] pci 0000:00:1c.5: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 400000
    [ 0.449845] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.449849] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.449858] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
    [ 0.449864] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.449869] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.449874] pci 0000:00:1c.5: BAR 14: assigned [mem 0xc0600000-0xc0afffff]
    [ 0.449880] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.449885] pci 0000:00:1c.1: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.449890] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0b00000-0xc0b000ff 64bit]
    [ 0.449908] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.449913] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.449922] pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff]
    [ 0.449929] pci 0000:00:1c.0: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.449939] pci 0000:00:1c.1: PCI bridge to [bus 08]
    [ 0.449944] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    [ 0.449953] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.449960] pci 0000:00:1c.1: bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.449971] pci 0000:20:00.0: BAR 6: assigned [mem 0xf0920000-0xf093ffff pref]
    [ 0.449975] pci 0000:00:1c.5: PCI bridge to [bus 20]
    [ 0.449980] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.449989] pci 0000:00:1c.5: bridge window [mem 0xc0600000-0xc0afffff]
    [ 0.449996] pci 0000:00:1c.5: bridge window [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.450021] pci 0000:00:1e.0: PCI bridge to [bus 26]
    [ 0.450083] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.450089] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.450093] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.450097] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.450101] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.450105] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.450108] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.450112] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 0.450116] pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
    [ 0.450120] pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.450124] pci_bus 0000:08: resource 0 [io 0x4000-0x4fff]
    [ 0.450127] pci_bus 0000:08: resource 1 [mem 0xf0500000-0xf05fffff]
    [ 0.450131] pci_bus 0000:08: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.450135] pci_bus 0000:20: resource 0 [io 0x2000-0x2fff]
    [ 0.450139] pci_bus 0000:20: resource 1 [mem 0xc0600000-0xc0afffff]
    [ 0.450142] pci_bus 0000:20: resource 2 [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.450146] pci_bus 0000:26: resource 4 [io 0x0000-0x0cf7]
    [ 0.450150] pci_bus 0000:26: resource 5 [io 0x0d00-0xffff]
    [ 0.450154] pci_bus 0000:26: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.450157] pci_bus 0000:26: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.450161] pci_bus 0000:26: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.450165] pci_bus 0000:26: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.450219] NET: Registered protocol family 2
    [ 0.451401] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.456144] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.456812] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.456888] TCP: reno registered
    [ 0.456903] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.456958] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.457123] NET: Registered protocol family 1
    [ 0.457150] pci 0000:00:02.0: Boot video device
    [ 0.457669] PCI: CLS 64 bytes, default 64
    [ 0.457746] Unpacking initramfs...
    [ 0.626300] Freeing initrd memory: 4636k freed
    [ 0.628543] Simple Boot Flag at 0x3e set to 0x1
    [ 0.629045] audit: initializing netlink socket (disabled)
    [ 0.629069] type=2000 audit(1354288244.626:1): initialized
    [ 0.648430] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.651510] VFS: Disk quotas dquot_6.5.2
    [ 0.651590] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.651831] msgmni has been set to 5759
    [ 0.652156] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.652204] io scheduler noop registered
    [ 0.652208] io scheduler deadline registered
    [ 0.652301] io scheduler cfq registered (default)
    [ 0.652518] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.652689] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.652857] pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X
    [ 0.653107] intel_idle: does not run on family 6 model 23
    [ 0.653156] GHES: HEST is not enabled!
    [ 0.653245] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.653953] Linux agpgart interface v0.103
    [ 0.654073] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.669080] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.669133] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.669294] mousedev: PS/2 mouse device common for all mice
    [ 0.670409] rtc_cmos 00:05: RTC can wake from S4
    [ 0.670599] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.670636] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.670648] cpuidle: using governor ladder
    [ 0.670651] cpuidle: using governor menu
    [ 0.670829] drop_monitor: Initializing network drop monitor service
    [ 0.670946] TCP: cubic registered
    [ 0.671122] NET: Registered protocol family 10
    [ 0.671359] NET: Registered protocol family 17
    [ 0.671373] Key type dns_resolver registered
    [ 0.671720] PM: Hibernation image not present or could not be loaded.
    [ 0.671743] registered taskstats version 1
    [ 0.672782] rtc_cmos 00:05: setting system clock to 2012-11-30 15:10:45 UTC (1354288245)
    [ 0.674872] Freeing unused kernel memory: 772k freed
    [ 0.675168] Write protecting the kernel read-only data: 8192k
    [ 0.682434] Freeing unused kernel memory: 1408k freed
    [ 0.683107] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.685881] Freeing unused kernel memory: 568k freed
    [ 0.698116] systemd-udevd[43]: starting version 195
    [ 0.701918] SCSI subsystem initialized
    [ 0.703991] ACPI: bus type scsi registered
    [ 0.704082] libata version 3.00 loaded.
    [ 0.705773] ahci 0000:00:1f.2: version 3.0
    [ 0.705858] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.705949] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    [ 0.705955] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc sxs
    [ 0.705962] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.708617] scsi0 : ahci
    [ 0.709413] scsi1 : ahci
    [ 0.709823] scsi2 : ahci
    [ 0.710229] scsi3 : ahci
    [ 0.710359] ata1: SATA max UDMA/133 abar m2048@0xf0804000 port 0xf0804100 irq 43
    [ 0.710365] ata2: SATA max UDMA/133 abar m2048@0xf0804000 port 0xf0804180 irq 43
    [ 0.710367] ata3: DUMMY
    [ 0.710370] ata4: DUMMY
    [ 1.196712] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.196745] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.198401] ata1.00: ATA-8: WDC WD3200BEKT-75F3T0, 11.01A11, max UDMA/133
    [ 1.198405] ata1.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.200123] ata1.00: configured for UDMA/133
    [ 1.200301] scsi 0:0:0:0: Direct-Access ATA WDC WD3200BEKT-7 11.0 PQ: 0 ANSI: 5
    [ 1.201956] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.202042] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.202047] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.202083] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.213584] ata2.00: ATAPI: TSSTcorp DVD+/-RW TS-U633F, D500, max UDMA/100
    [ 1.213590] ata2.00: applying bridge limits
    [ 1.229911] ata2.00: configured for UDMA/100
    [ 1.232328] scsi 1:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-U633F D500 PQ: 0 ANSI: 5
    [ 1.270602] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
    [ 1.271452] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.273864] ACPI: bus type usb registered
    [ 1.273912] usbcore: registered new interface driver usbfs
    [ 1.273946] usbcore: registered new interface driver hub
    [ 1.273996] usbcore: registered new device driver usb
    [ 1.274813] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.274869] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 1.274876] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 1.274891] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 1.278814] ehci_hcd 0000:00:1a.7: debug port 1
    [ 1.278826] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.278852] ehci_hcd 0000:00:1a.7: irq 19, io mem 0xf0804800
    [ 1.279113] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.279117] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.280054] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.286696] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.286950] hub 1-0:1.0: USB hub found
    [ 1.286958] hub 1-0:1.0: 6 ports detected
    [ 1.287158] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 1.287164] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 1.287174] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 1.291082] ehci_hcd 0000:00:1d.7: debug port 1
    [ 1.291093] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.291118] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0804c00
    [ 1.300028] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.300266] hub 2-0:1.0: USB hub found
    [ 1.300273] hub 2-0:1.0: 6 ports detected
    [ 1.301086] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.301130] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.301135] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.301145] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.301191] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820
    [ 1.301506] hub 3-0:1.0: USB hub found
    [ 1.301513] hub 3-0:1.0: 2 ports detected
    [ 1.301640] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 1.301645] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.301654] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 1.301701] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
    [ 1.301997] hub 4-0:1.0: USB hub found
    [ 1.302004] hub 4-0:1.0: 2 ports detected
    [ 1.302158] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 1.302164] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.302198] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 1.302230] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001860
    [ 1.302434] hub 5-0:1.0: USB hub found
    [ 1.302441] hub 5-0:1.0: 2 ports detected
    [ 1.302557] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.302562] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.302572] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 1.302603] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001880
    [ 1.302824] hub 6-0:1.0: USB hub found
    [ 1.302833] hub 6-0:1.0: 2 ports detected
    [ 1.303165] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.303171] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.303186] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.303219] uhci_hcd 0000:00:1d.1: irq 19, io base 0x000018a0
    [ 1.303759] hub 7-0:1.0: USB hub found
    [ 1.303766] hub 7-0:1.0: 2 ports detected
    [ 1.303897] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.303903] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.303995] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.304040] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018c0
    [ 1.304881] hub 8-0:1.0: USB hub found
    [ 1.304888] hub 8-0:1.0: 2 ports detected
    [ 1.323613] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
    [ 1.330105] [drm] Initialized drm 1.1.0 20060810
    [ 1.331660] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    [ 1.331843] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 1.333755] agpgart-intel 0000:00:00.0: detected 131072K stolen memory
    [ 1.333940] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 1.334797] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 1.334889] ACPI: Lid Switch [LID0]
    [ 1.335079] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 1.335086] ACPI: Power Button [PWRB]
    [ 1.335191] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 1.335196] ACPI: Power Button [PWRF]
    [ 1.341526] i915 0000:00:02.0: setting latency timer to 64
    [ 1.414990] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 1.415006] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.415008] [drm] Driver supports precise vblank timestamp query.
    [ 1.415071] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.606699] usb 2-4: new high-speed USB device number 2 using ehci_hcd
    [ 1.630029] tsc: Refined TSC clocksource calibration: 1296.749 MHz
    [ 1.630036] Switching to clocksource tsc
    [ 2.030864] fbcon: inteldrmfb (fb0) is primary device
    [ 2.090024] usb 2-5: new high-speed USB device number 3 using ehci_hcd
    [ 2.574662] Console: switching to colour frame buffer device 170x48
    [ 2.579271] fb0: inteldrmfb frame buffer device
    [ 2.579273] drm: registered panic notifier
    [ 2.680113] acpi device:07: registered as cooling_device0
    [ 2.780104] acpi device:08: registered as cooling_device1
    [ 2.780177] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 2.780313] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4
    [ 2.780358] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 2.963907] device-mapper: uevent: version 1.0.3
    [ 2.964084] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: [email protected]
    [ 3.763615] atkbd serio0: Unknown key pressed (translated set 2, code 0x8e on isa0060/serio0).
    [ 3.763622] atkbd serio0: Use 'setkeycodes e00e <keycode>' to make it known.
    [ 9.679599] XFS (dm-0): Mounting Filesystem
    [ 9.807350] XFS (dm-0): Ending clean mount
    [ 10.447920] systemd[1]: RTC configured in localtime, applying delta of 60 minutes to system time.
    [ 10.481565] systemd[1]: systemd 196 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 10.507375] systemd[1]: Set hostname to <xxx-laptop>.
    [ 11.844864] 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.
    [ 11.845276] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 11.845371] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 11.845393] systemd[1]: Starting Login Prompts.
    [ 11.845414] systemd[1]: Reached target Login Prompts.
    [ 11.845429] systemd[1]: Starting Arch Daemons.
    [ 11.845447] systemd[1]: Reached target Arch Daemons.
    [ 11.845462] systemd[1]: Starting Remote File Systems.
    [ 11.845481] systemd[1]: Reached target Remote File Systems.
    [ 11.845496] systemd[1]: Starting Syslog Socket.
    [ 11.845558] systemd[1]: Listening on Syslog Socket.
    [ 11.845576] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 11.845615] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 11.845630] systemd[1]: Starting Delayed Shutdown Socket.
    [ 11.845668] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 11.845766] systemd[1]: Starting udev Kernel Socket.
    [ 11.845804] systemd[1]: Listening on udev Kernel Socket.
    [ 11.845885] systemd[1]: Starting udev Control Socket.
    [ 11.845927] systemd[1]: Listening on udev Control Socket.
    [ 11.845979] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 11.846139] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 11.846157] systemd[1]: Expecting device dev-mapper-home.device...
    [ 11.846175] systemd[1]: Expecting device dev-sda8.device...
    [ 11.846193] systemd[1]: Expecting device dev-mapper-swap.device...
    [ 11.846210] systemd[1]: Expecting device dev-sda6.device...
    [ 11.846232] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 11.846291] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 11.846308] systemd[1]: Expecting device dev-disk-by\x2duuid-f19efb1f\x2d9a5b\x2d4f22\x2db35d\x2d4a603145a436.device...
    [ 11.846328] systemd[1]: Expecting device dev-disk-by\x2duuid-bd984744\x2d036e\x2d47e5\x2db40f\x2d04fa9f6d0f35.device...
    [ 11.846347] systemd[1]: Expecting device dev-disk-by\x2duuid-f1bab4e5\x2de736\x2d443a\x2d827e\x2d59f202a548ab.device...
    [ 11.846368] systemd[1]: Starting Journal Socket.
    [ 11.846439] systemd[1]: Listening on Journal Socket.
    [ 11.846467] systemd[1]: Started File System Check on Root Device.
    [ 11.846485] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 11.850382] systemd[1]: Mounting Temporary Directory...
    [ 11.998839] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway. (To see the over-mounted files, please manually mount the underlying file system to a secondary location.)
    [ 12.026864] systemd[1]: Mounting Huge Pages File System...
    [ 12.040270] systemd[1]: Mounting POSIX Message Queue File System...
    [ 12.043518] systemd[1]: Starting udev Coldplug all Devices...
    [ 12.156149] systemd[1]: Starting Load Kernel Modules...
    [ 12.173525] systemd[1]: Mounting Debug File System...
    [ 12.186770] systemd[1]: Starting Setup Virtual Console...
    [ 12.484840] systemd[1]: Starting Apply Kernel Variables...
    [ 12.616915] systemd[1]: Starting Set Up Additional Binary Formats...
    [ 12.630266] systemd[1]: Starting udev Kernel Device Manager...
    [ 12.636850] systemd[1]: Starting Journal Service...
    [ 12.646587] systemd[1]: Started Journal Service.
    [ 12.646650] systemd[1]: Starting Syslog.
    [ 12.646684] systemd[1]: Reached target Syslog.
    [ 12.647637] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 12.647816] systemd[1]: Mounted Temporary Directory.
    [ 12.647972] systemd[1]: Mounted Huge Pages File System.
    [ 12.648127] systemd[1]: Mounted POSIX Message Queue File System.
    [ 12.653654] systemd[1]: Mounted Debug File System.
    [ 12.653705] systemd[1]: Starting Local File Systems (Pre).
    [ 12.653726] systemd[1]: Reached target Local File Systems (Pre).
    [ 12.653749] systemd[1]: Starting Load Random Seed...
    [ 12.705203] FS-Cache: Loaded
    [ 12.740616] RPC: Registered named UNIX socket transport module.
    [ 12.740621] RPC: Registered udp transport module.
    [ 12.740624] RPC: Registered tcp transport module.
    [ 12.740626] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 12.881473] systemd-udevd[162]: starting version 196
    [ 12.988696] FS-Cache: Netfs 'nfs' registered for caching
    [ 13.298794] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 13.299212] r8169 0000:20:00.0: irq 45 for MSI/MSI-X
    [ 13.299501] r8169 0000:20:00.0: eth0: RTL8168d/8111d at 0xffffc9000060e000, 00:26:b9:ca:52:29, XID 081000c0 IRQ 45
    [ 13.299506] r8169 0000:20:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 13.401185] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 13.802403] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 14.148667] input: HDA Intel HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 14.148733] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 14.208405] cfg80211: Calling CRDA to update world regulatory domain
    [ 14.318480] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    [ 14.330974] lib80211: common routines for IEEE802.11 drivers
    [ 14.330979] lib80211_crypt: registered algorithm 'NULL'
    [ 14.375031] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 14.649332] microcode: CPU0 updated to revision 0xa0b, date = 2010-09-28
    [ 14.656959] microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    [ 14.660799] microcode: CPU1 updated to revision 0xa0b, date = 2010-09-28
    [ 14.668564] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 14.709327] ACPI: Requesting acpi_cpufreq
    [ 14.714946] Monitor-Mwait will be used to enter C-1 state
    [ 14.714973] Monitor-Mwait will be used to enter C-2 state
    [ 14.714989] Monitor-Mwait will be used to enter C-3 state
    [ 14.715001] tsc: Marking TSC unstable due to TSC halts in idle
    [ 14.715031] ACPI: acpi_idle registered with cpuidle
    [ 14.720557] Switching to clocksource hpet
    [ 14.757813] wmi: Mapper loaded
    [ 15.215288] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
    [ 15.215300] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 15.215306] ACPI Warning: 0x0000000000001180-0x00000000000011bf SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
    [ 15.215313] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 15.215315] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 15.303785] ACPI: Battery Slot [BAT1] (battery present)
    [ 15.405750] input: Dell WMI hotkeys as /devices/virtual/input/input8
    [ 15.417769] iTCO_vendor_support: vendor-support=0
    [ 15.430131] ACPI: AC Adapter [ACAD] (off-line)
    [ 15.471845] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 15.471895] iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x0460)
    [ 15.472076] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 15.585541] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 15.585549] Disabling lock debugging due to kernel taint
    [ 15.625424] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1a0b1, caps: 0xd04711/0xa00000/0x20000, board id: 3655, fw id: 528343
    [ 15.629342] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 15.654093] lib80211_crypt: registered algorithm 'TKIP'
    [ 15.654584] eth1: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 15.693893] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 15.816131] ACPI Warning: 0x0000000000001c00-0x0000000000001c1f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
    [ 15.816143] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.108446] Linux media interface: v0.10
    [ 16.120558] Linux video capture interface: v2.00
    [ 16.169228] usbcore: registered new interface driver uas
    [ 16.281166] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_1.3M (0c45:6415)
    [ 16.316308] Initializing USB Mass Storage driver...
    [ 16.316609] usbcore: registered new interface driver usb-storage
    [ 16.316613] USB Mass Storage support registered.
    [ 16.328744] input: Laptop_Integrated_Webcam_1.3M as /devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5:1.0/input/input10
    [ 16.328873] usbcore: registered new interface driver uvcvideo
    [ 16.328876] USB Video Class driver (1.1.1)
    [ 16.779720] usb 2-4: USB disconnect, device number 2
    [ 16.783629] scsi4 : usb-storage 2-4:1.0
    [ 16.783773] usbcore: registered new interface driver ums-realtek
    [ 17.381988] EXT4-fs (sda5): mounting ext3 file system using the ext4 subsystem
    [ 17.393596] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 21.567415] Adding 977880k swap on /dev/mapper/swap. Priority:-1 extents:1 across:977880k
    [ 21.656824] XFS (dm-1): Mounting Filesystem
    [ 21.839619] XFS (dm-1): Ending clean mount
    [ 21.940898] systemd-journald[163]: Received SIGUSR1
    [ 28.055735] r8169 0000:20:00.0: eth0: link down
    [ 28.055792] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 28.875645] Bluetooth: Core ver 2.16
    [ 28.875677] NET: Registered protocol family 31
    [ 28.875680] Bluetooth: HCI device and connection manager initialized
    [ 28.875684] Bluetooth: HCI socket layer initialized
    [ 28.875687] Bluetooth: L2CAP socket layer initialized
    [ 28.875695] Bluetooth: SCO socket layer initialized
    [ 29.041069] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 37.807702] fuse init (API version 7.20)
    [ 37.828734] EXT4-fs (sda5): re-mounted. Opts: commit=600
    lsmod
    Module Size Used by
    fuse 69173 2
    michael_mic 2074 8
    arc4 2039 4
    ecb 2105 0
    bnep 8857 2
    bluetooth 192120 7 bnep
    snd_seq 50881 1
    snd_seq_device 5268 1 snd_seq
    ums_realtek 7391 0
    usb_storage 47384 1 ums_realtek
    uvcvideo 72787 0
    videobuf2_vmalloc 2468 1 uvcvideo
    uas 11119 0
    videobuf2_memops 2246 1 videobuf2_vmalloc
    videobuf2_core 24030 1 uvcvideo
    videodev 100859 2 uvcvideo,videobuf2_core
    media 10405 2 uvcvideo,videodev
    i2c_i801 9571 0
    joydev 9991 0
    coretemp 6070 0
    kvm_intel 124749 0
    lib80211_crypt_tkip 7738 0
    wl 2558087 0
    kvm 373917 1 kvm_intel
    iTCO_wdt 5255 0
    iTCO_vendor_support 1929 1 iTCO_wdt
    dell_wmi 1485 0
    acpi_cpufreq 5933 1
    lpc_ich 10609 0
    ac 2536 0
    mperf 1267 1 acpi_cpufreq
    sparse_keymap 3056 1 dell_wmi
    battery 6773 0
    wmi 8379 1 dell_wmi
    dell_laptop 8787 0
    processor 26855 3 acpi_cpufreq
    evdev 10266 12
    psmouse 71909 0
    serio_raw 4689 0
    dcdbas 5520 1 dell_laptop
    lib80211 3949 2 wl,lib80211_crypt_tkip
    microcode 12377 0
    cfg80211 177108 1 wl
    rfkill 15604 5 cfg80211,bluetooth
    snd_hda_codec_hdmi 24487 1
    snd_hda_codec_realtek 61193 1
    snd_hda_intel 26180 3
    snd_hda_codec 98033 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    snd_hwdep 6428 1 snd_hda_codec
    snd_pcm_oss 38992 0
    snd_pcm 75689 5 snd_pcm_oss,snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 7217 2 snd_pcm,snd_hda_intel
    snd_timer 18934 3 snd_pcm,snd_seq
    snd_mixer_oss 15347 1 snd_pcm_oss
    snd 60188 16 snd_hda_codec_realtek,snd_pcm_oss,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_hda_codec,snd_hda_intel,snd_seq_device,snd_mixer_oss
    soundcore 5442 1 snd
    pcspkr 1899 0
    r8169 56839 0
    mii 4091 1 r8169
    nfs 127007 0
    lockd 64904 1 nfs
    sunrpc 186092 2 nfs,lockd
    fscache 40995 1 nfs
    ablk_helper 1972 0
    cryptd 8741 1 ablk_helper
    aes_x86_64 7508 6
    aes_generic 26138 1 aes_x86_64
    xts 3101 3
    gf128mul 6050 1 xts
    dm_crypt 15799 3
    dm_mod 72105 7 dm_crypt
    i915 495521 3
    video 11276 1 i915
    button 4662 1 i915
    i2c_algo_bit 5391 1 i915
    intel_agp 10744 1 i915
    intel_gtt 15659 3 i915,intel_agp
    drm_kms_helper 32877 1 i915
    drm 218852 4 i915,drm_kms_helper
    i2c_core 20707 6 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,videodev
    vfat 10119 0
    fat 48338 1 vfat
    xfs 748207 2
    ext4 440434 1
    crc16 1359 2 ext4,bluetooth
    jbd2 78751 1 ext4
    mbcache 5977 1 ext4
    uhci_hcd 23436 0
    ehci_hcd 41816 0
    sr_mod 14823 0
    usbcore 150398 6 uas,uhci_hcd,uvcvideo,ums_realtek,usb_storage,ehci_hcd
    usb_common 954 1 usbcore
    cdrom 35520 1 sr_mod
    sd_mod 29559 5
    ahci 21360 4
    libahci 20023 1 ahci
    libata 167683 2 ahci,libahci
    scsi_mod 133386 5 uas,usb_storage,libata,sd_mod,sr_mod
    lspci
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    08:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
    20:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 03)
    pacman -Q | grep ...
    alsa-lib 1.0.26-1
    alsa-plugins 1.0.26-1
    alsa-utils 1.0.26-1
    alsaplayer 0.99.81-5
    lib32-alsa-lib 1.0.26-1
    lib32-alsa-plugins 1.0.26-1
    lib32-libpulse 2.1-1
    lib32-libsndfile 1.0.25-2
    libcanberra-pulse 0.30-2
    libcdaudio 0.99.12-6
    libpulse 2.1-1
    libsndfile 1.0.25-2
    portaudio 19_20111121-1
    pulseaudio 2.1-1
    pulseaudio-alsa 2-1
    sound-juicer 3.5.0-1
    sound-theme-freedesktop 0.8-1
    soundtouch 1.6.0-1
    teamspeak-soundpack-portal 1-4
    webrtc-audio-processing 0.1-1
    pactl list
    Module #0
    Name: module-device-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore the volume/mute state of devices"
    module.version = "2.1"
    Module #1
    Name: module-stream-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore the volume/mute/device state of streams"
    module.version = "2.1"
    Module #2
    Name: module-card-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore profile of cards"
    module.version = "2.1"
    Module #3
    Name: module-augment-properties
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Augment the property sets of streams with additional static information"
    module.version = "2.1"
    Module #4
    Name: module-udev-detect
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Detect available audio hardware and load matching drivers"
    module.version = "2.1"
    Module #5
    Name: module-jackdbus-detect
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "David Henningsson"
    module.descript

    I set the loglevel to debug and rebooted.
    grep -i pulse /var/log/everything.log
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    Dec 3 00:06:34 localhost rtkit-daemon[442]: Successfully made thread 713 of process 713 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-util.c: RealtimeKit worked.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-util.c: Successfully gained nice level -11.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: This is PulseAudio 2.1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -Wno-long-long -Wvla -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running on host: Linux x86_64 3.6.8-1-ARCH #1 SMP PREEMPT Mon Nov 26 22:10:40 CET 2012
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Found 2 CPUs.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Page size is 4096 bytes
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compiled with Valgrind support: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in valgrind mode: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in VM: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Optimized build: yes
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Machine ID is 883cea362d03be37758a39f4000006db.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using runtime directory /home/whatever/.pulse/883cea362d03be37758a39f4000006db-runtime.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using state directory /home/whatever/.pulse.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-2.1/modules.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in system mode: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Fresh high-resolution timers available! Bon appetit!
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] memblock.c: Using shared memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3 SSE4_1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_mmx.c: Initialising MMX optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] remap_mmx.c: Initialising MMX optimized remappers.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_sse.c: Initialising SSE2 optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] remap_sse.c: Initialising SSE2 optimized remappers.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] sconv_sse.c: Initialising SSE2 optimized conversions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_orc.c: Initialising ORC optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-device-volumes.tdb'
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-device-volumes'.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-device-restore" (index: #0; argument: "").
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-stream-volumes.tdb'
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-stream-volumes'.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 added for object /org/pulseaudio/stream_restore1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry0
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry2
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry3
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry4
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry5
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-card-database.tdb'
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-card-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-card-database'.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #3; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-udev-detect.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:1b.0/sound/card0 is busy: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: Found 1 cards.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-udev-detect" (index: #4; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-jackdbus-detect.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus session bus f8aad50a9c72259e812fef8050bbed02 as :1.11
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-jackdbus-detect.c: jackdbus isn't running.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-jackdbus-detect" (index: #5; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-bluetooth-discover.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus system bus aca7467032ad6386c1a812c250bbecf9 as :1.27
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] bluetooth-util.c: dbus: interface=org.freedesktop.DBus, path=/org/freedesktop/DBus, member=NameAcquired
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-bluetooth-discover" (index: #6; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-esound-protocol-unix.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-esound-protocol-unix" (index: #7; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-native-protocol-unix" (index: #8; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-gconf.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-gconf" (index: #9; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-default-device-restore.c: Saved default sink 'auto_null' not existent, not restoring default sink setting.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-default-device-restore.c: Saved default source 'auto_null.monitor' not existent, not restoring default source setting.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-default-device-restore" (index: #10; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-rescue-streams" (index: #11; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-always-sink.c: Autoloading null-sink as no other sinks detected.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Restoring volume for sink auto_null.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: Created sink 0 "auto_null" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.description = "Dummy Output"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.class = "abstract"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.icon_name = "audio-card"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: Created source 0 "auto_null.monitor" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.description = "Monitor of Dummy Output"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.class = "monitor"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.icon_name = "audio-input-microphone"
    Dec 3 01:06:35 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Thread starting up
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Could not set format on sink auto_null
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-null-sink" (index: #12; argument: "sink_name=auto_null sink_properties='device.description="Dummy Output"'").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-always-sink" (index: #13; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-intended-roles" (index: #14; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-suspend-on-idle" (index: #15; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-console-kit.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-console-kit" (index: #16; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-systemd-login.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] client.c: Created 0 "Login Session 1"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-systemd-login.c: Added new session 1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-systemd-login" (index: #17; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-position-event-sounds" (index: #18; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-role-cork.c: Using role 'phone' as trigger role.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-role-cork.c: Using roles 'music' and 'video' as cork roles.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-role-cork" (index: #19; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-filter-heuristics" (index: #20; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-filter-apply" (index: #21; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-dbus-protocol.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Memstats added for object /org/pulseaudio/core1/memstats
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Device added for object /org/pulseaudio/core1/sink0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Sink added for object /org/pulseaudio/core1/sink0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Device added for object /org/pulseaudio/core1/source0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Source added for object /org/pulseaudio/core1/source0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module2
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module3
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module4
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module5
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module6
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module7
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module8
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module9
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module10
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module11
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module12
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module13
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module14
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module15
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module16
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module17
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module18
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module19
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module20
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module21
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1 added for object /org/pulseaudio/core1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-dbus-protocol" (index: #22; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-switch-on-port-available" (index: #23; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Got org.PulseAudio1!
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Got org.pulseaudio.Server!
    Dec 3 01:06:35 localhost pulseaudio[710]: [pulseaudio] main.c: Daemon startup successful.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Daemon startup complete.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module22
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module23
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] client.c: Created 1 "Native client (UNIX socket client)"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-settings-daemon
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Created 2 "Native client (UNIX socket client)"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client2
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-shell
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Found /usr/share/applications/gnome-shell.desktop.
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Created 3 "Native client (UNIX socket client)"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client3
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for canberra-gtk-play
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 3 "canberra-gtk-play"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client3
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    Dec 3 00:06:38 localhost rtkit-daemon[442]: Successfully made thread 745 of process 745 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-util.c: RealtimeKit worked.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-util.c: Successfully gained nice level -11.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: This is PulseAudio 2.1
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -Wno-long-long -Wvla -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running on host: Linux x86_64 3.6.8-1-ARCH #1 SMP PREEMPT Mon Nov 26 22:10:40 CET 2012
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Found 2 CPUs.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Page size is 4096 bytes
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compiled with Valgrind support: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in valgrind mode: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in VM: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Optimized build: yes
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Machine ID is 883cea362d03be37758a39f4000006db.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using runtime directory /home/whatever/.pulse/883cea362d03be37758a39f4000006db-runtime.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using state directory /home/whatever/.pulse.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-2.1/modules.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in system mode: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] pid.c: Daemon already running.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 4 "Native client (UNIX socket client)"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client4
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-x11-publish" (index: #24; argument: "display=:0").
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module24
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 4 "pactl"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client4
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 5 "Native client (UNIX socket client)"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client5
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-x11-xsmp.c: Connected to session manager 'gnome-session' as '102459fa9aeb823737135449319899169800000005480030'.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 6 "XSMP Session on gnome-session as 102459fa9aeb823737135449319899169800000005480030"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-x11-xsmp" (index: #25; argument: "display=:0 session_manager=local/whatever-laptop:@/tmp/.ICE-unix/548,unix/whatever-laptop:/tmp/.ICE-unix/548").
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client6
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module25
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 5 "pactl"
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client5
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null idle for too long, suspending ...
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0004, suspending
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:06:52 localhost pulseaudio[713]: [pulseaudio] client.c: Created 7 "Native client (UNIX socket client)"
    Dec 3 01:06:52 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client7
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-shell
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Client gnome-shell changes volume of sink auto_null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:auto_null:null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Restoring device for stream sink-input-by-media-role:event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-intended-roles.c: Not setting device for stream audio-volume-change, because already set.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0000, resuming
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes busy.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Created input 0 "audio-volume-change" on auto_null with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: event.id = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.role = "event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.name = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-volume-change.oga"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.name = "GNOME Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.version = "26"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.id = "org.gnome.Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.id = "717"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.user = "whatever"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.host = "whatever-laptop"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.binary = "gnome-shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.language = "en_US.utf8"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: window.x11.display = ":0"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.machine_id = "883cea362d03be37758a39f4000006db"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream added for object /org/pulseaudio/core1/playback_stream0
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Requesting rewind due to end of underrun.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Underrun on 'audio-volume-change', 0 bytes in queue.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Client gnome-shell changes volume of sink auto_null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:auto_null:null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 352800 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 54188 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream removed from object /org/pulseaudio/core1/playback_stream0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Freeing input 0 "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Restoring device for stream sink-input-by-media-role:event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-intended-roles.c: Not setting device for stream audio-volume-change, because already set.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes busy.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Created input 1 "audio-volume-change" on auto_null with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: event.id = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.role = "event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.name = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-volume-change.oga"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.name = "GNOME Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.version = "26"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.id = "org.gnome.Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.id = "717"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.user = "whatever"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.host = "whatever-laptop"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.binary = "gnome-shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.language = "en_US.utf8"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: window.x11.display = ":0"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.machine_id = "883cea362d03be37758a39f4000006db"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream added for object /org/pulseaudio/core1/playback_stream1
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Requesting rewind due to end of underrun.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Underrun on 'audio-volume-change', 0 bytes in queue.
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 352800 bytes.
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 352800 bytes.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream removed from object /org/pulseaudio/core1/playback_stream1
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Freeing input 1 "audio-volume-change"
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null idle for too long, suspending ...
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0004, suspending
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:28 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Synced.
    By now I also made my system not load any moudules which have oss in their name. Didn't help either.

Maybe you are looking for

  • BAdi for Vendor Master Creation XK01

    Hello All , I want to have a new subscreen in XK01 transaction . So i include it by implementing the Badi VENDOR_DATA_CS Now i can get a subscrenn in my transaction . But i couldn't transfer the value of the field from my subscreen to my main program

  • How to install boot camp

    Dear Sir/Madam, I'm trying to install win8 on my macbook. The question is I only can see the .exe file in Aplication folder after I download the bootcamp installation file and can't open it... There is a button with name "BOOTCAMP" in DEVICES when I

  • What is Restrictions in general setting and what does it do?

    I've not come across this section before. Can anyone shed some light on what it does? Currently there is a bunch of apps turned to 'green'.

  • Receive mail

    guys- for some reason i can recieve mail but not send from my Mac account. Just signed up. Went into the applications folder and submitted password. Am I missing a step? this is the statement I get: The connection to the server "smtp.mac.com" on port

  • I tryed downloading soldier boy on my iphone 4 useing android market but it says there are no android phone associated

    i tryed downloading soldier boy on my iphone 4 useing android market but it says there are no android phone associated