Fam problems & rc.sysinit

Today i noticed when i started gnome the fam deamon disapeared.  I could restart the daemon, but when i started browsing through my filesystems with nautilus the fam daemon disapeared again.  When i started manually /usr/bin/fam -d (debug mode) i saw the fam deamon spawned a line about not finding 'root' and  then the deamon quitted . A permission problem was unlikely so it had to be a problem with the other "root" of a linux pc: the root of the filesystem (/).  I executed df and saw all my partitions showing up except one : "/". Checking fstab revealed the / mountpoint was defined, but checking mstab didn't have any / entry !!!
In the rc.sysinit file there is a block where / gets mounted read only (line 53) and remounted rw (line 82).  But the following line is interesting: after remounting / the mtab file gets deleted.  And since no remounting of the / filesystem is done after the deleting of mtab the root mountpoint never shows up in the mtab file.
I fixed this by remounting the / fs again right after the mtab deletion.
lines 81-86 of rc.sysinit
stat_busy "Mounting Local Filesystems"
/bin/mount -w -v -n -o remount /
/bin/rm -f /etc/mtab*
/bin/mount -w -o remount /
# re-mount /proc and /sys so they can be written to /etc/mtab
umount /proc && mount -t proc none /proc
An guess what: after this modifaction my fam daemon keeps running
Could someone check this out if this is a common problem?
Thx

Why you have:
/bin/mount -w -v -n -o remount /
and I only have:
/bin/mount -n -o remount,rw /
mmmmmmm, man mount:
-w  Mount the file system read/write. This is the default. A synonym is -o rw.
-v   Verbose mode.
cool.
did you change that or was it in default i your initscripts¿?

Similar Messages

  • FAM problem (not refreshing my desktop)

    Hi all, well the title says it all
    I reinstalled arch the other day and i installed kdemod, and i added my usuals DAEMONS to rc.conf
    When i boot it says File Alteration Monitor loads correctly, and even if i do a /etc/rc.d/fam restart  ,  it says it was done susefully
    The problem is that it dosnt refresh my desktop, i have to hit f5 every time if i want to see some changes in my folders
    Anyone knows what could be the problem?
    my rc.conf
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng dbus hal network alsa wicd netfs crond fam kdm)
    I have tried by changing the order, to background it,  but it dosnt work
    Any log i could check for fam behavior??
    Thanks for any help
    cheers

    Well, thanks for the replies, i have removed FAM from the daemons list (i used opnbox+thunar fow a while so i guess i was used to fam)
    and i reboteed,  but i still have the same problem, how do i know if inotify is working on my system??
    I have everything default, base instalation + kdemod
    If i download something to desktop, the file appears in the desktop,   but not in konqueror (if i have already konqueror open)
    Sorry about my english, ill add a screenshot so you can see what im talking about
    After i took the screen whit scrot, i had to hit F5 to get the .png show in my home folder : s

  • IMAP and FAM problems

    I have been looking through /var/log/maillog and the following entries appear for every time that somebody connects to the server:
    Apr 4 15:23:26 monster imapd: Failed to create cache file: maildirwatch (cconover)
    Apr 4 15:23:26 monster imapd: Error: Input/output error
    Apr 4 15:23:26 monster imapd: Check for proper operation and configuration
    Apr 4 15:23:26 monster imapd: of the File Access Monitor daemon (famd).
    I'm not exactly sure what the courier-famd interface breakdown is.  I haven't been noticing any problems with connecting to the server, but I can't imagine that this error is healthy.  Any suggestions?

    I was getting this too.
    You have to make sure that FAM and PORTMAP is running.
    Joe

  • Need to debug an occasional network freeze

    Since recently, I have been having a strange problem with my network connection.
    Setup:
    Desktop with a static IP and well qualified hostname. Here are some configs:
    ~> cat /etc/hosts
    127.0.0.1 arch.physics.indiana.edu localhost.localdomain localhost arch
    xxx.xx.xxx.xx arch.physics.indiana.edu arch
    ~> cat /etc/resolv.conf
    # /etc/resolv.conf
    nameserver 129.79.1.1
    nameserver 129.79.5.10
    search indiana.edu
    ~> cat /etc/rc.conf | grep -i -e hostname -e gateway -e eth0 -e daemons
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="arch"
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    eth0="eth0 xxx.xx.xxx.xx netmask 255.255.255.0 broadcast 129.79.159.255"
    INTERFACES=(eth0)
    gateway="default gw 129.79.159.254"
    ROUTES=(gateway)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    DAEMONS=(syslog-ng irqbalance hal microcode alsa iptables fcrond network sshd postfix ntpd cups smartd !fam)
    Problem:
    Occasionally (once per several weeks), the network connection freezes: I can't ping other hosts both on the LAN and internet, nor can I ping my box. This happens sporadically and gives no error in dmesg/everything.log. Restarting network helped so far.
    Currently, I have a cron job, which does /etc/rc.d/network restart, when pings of several hosts fail, but I would like to be able to debug this somehow.
    Does anyone have an advice what I should look at, when the above problem occurs again?
    TIA
    Last edited by Leonid.I (2010-12-16 21:58:25)

    Run ifconfig to make sure interface is up and see if there are any errors or collisions. Do arping to see if you can ping over ethernet. My guess is it's an issue with the driver.

  • How can i find out if udev works or devfs is still used

    Hello!
    I'm interrested in running udev instead of devfs, so i used the udev howto from the wiki to change to udev. Now there were no error messages, but how do i know udev is running? /dev/ still seems to look like it looked with /devfs. And ArchLinux bootscreen shows still " Starting devfs deamon ..... [done]".
    My lilo.conf looks like this so devfs should be deactivated, or not?
    # /etc/lilo.conf
    boot=/dev/discs/disc0/disc append="devfs=nomount"
    # This line often fixes L40 errors on bootup
    # disk=/dev/discs/disc0/disc bios=0x80
    bitmap=/boot/arch-lilo.bmp
    bmp-colors=1,0,8,3,8,1
    bmp-table=185p,140p,1,18
    bmp-timer=400p,345p,3,8,1
    vga=791
    default=WindowsXP
    timeout=300
    lba32
    prompt
    #image=/boot/vmlinuz26
    # label=failsave
    # root=/dev/discs/disc0/part5
    # read-only
    image=/boot/vmlinuz267bs
    label=ArchLinux
    root=/dev/discs/disc0/part5
    append="video=vesafb:ywrap,mtrr splash=silent"
    initrd=/boot/initrd.splash
    read-only
    other=/dev/discs/disc0/part1
    label=WindowsXP
    # End of file
    CU ActionNews

    Hmm .... this might be the problem: rc.sysinit seems to be a bootsplash-modified version:
    #!/bin/sh
    # /etc/rc.sysinit
    . /etc/rc.conf
    . /etc/rc.d/functions
    echo " "
    printhl "Arch Linux v0.6 $C_OTHER(${C_H2}Widget$C_OTHER)n"
    printhl "${C_H2}http://www.archlinux.org"
    printhl "Copyright 2002-2004 Judd Vinet"
    printhl "Distributed under the GNU General Public License (GPL)"
    printsep
    # start up our mini logger until syslog takes over
    /sbin/minilogd
    # get ready for bootsplash
    /bin/mount -n -t proc none /proc
    if grep -qs silent /proc/splash; then
    BOOTSPLASH_NUMBER=$((`echo ${DAEMONS[@]} | sed 's/![^ t]*//g' | wc -w` +
    `cat /etc/rc.{sysinit,multi,local} | grep -c -e status -e stat_busy`))
    BOOTSPLASH_DELTA=$((60000 / $BOOTSPLASH_NUMBER))
    BOOTSPLASH_PROGRESS=$((65535 - $BOOTSPLASH_NUMBER * $BOOTSPLASH_DELTA))
    [ -w /proc/splash ] && echo "show $BOOTSPLASH_PROGRESS" > /proc/splash
    fi
    # anything more serious than KERN_WARNING goes to the console
    /bin/dmesg -n 3
    if [ -e /dev/.devfsd -a -x /sbin/devfsd ]; then
    status "Starting DevFS Daemon" /sbin/devfsd /dev
    fi
    if [ "$USELVM" = "yes" -o "$USELVM" = "YES" ]; then
    if [ -f /etc/lvmtab -a -x /sbin/vgchange ]; then
    # Kernel 2.4.x, LVM1 groups
    stat_busy "Activating LVM1 groups"
    /sbin/vgchange -a y
    stat_done
    elif [ -x /sbin/lvm ]; then
    # Kernel 2.6.x, LVM2 groups
    /bin/mount -n -t sysfs none /sys
    stat_busy "Activating LVM2 groups"
    /sbin/lvm vgchange --ignorelockingfailure -a y
    stat_done
    umount /sys
    fi
    fi
    status "Activating Swap" /sbin/swapon -a
    status "Mounting Root Read-only" /bin/mount -n -o remount,ro /
    if [ -x /sbin/fsck ]; then
    stat_busy "Checking Filesystems"
    /sbin/fsck -A -T -C -a
    if [ $? -gt 1 ]; then
    stat_fail
    echo
    echo "***************** FILESYSTEM CHECK FAILED ****************"
    echo "* *"
    echo "* Please repair manually and reboot. Note that the root *"
    echo "* file system is currently mounted read-only. To remount *"
    echo "* it read-write type: mount -n -o remount,rw / *"
    echo "* When you exit the maintenance shell the system will *"
    echo "* reboot automatically. *"
    echo "* *"
    echo "************************************************************"
    echo
    /sbin/sulogin -p
    echo "Automatic reboot in progress..."
    /bin/umount -a
    /bin/mount -n -o remount,ro /
    /sbin/reboot -f
    exit 0
    fi
    stat_done
    fi
    stat_busy "Mounting Local Filesystems"
    /bin/umount /proc
    /bin/mount -n -o remount,rw /
    /bin/rm -f /etc/mtab*
    /bin/mount /proc
    /bin/mount -a -t nonfs,nosmbfs,noncpfs
    stat_done
    stat_busy "Configuring System Clock"
    if [ "$HARDWARECLOCK" = "UTC" ]; then
    /sbin/hwclock --utc --hctosys
    else
    /sbin/hwclock --localtime --hctosys
    fi
    if [ ! -f /var/lib/hwclock/adjtime ]; then
    echo "0.0 0 0.0" > /var/lib/hwclock/adjtime
    fi
    if [ "$TIMEZONE" != "" ]; then
    /bin/ln -sf /usr/share/zoneinfo/$TIMEZONE /etc/localtime
    fi
    stat_done
    stat_busy "Removing Leftover Files"
    /bin/rm -f /etc/nologin &> /dev/null
    /bin/rm -f /etc/shutdownpid &> /dev/null
    /bin/rm -f /var/locks/* &> /dev/null
    /bin/rm -f /var/run/*.pid &> /dev/null
    /bin/rm -f /var/run/daemons/* &>/dev/null
    /bin/rm -rf /tmp/* /tmp/.* &> /dev/null
    : > /var/run/utmp
    stat_done
    status "Updating Shared Library Links" /sbin/ldconfig
    if [ "$HOSTNAME" != "" ]; then
    status "Setting Hostname: $HOSTNAME" /bin/hostname $HOSTNAME
    fi
    kernel_version=`uname -r`
    if [ -e "/lib/modules/$kernel_version/modules.dep" ]; then
    new_mods=`/usr/bin/find /lib/modules/$kernel_version -type f -newer /lib/modules/$kernel_version/modules.dep`
    if [ ! -z "$new_mods" ]; then
    status "Updating Module Dependencies" /sbin/depmod -a
    fi
    else
    status "Updating Module Dependencies" /sbin/depmod -a
    fi
    if [ -f /var/run/random-seed ]; then
    stat_busy "Initializing Random Seed"
    /bin/cat /var/run/random-seed >/dev/urandom
    stat_done
    fi
    if [ "$KEYMAP" != "" ]; then
    status "Loading Keyboard Map: $KEYMAP" /bin/loadkeys -q $KEYMAP
    fi
    if [ "$CONSOLEFONT" != "" ]; then
    stat_busy "Loading Console Font: $CONSOLEFONT"
    for i in `seq 1 12`; do
    /usr/bin/setfont $CONSOLEFONT -C /dev/vc/${i};
    done
    stat_done
    fi
    # Load modules from the MODULES array defined in rc.conf
    stat_busy "Loading Modules"
    for mod in "${MODULES[@]}"; do
    if [[ `echo $mod | grep '^[^!]' | wc -l` -eq 1 ]]; then
    /sbin/modprobe $mod
    fi
    done
    stat_done
    # Screen blanks after 15 minutes idle time
    /usr/bin/setterm -blank 15
    # set things up for bootsplash in rc.multi
    if [ "$BOOTSPLASH_NUMBER" -a "$BOOTSPLASH_PROGRESS" ]; then
    let "BOOTSPLASH_NUMBER -= `grep -c -e status -e stat_busy /etc/rc.sysinit`"
    BOOTSPLASH_DELTA=$(((65535 - $BOOTSPLASH_PROGRESS) / $BOOTSPLASH_NUMBER))
    BOOTSPLASH_PROGRESS=$((65535 - $BOOTSPLASH_NUMBER * $BOOTSPLASH_DELTA))
    [ -w /proc/splash ] && echo "show $BOOTSPLASH_PROGRESS" > /proc/splash
    echo "export BOOTSPLASH_PROGRESS=$BOOTSPLASH_PROGRESS" > /tmp/bootsplash_env
    echo "export BOOTSPLASH_DELTA=$BOOTSPLASH_DELTA" >> /tmp/bootsplash_env
    fi
    # End of file
    Well then i'll stick with devfs. It works.
    CU ActionNews

  • Match-Frame with merged clip doesn't work

    I have a merged clip forged from one video clip (with four channels of audio) and two audio clips, so the resulting merged clip has six channels of audio.
    Merged via in-point, everything's in synch, fine.
    Edit the merged clip into timeline.
    Match frame.
    Problem:
    It matches to a clip with the same name as my merged clip... but it's not my merged clip because it's only got the four audio channels from my video source clip.
    I've tried different clips, tried linked or unlinked, same result.
    To boot, if in the timeline I select only audio channel #5 (which was from one of the audio source clips) and match-frame, it matches to the same pseduo-master clip, but, is several frames or seconds off.
    Ideas anyone?
    thanks!

    Interesting... if I make a merged clip and name it "Apple" then place it in the timeline, the timeline clip is also named Apple. If I then in the browser change the clip's name to "Brother" and put it again in the timeline, it puts in a clip called "Apple"; and the first clip in the timeline is also still called Apple. But if I delete the Apple clips from timeline, and now put in Brother clip, it puts in a clip called Brother..... as if it's not updating the name-change. So that's weird.
    But, none of the name-changing affects the match-fame problem; it still fails.

  • Match Frame - Found it

    Found it. Shift F.

    Interesting... if I make a merged clip and name it "Apple" then place it in the timeline, the timeline clip is also named Apple. If I then in the browser change the clip's name to "Brother" and put it again in the timeline, it puts in a clip called "Apple"; and the first clip in the timeline is also still called Apple. But if I delete the Apple clips from timeline, and now put in Brother clip, it puts in a clip called Brother..... as if it's not updating the name-change. So that's weird.
    But, none of the name-changing affects the match-fame problem; it still fails.

  • FAM 8.0, Tomcat J2EE agent installation problem

    Hello:
    I was able to install FAM 8.0 in Tomcat 6.0.14 on Ubuntu (7.04) Linux. Everything seems fine. In the end, the applications I want to use with OpenSSO also make use of Tomcat 6.0.14. I noticed on the opensso users email list that the Tomcat 3.0 agent won't be available until early next year; but that the 2.2 agents should work with FAM 8.0. So, I got the the J2EE agent for Tomcat - SJS_Tomcat_Server_55_agent_2.2-01.tar.gz. The documentation makes no references to Tomcat 6, and I'm hoping this is due to the fact that Tomcat 6 was not available when the documentation was written.
    Does this agent work with Tomcat 6? I have this problem when installing the agent (agentadmin --install):
    $CATALINA_HOME environment variable is the root of the tomcat
    installation.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the $CATALINA_HOME environment variable: /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14
    Invalid directory specified for the $CATALINA_HOME environment variable
    Invalid CATALINA_HOME directory :
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14I can see in debug/agentadmin.log the following:
    [05/24/2008 13:06:37:684 PDT] FileSystemValidator : Is directory : /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14 valid ? true
    [05/24/2008 13:06:37:686 PDT] HomeDirValidator : Is $CATALINA_HOME directory /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14 valid ? false
    [05/24/2008 13:06:37:686 PDT] Invalid CATALINA_HOME directory : /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14This directory does indeed exist, and is accessible by the user I'm logged in as. It appears FileSystemValidator agrees with me, but HomeDirValidator has a problem. I tried this on both Ubuntu 6.04 and Mac OS X 10.5.2. Does this indicate that Tomcat 6 is not supported? Or is it indicative that neither OS on which I've tried to install the agent is officially supported?
    Thanks!
    Jeff

    Hi Denis:
    Before being redirected to another short term task, I did indeed get the Tomcat 6 agent to work. I probably won't be able to look at OpenSSO again seriously for another couple of months. :(
    I have the OpenSSO server running on Tomcat 6.0.14 on Ubuntu 6.x Linux running in a virtual machine on my Mac. I was not able to get the server to run directly on the Mac, and I cannot remember the reason at this time.
    But, as far as the agent goes, I run it again using Tomcat 6.0.14 on my Mac (Mac OS X 10.5.2), using the 1.5 JRE. I do have the agentapp war deployed as well as the agentsample web application to play with. In my catalina.out file:
    Jun 18, 2008 10:07:20 AM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.14
    Jun 18, 2008 10:07:20 AM org.apache.catalina.startup.HostConfig deployWAR
    INFO: Deploying web application archive agentapp.war
    Jun 18, 2008 10:07:21 AM org.apache.catalina.startup.HostConfig deployWAR
    INFO: Deploying web application archive agentsample.war
    Jun 18, 2008 10:07:22 AM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-8090
    Jun 18, 2008 10:07:22 AM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8011
    Jun 18, 2008 10:07:22 AM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/16  config=nullI have no error messages is any Tomcat log file.
    I checked out the source code for the Tomcat v6 agent (2.2) on May 27, so I don't know how that compares to yours or what's been checked into CVS since my build. I also don't know what the OpenSSO NamingService is.
    I assume you used fully qualified domain names to specify the web application to be protected by agent as well as the OpenSSO server itself. The following is the output of the conversation when I run the agent installer script on my system. It has been redacted a bit (domain name and encryption key) to protect my client, but otherwise this is what I supplied to the installer:
    Enter the complete path to the directory which is used by Tomcat Server to
    store its configuration Files. This directory uniquely identifies the
    Tomcat Server instance that is secured by this Agent.
    [ ? : Help, ! : Exit ]
    Enter the Tomcat Server Config Directory Path
    [/opt/apache-tomcat-6.0.14/conf]: /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14/conf
    Enter the fully qualified host name of the server where Access Manager
    Services are installed.
    [ ? : Help, < : Back, ! : Exit ]
    Access Manager Services Host: login.opensso.example.com
    Enter the port number of the Server that runs Access Manager Services.
    [ ? : Help, < : Back, ! : Exit ]
    Access Manager Services port [80]: 8080
    Enter http/https to specify the protocol used by the Server that runs Access
    Manager services.
    [ ? : Help, < : Back, ! : Exit ]
    Access Manager Services Protocol [http]:
    Enter the Deployment URI for Access Manager Services.
    [ ? : Help, < : Back, ! : Exit ]
    Access Manager Services Deployment URI [/amserver]: /opensso
    Enter the fully qualified host name on which the Application Server
    protected by the agent is installed.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the Agent Host name: analysis.opensso.example.com
    $CATALINA_HOME environment variable is the root of the tomcat
    installation.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the $CATALINA_HOME environment variable: /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14
    Choose yes to deploy the policy agent in the global web.xml file.
    [ ? : Help, < : Back, ! : Exit ]
    Install agent filter in global web.xml ? [true]:
    Enter the preferred port number on which the application server provides its
    services.                          
    [ ? : Help, < : Back, ! : Exit ]
    Enter the port number for Application Server instance [80]: 8090
    Select http or https to specify the protocol used by the Application server
    instance that will be protected by Access Manager Policy Agent.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the Preferred Protocol for Application Server instance [http]:
    Enter the deployment URI for the Agent Application. This Application is used
    by the agent for internal housekeeping.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the Deployment URI for the Agent Application [/agentapp]:
    Enter a valid Encryption Key.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the Encryption Key [XXmyencryptionkeyXX]:
    Enter a valid Agent profile name. Before proceeding with the agent
    installation, please ensure that a valid Agent profile exists in Access
    Manager.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the Agent Profile name: testagent1
    Enter the path to a file that contains the password to be used for identifying
    the Agent.
    [ ? : Help, < : Back, ! : Exit ]
    Enter the path to the password file: /Users/jas/Development/opensso/tryout/agent_password
    SUMMARY OF YOUR RESPONSES
    Tomcat Server Config Directory :
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14/conf
    Access Manager Services Host : login.opensso.example.com
    Access Manager Services Port : 8080
    Access Manager Services Protocol : http
    Access Manager Services Deployment URI : /opensso
    Agent Host name : analysis.opensso.example.com
    $CATALINA_HOME environment variable :
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14
    Tomcat global web.xml filter install : true
    Application Server Instance Port number : 8090
    Protocol for Application Server instance : http
    Deployment URI for the Agent Application : /agentapp
    Encryption Key : XXmyencryptionkeyXX
    Agent Profile name : testagent1
    Agent Profile Password file name :
    /Users/jas/Development/opensso/tryout/agent_password
    Verify your settings above and decide from the choices below.
    1. Continue with Installation
    2. Back to the last interaction
    3. Start Over
    4. Exit
    Please make your selection [1]: 1
    Updating the
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14/bin/setclasspath.sh
    script with the Agent classpath ...DONE.
    Creating directory layout and configuring Agent file for Agent_001
    instance ...DONE.
    Reading data from file
    /Users/jas/Development/opensso/tryout/agent_password and encrypting
    it ...DONE.
    Generating audit log file name ...DONE.
    Creating tag swapped AMAgent.properties file for instance Agent_001 ...DONE.
    Creating a backup for file
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14/conf/server.xml
    ...DONE.
    Creating a backup for file
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14/conf/web.xml
    ...DONE.
    Adding SJS Tomcat Agent Realm to Server XML file :
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14/conf/server.xml
    ...DONE.
    Adding filter to Global deployment descriptor file :
    /Users/jas/Development/opensso/tryout/apache-tomcat-6.0.14/conf/web.xml
    ...DONE.
    Adding SJS Tomcat Agent Filter and Form login authentication to selected Web
    applications ...DONE.
    SUMMARY OF AGENT INSTALLATION
    Agent instance name: Agent_001
    Agent Configuration file location:
    /Users/jas/Development/opensso/tryout/tomcat_v6_agent/Agent_001/config/AMAgent.properties
    Agent Audit directory location:
    /Users/jas/Development/opensso/tryout/tomcat_v6_agent/Agent_001/logs/audit
    Agent Debug directory location:
    /Users/jas/Development/opensso/tryout/tomcat_v6_agent/Agent_001/logs/debug
    Install log file location:
    /Users/jas/Development/opensso/tryout/tomcat_v6_agent/logs/audit/install.log
    Thank you for using Access Manager Policy Agent
    [jaslap:tryout/tomcat_v6_agent/bin] jas% Can you post the exception details you're getting. That might help someone diagnose the problem.
    Take it easy,
    Jeff

  • Problem with FAM

    Hi all,
    My FAM daemon doesn't seem to work properly.  Everytime I reboot it seems to be fine at startup (I see the [DONE] message), but when I shutdown it gives an [ERROR] symbol.
    So, I decided to stop and start it manually to see what was going on.  I went to /etc/rc.d and ran "fam restart". I get:
    :: Stopping File Alteration Monitor [FAIL]
    :: Starting File Alteration Monitor [DONE]
    It seems that when I start it, it shows that it's successful, but in /var/log/daemon.log it shows:
    Apr 25 11:29:25 nazgul famd[5508]: can't register with portmapper.
    (note: 'nazgul' is my hostname)
    Does anyone know anything about the portmapper and how to set it up?
    Thanks in advance!

    Ok this is a little embarressing but I solved it  :oops:
    It turns out that I need to have the network rc.d script running too.  I recompiled my kernel with network built in, but this script requires that I have it as a module it seems.
    so, in /etc/rc.d/ I ran:
    ./network restart
    ./portmap restart
    ./fam restart
    and all went well ...

  • Read only filesystem problem

    Hi,
    I have a strange problem. After some time of running archlinux the root filesystem suddenly becomes read-only. It happened 3 times yet. I'm using LVM and the root volume is /dev/mapper/VG0-archlinux2 and filesystem type is reiserfs.
    If i tried to remount it read-write using command
    mount -o remount,rw /
    i got this:
    sudo: unable to open /var/db/sudo/uiii/3: Read-only file system
    mount: /dev/mapper/VG0-archlinux2: can't read superblock
    Only reboot helps.
    my machine is (uname -a):
    Linux uiii-arch 3.5.4-1-ARCH #1 SMP PREEMPT Sat Sep 15 08:12:04 CEST 2012 x86_64 GNU/Linux
    /etc/mtab (when problem occured):
    rootfs / rootfs rw 0 0
    proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
    sys /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
    dev /dev devtmpfs rw,nosuid,relatime,size=1990100k,nr_inodes=497525,mode=755 0 0
    run /run tmpfs rw,nosuid,nodev,relatime,mode=755 0 0
    /dev/mapper/VG0-archlinux2 / reiserfs ro,relatime 0 0
    devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
    shm /dev/shm tmpfs rw,nosuid,nodev,relatime 0 0
    tmpfs /tmp tmpfs rw,nosuid,nodev,relatime 0 0
    /dev/sda1 /boot ext2 rw,relatime 0 0
    /dev/mapper/VG0-uloziste /mnt/uloziste ext4 rw,relatime,data=ordered 0 0
    binfmt /proc/sys/fs/binfmt_misc binfmt_misc rw,relatime 0 0
    gvfs-fuse-daemon /home/uiii/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=1000,group_id=100 0 0
    dmesg output is this:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.5.4-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Sep 15 08:12:04 CEST 2012
    [ 0.000000] Command line: root=/dev/mapper/VG0-archlinux2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfedffff] usable
    [ 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 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. GA-MA790X-UD4/GA-MA790X-UD4, BIOS F3 06/03/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 = 0x130000 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 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000C0000000 mask FFFFF0000000 write-back
    [ 0.000000] 3 base 0000CFF00000 mask FFFFFFF00000 uncachable
    [ 0.000000] 4 base 000100000000 mask FFFFE0000000 write-back
    [ 0.000000] 5 base 000120000000 mask FFFFF0000000 write-back
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 0000000130000000 aka 4864M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xcff00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f5600-0x000f560f] mapped at [ffff8800000f5600]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xcfedffff]
    [ 0.000000] [mem 0x00000000-0xbfffffff] page 1G
    [ 0.000000] [mem 0xc0000000-0xcfdfffff] page 2M
    [ 0.000000] [mem 0xcfe00000-0xcfedffff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xcfedffff @ [mem 0x1f9fd000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x12fffffff]
    [ 0.000000] [mem 0x100000000-0x12fffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x12fffffff @ [mem 0xcfede000-0xcfedffff]
    [ 0.000000] RAMDISK: [mem 0x7fc62000-0x7fffefff]
    [ 0.000000] ACPI: RSDP 00000000000f7010 00014 (v00 GBT )
    [ 0.000000] ACPI: RSDT 00000000cfee3000 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: FACP 00000000cfee3040 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: DSDT 00000000cfee30c0 05980 (v01 GBT GBTUACPI 00001000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 00000000cfee0000 00040
    [ 0.000000] ACPI: SSDT 00000000cfee8b00 008F5 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    [ 0.000000] ACPI: HPET 00000000cfee9400 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    [ 0.000000] ACPI: MCFG 00000000cfee9440 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: TAMG 00000000cfee9480 0030A (v01 GBT GBT B0 5455312E BG?? 53450101)
    [ 0.000000] ACPI: APIC 00000000cfee8a40 00084 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] Scanning NUMA topology in Northbridge 24
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000012fffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x12fffffff]
    [ 0.000000] NODE_DATA [mem 0x12fffc000-0x12fffffff]
    [ 0.000000] [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff88012b600000-ffff88012f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x12fffffff]
    [ 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-0xcfedffff]
    [ 0.000000] node 0: [mem 0x100000000-0x12fffffff]
    [ 0.000000] On node 0 totalpages: 1048175
    [ 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: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 831264 pages, LIFO batch:31
    [ 0.000000] Normal zone: 3072 pages used for memmap
    [ 0.000000] Normal zone: 193536 pages, LIFO batch:31
    [ 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] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 1 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000cfee0000 - 00000000cfee3000
    [ 0.000000] PM: Registered nosave memory: 00000000cfee3000 - 00000000cfef0000
    [ 0.000000] PM: Registered nosave memory: 00000000cfef0000 - 00000000cff00000
    [ 0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    [ 0.000000] e820: [mem 0xcff00000-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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88012fc00000 s83392 r8192 d23104 u524288
    [ 0.000000] pcpu-alloc: s83392 r8192 d23104 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1028713
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/mapper/VG0-archlinux2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ c4000000 size 32 MB
    [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
    [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    [ 0.000000] Please enable the IOMMU option in the BIOS setup
    [ 0.000000] This costs you 64 MB of RAM
    [ 0.000000] Mapping aperture over 65536 KB of RAM @ c4000000
    [ 0.000000] PM: Registered nosave memory: 00000000c4000000 - 00000000c8000000
    [ 0.000000] Memory: 3980204k/4980736k available (4645k kernel code, 788036k absent, 212496k reserved, 4207k data, 760k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 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.003333] Fast TSC calibration using PIT
    [ 0.006666] Detected 2813.035 MHz processor.
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5628.48 BogoMIPS (lpj=9376783)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000027] Security Framework initialized
    [ 0.000031] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000260] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001554] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.002140] Mount-cache hash table entries: 256
    [ 0.002315] Initializing cgroup subsys cpuacct
    [ 0.002317] Initializing cgroup subsys memory
    [ 0.002326] Initializing cgroup subsys devices
    [ 0.002327] Initializing cgroup subsys freezer
    [ 0.002328] Initializing cgroup subsys net_cls
    [ 0.002330] Initializing cgroup subsys blkio
    [ 0.002349] tseg: 00cff00000
    [ 0.002351] CPU: Physical Processor ID: 0
    [ 0.002352] CPU: Processor Core ID: 0
    [ 0.002353] mce: CPU supports 6 MCE banks
    [ 0.002358] LVT offset 0 assigned for vector 0xf9
    [ 0.002362] using AMD E400 aware idle routine
    [ 0.002998] ACPI: Core revision 20120320
    [ 0.019730] ftrace: allocating 17970 entries in 71 pages
    [ 0.027072] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.060076] CPU0: AMD Phenom(tm) II X3 720 Processor stepping 02
    [ 0.165799] Performance Events: AMD PMU driver.
    [ 0.165802] ... version: 0
    [ 0.165803] ... bit width: 48
    [ 0.165803] ... generic registers: 4
    [ 0.165804] ... value mask: 0000ffffffffffff
    [ 0.165805] ... max period: 00007fffffffffff
    [ 0.165806] ... fixed-purpose events: 0
    [ 0.165807] ... event mask: 000000000000000f
    [ 0.185858] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.199154] Booting Node 0, Processors #1 #2
    [ 0.235675] Brought up 3 CPUs
    [ 0.235679] Total of 3 processors activated (16884.46 BogoMIPS).
    [ 0.239344] devtmpfs: initialized
    [ 0.240745] PM: Registering ACPI NVS region [mem 0xcfee0000-0xcfee2fff] (12288 bytes)
    [ 0.241490] NET: Registered protocol family 16
    [ 0.241574] node 0 link 0: io port [c000, ffff]
    [ 0.241576] TOM: 00000000d0000000 aka 3328M
    [ 0.241578] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
    [ 0.241580] node 0 link 0: mmio [a0000, bffff]
    [ 0.241582] node 0 link 0: mmio [d0000000, dfffffff]
    [ 0.241584] node 0 link 0: mmio [f0000000, fe02ffff]
    [ 0.241586] node 0 link 0: mmio [e0000000, e03fffff] ==> [e0100000, e03fffff]
    [ 0.241588] TOM2: 0000000130000000 aka 4864M
    [ 0.241589] bus: [00, 03] on node 0 link 0
    [ 0.241590] bus: 00 [io 0x0000-0xffff]
    [ 0.241591] bus: 00 [mem 0x000a0000-0x000bffff]
    [ 0.241592] bus: 00 [mem 0xd0000000-0xdfffffff]
    [ 0.241593] bus: 00 [mem 0xe0400000-0xffffffff]
    [ 0.241594] bus: 00 [mem 0xe0100000-0xe03fffff]
    [ 0.241595] bus: 00 [mem 0x130000000-0xfcffffffff]
    [ 0.241649] ACPI: bus type pci registered
    [ 0.241696] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.241698] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.252350] PCI: Using configuration type 1 for base access
    [ 0.252819] bio: create slab <bio-0> at 0
    [ 0.252870] ACPI: Added _OSI(Module Device)
    [ 0.252871] ACPI: Added _OSI(Processor Device)
    [ 0.252872] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.252873] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.253366] ACPI: EC: Look up EC in DSDT
    [ 0.258796] ACPI: Interpreter enabled
    [ 0.258802] ACPI: (supports S0 S3 S4 S5)
    [ 0.258819] ACPI: Using IOAPIC for interrupt routing
    [ 0.261632] ACPI: No dock devices found.
    [ 0.261636] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.261677] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.261731] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.261733] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.261735] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.261737] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.261738] pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xfebfffff]
    [ 0.261768] PCI host bridge to bus 0000:00
    [ 0.261770] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.261772] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.261773] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.261775] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.261777] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff]
    [ 0.261786] pci 0000:00:00.0: [1002:5958] type 00 class 0x060000
    [ 0.261797] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
    [ 0.261830] pci 0000:00:02.0: [1002:5978] type 01 class 0x060400
    [ 0.261858] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.261878] pci 0000:00:0a.0: [1002:597f] type 01 class 0x060400
    [ 0.261906] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.261931] pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    [ 0.261949] pci 0000:00:11.0: reg 10: [io 0xff00-0xff07]
    [ 0.261958] pci 0000:00:11.0: reg 14: [io 0xfe00-0xfe03]
    [ 0.261967] pci 0000:00:11.0: reg 18: [io 0xfd00-0xfd07]
    [ 0.261976] pci 0000:00:11.0: reg 1c: [io 0xfc00-0xfc03]
    [ 0.261985] pci 0000:00:11.0: reg 20: [io 0xfb00-0xfb0f]
    [ 0.261994] pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
    [ 0.262013] pci 0000:00:11.0: set SATA to AHCI mode
    [ 0.262058] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.262070] pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
    [ 0.262132] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
    [ 0.262145] pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
    [ 0.262212] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.262230] pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
    [ 0.262309] pci 0000:00:12.2: supports D1 D2
    [ 0.262311] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.262334] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.262346] pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
    [ 0.262408] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
    [ 0.262421] pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
    [ 0.262493] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.262511] pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
    [ 0.262590] pci 0000:00:13.2: supports D1 D2
    [ 0.262591] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.262616] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.262711] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    [ 0.262726] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    [ 0.262735] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    [ 0.262744] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    [ 0.262753] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    [ 0.262762] pci 0000:00:14.1: reg 20: [io 0xfa00-0xfa0f]
    [ 0.262817] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.262837] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
    [ 0.262901] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.262915] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.262987] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.263028] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.263041] pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
    [ 0.263105] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    [ 0.263119] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    [ 0.263130] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    [ 0.263141] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    [ 0.263155] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    [ 0.263201] pci 0000:01:00.0: [10de:05e2] type 00 class 0x030000
    [ 0.263210] pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
    [ 0.263219] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.263229] pci 0000:01:00.0: reg 1c: [mem 0xf8000000-0xf9ffffff 64bit]
    [ 0.263235] pci 0000:01:00.0: reg 24: [io 0xef00-0xef7f]
    [ 0.263242] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
    [ 0.269149] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.269155] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.269157] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.269161] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.269200] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.269213] pci 0000:02:00.0: reg 10: [io 0xde00-0xdeff]
    [ 0.269232] pci 0000:02:00.0: reg 18: [mem 0xfdfff000-0xfdffffff 64bit pref]
    [ 0.269245] pci 0000:02:00.0: reg 20: [mem 0xfdfe0000-0xfdfeffff 64bit pref]
    [ 0.269253] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.269300] pci 0000:02:00.0: supports D1 D2
    [ 0.269301] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.275814] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.275820] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.275822] pci 0000:00:0a.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.275825] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.275865] pci 0000:03:07.0: [168c:001a] type 00 class 0x020000
    [ 0.275887] pci 0000:03:07.0: reg 10: [mem 0xfdee0000-0xfdeeffff]
    [ 0.276014] pci 0000:03:0e.0: [104c:8024] type 00 class 0x0c0010
    [ 0.276035] pci 0000:03:0e.0: reg 10: [mem 0xfdeff000-0xfdeff7ff]
    [ 0.276047] pci 0000:03:0e.0: reg 14: [mem 0xfdef8000-0xfdefbfff]
    [ 0.276136] pci 0000:03:0e.0: supports D1 D2
    [ 0.276138] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
    [ 0.276174] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.276177] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.276181] pci 0000:00:14.4: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.276185] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff pref]
    [ 0.276186] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.276188] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.276190] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.276191] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.276193] pci 0000:00:14.4: bridge window [mem 0xd0000000-0xfebfffff] (subtractive decode)
    [ 0.276205] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.276360] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.276399] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
    [ 0.276426] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
    [ 0.276447] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.276449] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.276450] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.282962] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.282993] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283022] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283049] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283077] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283104] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283131] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283158] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    [ 0.283250] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.283252] vgaarb: loaded
    [ 0.283253] vgaarb: bridge control possible 0000:01:00.0
    [ 0.283281] PCI: Using ACPI for IRQ routing
    [ 0.291632] PCI: pci_cache_line_size set to 64 bytes
    [ 0.291638] pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
    [ 0.291701] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    [ 0.291703] e820: reserve RAM buffer [mem 0xcfee0000-0xcfffffff]
    [ 0.291778] NetLabel: Initializing
    [ 0.291779] NetLabel: domain hash size = 128
    [ 0.291780] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.291789] NetLabel: unlabeled traffic allowed by default
    [ 0.291804] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.291807] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    [ 0.293841] Switching to clocksource hpet
    [ 0.298189] pnp: PnP ACPI init
    [ 0.298200] ACPI: bus type pnp registered
    [ 0.298257] pnp 00:00: [bus 00-ff]
    [ 0.298260] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.298262] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.298264] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.298265] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.298267] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.298268] pnp 00:00: [mem 0xd0000000-0xfebfffff window]
    [ 0.298295] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.298303] pnp 00:01: [io 0x0010-0x001f]
    [ 0.298304] pnp 00:01: [io 0x0022-0x003f]
    [ 0.298306] pnp 00:01: [io 0x0044-0x005f]
    [ 0.298307] pnp 00:01: [io 0x0062-0x0063]
    [ 0.298308] pnp 00:01: [io 0x0065-0x006f]
    [ 0.298310] pnp 00:01: [io 0x0074-0x007f]
    [ 0.298311] pnp 00:01: [io 0x0091-0x0093]
    [ 0.298312] pnp 00:01: [io 0x00a2-0x00bf]
    [ 0.298313] pnp 00:01: [io 0x00e0-0x00ef]
    [ 0.298315] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.298316] pnp 00:01: [io 0x0220-0x0225]
    [ 0.298317] pnp 00:01: [io 0x0290-0x0294]
    [ 0.298353] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.298355] system 00:01: [io 0x0220-0x0225] has been reserved
    [ 0.298356] system 00:01: [io 0x0290-0x0294] has been reserved
    [ 0.298359] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.298785] pnp 00:02: [io 0x4100-0x411f]
    [ 0.298789] pnp 00:02: [io 0x0228-0x022f]
    [ 0.298791] pnp 00:02: [io 0x040b]
    [ 0.298792] pnp 00:02: [io 0x04d6]
    [ 0.298793] pnp 00:02: [io 0x0c00-0x0c01]
    [ 0.298794] pnp 00:02: [io 0x0c14]
    [ 0.298796] pnp 00:02: [io 0x0c50-0x0c52]
    [ 0.298797] pnp 00:02: [io 0x0c6c-0x0c6d]
    [ 0.298798] pnp 00:02: [io 0x0c6f]
    [ 0.298799] pnp 00:02: [io 0x0cd0-0x0cd1]
    [ 0.298801] pnp 00:02: [io 0x0cd2-0x0cd3]
    [ 0.298802] pnp 00:02: [io 0x0cd4-0x0cdf]
    [ 0.298803] pnp 00:02: [io 0x4000-0x40fe]
    [ 0.298804] pnp 00:02: [io 0x4210-0x4217]
    [ 0.298806] pnp 00:02: [io 0x0b00-0x0b0f]
    [ 0.298807] pnp 00:02: [io 0x0b10-0x0b1f]
    [ 0.298808] pnp 00:02: [io 0x0b20-0x0b3f]
    [ 0.298810] pnp 00:02: [mem 0x00000000-0x00000fff window]
    [ 0.298812] pnp 00:02: [mem 0xfee00400-0xfee00fff window]
    [ 0.298818] pnp 00:02: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.298844] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0007ffff pref]
    [ 0.298848] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
    [ 0.298885] system 00:02: [io 0x4100-0x411f] has been reserved
    [ 0.298887] system 00:02: [io 0x0228-0x022f] has been reserved
    [ 0.298889] system 00:02: [io 0x040b] has been reserved
    [ 0.298891] system 00:02: [io 0x04d6] has been reserved
    [ 0.298892] system 00:02: [io 0x0c00-0x0c01] has been reserved
    [ 0.298894] system 00:02: [io 0x0c14] has been reserved
    [ 0.298896] system 00:02: [io 0x0c50-0x0c52] has been reserved
    [ 0.298897] system 00:02: [io 0x0c6c-0x0c6d] has been reserved
    [ 0.298899] system 00:02: [io 0x0c6f] has been reserved
    [ 0.298900] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.298902] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.298904] system 00:02: [io 0x0cd4-0x0cdf] has been reserved
    [ 0.298905] system 00:02: [io 0x4000-0x40fe] has been reserved
    [ 0.298907] system 00:02: [io 0x4210-0x4217] has been reserved
    [ 0.298908] system 00:02: [io 0x0b00-0x0b0f] has been reserved
    [ 0.298910] system 00:02: [io 0x0b10-0x0b1f] has been reserved
    [ 0.298912] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    [ 0.298914] system 00:02: [mem 0xfee00400-0xfee00fff window] has been reserved
    [ 0.298917] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.298986] pnp 00:03: [dma 4]
    [ 0.298988] pnp 00:03: [io 0x0000-0x000f]
    [ 0.298989] pnp 00:03: [io 0x0080-0x0090]
    [ 0.298991] pnp 00:03: [io 0x0094-0x009f]
    [ 0.298992] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.299014] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.299038] pnp 00:04: [irq 0 disabled]
    [ 0.299049] pnp 00:04: [irq 8]
    [ 0.299051] pnp 00:04: [mem 0xfed00000-0xfed003ff]
    [ 0.299070] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.299088] pnp 00:05: [io 0x0070-0x0073]
    [ 0.299108] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.299114] pnp 00:06: [io 0x0061]
    [ 0.299134] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.299140] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.299147] pnp 00:07: [irq 13]
    [ 0.299167] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.299271] pnp 00:08: [io 0x03f0-0x03f5]
    [ 0.299272] pnp 00:08: [io 0x03f7]
    [ 0.299279] pnp 00:08: [irq 6]
    [ 0.299281] pnp 00:08: [dma 2]
    [ 0.299312] pnp 00:08: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.299438] pnp 00:09: [io 0x03f8-0x03ff]
    [ 0.299445] pnp 00:09: [irq 4]
    [ 0.299485] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.299507] pnp 00:0a: [io 0x0060]
    [ 0.299509] pnp 00:0a: [io 0x0064]
    [ 0.299516] pnp 00:0a: [irq 1]
    [ 0.299543] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.299562] pnp 00:0b: [mem 0xe0000000-0xefffffff]
    [ 0.299596] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.299598] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.299674] pnp 00:0c: [mem 0x000cda00-0x000cffff]
    [ 0.299675] pnp 00:0c: [mem 0x000f0000-0x000f7fff]
    [ 0.299677] pnp 00:0c: [mem 0x000f8000-0x000fbfff]
    [ 0.299678] pnp 00:0c: [mem 0x000fc000-0x000fffff]
    [ 0.299680] pnp 00:0c: [mem 0xcfee0000-0xcfefffff]
    [ 0.299681] pnp 00:0c: [mem 0xffff0000-0xffffffff]
    [ 0.299682] pnp 00:0c: [mem 0x00000000-0x0009ffff]
    [ 0.299684] pnp 00:0c: [mem 0x00100000-0xcfedffff]
    [ 0.299685] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
    [ 0.299687] pnp 00:0c: [mem 0xfee00000-0xfee00fff]
    [ 0.299688] pnp 00:0c: [mem 0xfff80000-0xfffeffff]
    [ 0.299692] pnp 00:0c: disabling [mem 0x000cda00-0x000cffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299694] pnp 00:0c: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299696] pnp 00:0c: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299698] pnp 00:0c: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299701] pnp 00:0c: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299703] pnp 00:0c: disabling [mem 0x00100000-0xcfedffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    [ 0.299745] system 00:0c: [mem 0xcfee0000-0xcfefffff] could not be reserved
    [ 0.299747] system 00:0c: [mem 0xffff0000-0xffffffff] has been reserved
    [ 0.299749] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.299750] system 00:0c: [mem 0xfee00000-0xfee00fff] could not be reserved
    [ 0.299752] system 00:0c: [mem 0xfff80000-0xfffeffff] has been reserved
    [ 0.299755] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.299768] pnp: PnP ACPI: found 13 devices
    [ 0.299769] ACPI: ACPI bus type pnp unregistered
    [ 0.306130] pci 0000:01:00.0: BAR 6: assigned [mem 0xfb000000-0xfb07ffff pref]
    [ 0.306133] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 0.306135] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.306138] pci 0000:00:02.0: bridge window [mem 0xf8000000-0xfbffffff]
    [ 0.306140] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.306144] pci 0000:02:00.0: BAR 6: assigned [mem 0xfdf00000-0xfdf0ffff pref]
    [ 0.306145] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.306147] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.306149] pci 0000:00:0a.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.306152] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.306155] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 0.306157] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.306162] pci 0000:00:14.4: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.306165] pci 0000:00:14.4: bridge window [mem 0xfdd00000-0xfddfffff pref]
    [ 0.306191] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.306193] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.306195] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.306197] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.306198] pci_bus 0000:00: resource 8 [mem 0xd0000000-0xfebfffff]
    [ 0.306200] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.306202] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfbffffff]
    [ 0.306203] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.306205] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    [ 0.306207] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
    [ 0.306209] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.306210] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.306212] pci_bus 0000:03: resource 1 [mem 0xfde00000-0xfdefffff]
    [ 0.306214] pci_bus 0000:03: resource 2 [mem 0xfdd00000-0xfddfffff pref]
    [ 0.306215] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.306217] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.306219] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.306220] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.306222] pci_bus 0000:03: resource 8 [mem 0xd0000000-0xfebfffff]
    [ 0.306249] NET: Registered protocol family 2
    [ 0.306336] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.307016] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.309549] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.309858] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.309859] TCP: reno registered
    [ 0.309868] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.309895] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.309974] NET: Registered protocol family 1
    [ 0.710572] pci 0000:01:00.0: Boot video device
    [ 0.710585] PCI: CLS 4 bytes, default 64
    [ 0.710637] Unpacking initramfs...
    [ 0.774193] Freeing initrd memory: 3700k freed
    [ 0.776235] PCI-DMA: Disabling AGP.
    [ 0.776306] PCI-DMA: aperture base @ c4000000 size 65536 KB
    [ 0.776307] PCI-DMA: using GART IOMMU.
    [ 0.776309] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    [ 0.779581] LVT offset 1 assigned for vector 0x400
    [ 0.779589] IBS: LVT offset 1 assigned
    [ 0.779613] perf: AMD IBS detected (0x0000001f)
    [ 0.779743] audit: initializing netlink socket (disabled)
    [ 0.779753] type=2000 audit(1348861535.663:1): initialized
    [ 0.789269] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.790783] VFS: Disk quotas dquot_6.5.2
    [ 0.790820] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.790894] msgmni has been set to 7909
    [ 0.791048] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.791075] io scheduler noop registered
    [ 0.791076] io scheduler deadline registered
    [ 0.791112] io scheduler cfq registered (default)
    [ 0.791228] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.791319] pcieport 0000:00:0a.0: irq 41 for MSI/MSI-X
    [ 0.791449] GHES: HEST is not enabled!
    [ 0.791503] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.812101] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.832955] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.833141] Linux agpgart interface v0.103
    [ 0.833180] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.833181] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.833304] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.833378] mousedev: PS/2 mouse device common for all mice
    [ 0.833425] rtc_cmos 00:05: RTC can wake from S4
    [ 0.833539] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.833571] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.833577] cpuidle: using governor ladder
    [ 0.833578] cpuidle: using governor menu
    [ 0.833689] drop_monitor: Initializing network drop monitor service
    [ 0.833749] TCP: cubic registered
    [ 0.833835] NET: Registered protocol family 10
    [ 0.833965] NET: Registered protocol family 17
    [ 0.833973] Key type dns_resolver registered
    [ 0.834070] PM: Hibernation image not present or could not be loaded.
    [ 0.834076] registered taskstats version 1
    [ 0.834539] rtc_cmos 00:05: setting system clock to 2012-09-28 19:45:35 UTC (1348861535)
    [ 0.835479] Freeing unused kernel memory: 760k freed
    [ 0.835631] Write protecting the kernel read-only data: 8192k
    [ 0.839453] Freeing unused kernel memory: 1488k freed
    [ 0.841313] Freeing unused kernel memory: 612k freed
    [ 0.848497] systemd-udevd[70]: starting version 189
    [ 0.851135] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.861403] Floppy drive(s): fd0 is 1.44M
    [ 0.868797] ACPI: bus type usb registered
    [ 0.868817] usbcore: registered new interface driver usbfs
    [ 0.868825] usbcore: registered new interface driver hub
    [ 0.868995] usbcore: registered new device driver usb
    [ 0.869288] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.869717] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 0.869754] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 0.869763] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.869785] QUIRK: Enable AMD PLL fix
    [ 0.869787] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
    [ 0.869799] ehci_hcd 0000:00:12.2: debug port 1
    [ 0.869827] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
    [ 0.871224] SCSI subsystem initialized
    [ 0.872843] libata version 3.00 loaded.
    [ 0.874245] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.877166] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.877278] hub 1-0:1.0: USB hub found
    [ 0.877281] hub 1-0:1.0: 6 ports detected
    [ 0.878035] FDC 0 is a post-1991 82077
    [ 0.878198] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 0.878204] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    [ 0.878211] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.878223] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
    [ 0.878238] ehci_hcd 0000:00:13.2: debug port 1
    [ 0.878264] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
    [ 0.887161] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.887266] hub 2-0:1.0: USB hub found
    [ 0.887269] hub 2-0:1.0: 6 ports detected
    [ 0.887719] ahci 0000:00:11.0: version 3.0
    [ 0.887841] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    [ 0.887844] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    [ 0.888332] scsi0 : ahci
    [ 0.888396] scsi1 : ahci
    [ 0.888447] scsi2 : ahci
    [ 0.888494] scsi3 : ahci
    [ 0.888576] ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
    [ 0.888578] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
    [ 0.888580] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
    [ 0.888583] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
    [ 0.888675] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.888681] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
    [ 0.888719] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
    [ 0.944618] hub 3-0:1.0: USB hub found
    [ 0.944624] hub 3-0:1.0: 3 ports detected
    [ 0.944916] ohci_hcd 0000:00:12.1: OHCI Host Controller
    [ 0.944922] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
    [ 0.944936] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
    [ 1.001279] hub 4-0:1.0: USB hub found
    [ 1.001285] hub 4-0:1.0: 3 ports detected
    [ 1.001404] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 1.001409] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
    [ 1.001435] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
    [ 1.057932] hub 5-0:1.0: USB hub found
    [ 1.057938] hub 5-0:1.0: 3 ports detected
    [ 1.058071] ohci_hcd 0000:00:13.1: OHCI Host Controller
    [ 1.058076] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
    [ 1.058089] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
    [ 1.114589] hub 6-0:1.0: USB hub found
    [ 1.114595] hub 6-0:1.0: 3 ports detected
    [ 1.114705] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 1.114710] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
    [ 1.114723] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
    [ 1.171271] hub 7-0:1.0: USB hub found
    [ 1.171277] hub 7-0:1.0: 2 ports detected
    [ 1.207184] ata3: SATA link down (SStatus 0 SControl 300)
    [ 1.207225] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.300449] usb 2-4: new high-speed USB device number 3 using ehci_hcd
    [ 1.373774] ata2: softreset failed (device not ready)
    [ 1.373843] ata2: applying PMP SRST workaround and retrying
    [ 1.373866] ata1: softreset failed (device not ready)
    [ 1.373934] ata1: applying PMP SRST workaround and retrying
    [ 1.425928] hub 2-4:1.0: USB hub found
    [ 1.426276] hub 2-4:1.0: 4 ports detected
    [ 1.540428] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.540459] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.541221] ata1.00: ATA-8: WDC WD3200AAKS-75L9A0, 01.03E01, max UDMA/133
    [ 1.541224] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.542034] ata1.00: configured for UDMA/133
    [ 1.542185] scsi 0:0:0:0: Direct-Access ATA WDC WD3200AAKS-7 01.0 PQ: 0 ANSI: 5
    [ 1.552905] ata2.00: ATAPI: LITE-ON DVDRW LH-20A1L, BL05, max UDMA/100
    [ 1.565919] ata2.00: configured for UDMA/100
    [ 1.567862] scsi 1:0:0:0: CD-ROM LITE-ON DVDRW LH-20A1L BL05 PQ: 0 ANSI: 5
    [ 1.570090] scsi4 : pata_atiixp
    [ 1.570937] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.570968] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.570970] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.570992] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.571032] scsi5 : pata_atiixp
    [ 1.571566] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
    [ 1.571568] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
    [ 1.574704] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.574707] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.574836] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.583928] sda: sda1 sda2 sda3 sda4
    [ 1.584257] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.677054] usb 5-3: new full-speed USB device number 2 using ohci_hcd
    [ 1.780379] Refined TSC clocksource calibration: 2812.808 MHz.
    [ 1.780391] Switching to clocksource tsc
    [ 1.850813] usbcore: registered new interface driver usbhid
    [ 1.850814] usbhid: USB HID core driver
    [ 1.851297] input: HID 1d57:0005 as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.0/input/input1
    [ 1.851380] hid-generic 0003:1D57:0005.0001: input,hidraw0: USB HID v1.10 Mouse [HID 1d57:0005] on usb-0000:00:13.0-3/input0
    [ 1.914434] usb 2-4.4: new high-speed USB device number 4 using ehci_hcd
    [ 1.925431] device-mapper: uevent: version 1.0.3
    [ 1.925535] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: [email protected]
    [ 2.294145] REISERFS (device dm-3): found reiserfs format "3.6" with standard journal
    [ 2.294160] REISERFS (device dm-3): using ordered data mode
    [ 2.294161] reiserfs: using flush barriers
    [ 2.294331] REISERFS (device dm-3): journal params: device dm-3, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    [ 2.294793] REISERFS (device dm-3): checking transaction log (dm-3)
    [ 2.328438] REISERFS (device dm-3): Using r5 hash to sort names
    [ 3.521243] systemd-udevd[196]: starting version 192
    [ 3.731543] vboxdrv: Found 3 processor cores.
    [ 3.731692] vboxdrv: fAsync=0 offMin=0x421 offMax=0x19b7
    [ 3.731735] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 3.731736] vboxdrv: Successfully loaded version 4.2.0_OSE (interface 0x001a0004).
    [ 4.078334] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 4.078340] ACPI: Power Button [PWRB]
    [ 4.078389] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 4.078391] ACPI: Power Button [PWRF]
    [ 4.118249] wmi: Mapper loaded
    [ 4.264495] sp5100_tco: SP5100 TCO WatchDog Timer Driver v0.01
    [ 4.264551] sp5100_tco: mmio address 0xfec000f0 already in use
    [ 4.266129] EDAC MC: Ver: 2.1.0
    [ 4.308369] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input4
    [ 4.326814] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input5
    [ 4.326881] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    [ 4.326938] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    [ 4.326984] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 4.327034] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 4.327093] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 4.327137] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 4.327181] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
    [ 4.331081] k10temp 0000:00:18.3: unreliable CPU thermal sensor; monitoring disabled
    [ 4.331239] ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \SOR1 1 (20120320/utaddress-251)
    [ 4.331244] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.370081] firewire_ohci 0000:03:0e.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
    [ 4.370182] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.370266] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
    [ 4.370532] r8169 0000:02:00.0: eth0: RTL8168c/8111c at 0xffffc90000656000, 00:24:1d:14:eb:1c, XID 1c4000c0 IRQ 42
    [ 4.370534] r8169 0000:02:00.0: eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
    [ 4.460371] MCE: In-kernel MCE decoding enabled.
    [ 4.461269] AMD64 EDAC driver v3.4.0
    [ 4.461326] EDAC amd64: DRAM ECC disabled.
    [ 4.461332] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    (Note that use of the override may cause unknown side effects.)
    [ 4.681980] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.870047] firewire_core 0000:03:0e.0: created device fw0: GUID 0019f1ec0000241d, S400
    [ 4.906613] ath5k 0000:03:07.0: registered as 'phy0'
    [ 5.157960] kvm: Nested Virtualization enabled
    [ 5.157964] kvm: Nested Paging enabled
    [ 5.212068] powernow-k8: Found 1 AMD Phenom(tm) II X3 720 Processor (3 cpu cores) (version 2.20.00)
    [ 5.212100] powernow-k8: 0 : pstate 0 (2800 MHz)
    [ 5.212101] powernow-k8: 1 : pstate 1 (2100 MHz)
    [ 5.212102] powernow-k8: 2 : pstate 2 (1600 MHz)
    [ 5.212103] powernow-k8: 3 : pstate 3 (800 MHz)
    [ 5.445767] microcode: CPU0: patch_level=0x01000086
    [ 5.513053] ath: EEPROM regdomain: 0x809c
    [ 5.513060] ath: EEPROM indicates we should expect a country code
    [ 5.513064] ath: doing EEPROM country->regdmn map search
    [ 5.513067] ath: country maps to regdmn code: 0x52
    [ 5.513070] ath: Country alpha2 being used: CN
    [ 5.513073] ath: Regpair used: 0x52
    [ 5.720324] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 5.720419] microcode: CPU1: patch_level=0x01000086
    [ 5.721269] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 5.721373] microcode: CPU2: patch_level=0x01000086
    [ 5.722356] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 5.722563] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 5.801835] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 5.802304] ath5k: phy0: Atheros AR2413 chip found (MAC: 0x78, PHY: 0x45)
    [ 6.296710] nvidia: module license 'NVIDIA' taints kernel.
    [ 6.296714] Disabling lock debugging due to kernel taint
    [ 6.309419] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 6.309823] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 304.51 Tue Sep 18 17:16:56 PDT 2012
    [ 6.321474] Linux media interface: v0.10
    [ 6.384863] Linux video capture interface: v2.00
    [ 6.452628] uvcvideo: Found UVC 1.00 device <unnamed> (046d:0808)
    [ 6.469190] input: UVC Camera (046d:0808) as /devices/pci0000:00/0000:00:13.2/usb2/2-4/2-4.4/2-4.4:1.0/input/input13
    [ 6.469404] usbcore: registered new interface driver uvcvideo
    [ 6.469407] USB Video Class driver (1.1.1)
    [ 7.020908] usbcore: registered new interface driver snd-usb-audio
    [ 7.051400] set resolution quirk: cval->res = 384
    [ 8.232297] reiserfs: enabling write barrier flush mode
    [ 8.511269] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 8.515067] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 8.556782] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
    [ 10.739934] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 11.452652] wlan0: authenticate with 00:1f:c6:3d:84:ba
    [ 11.461052] wlan0: send auth to 00:1f:c6:3d:84:ba (try 1/3)
    [ 11.462516] wlan0: authenticated
    [ 11.469067] wlan0: associate with 00:1f:c6:3d:84:ba (try 1/3)
    [ 11.470817] wlan0: RX AssocResp from 00:1f:c6:3d:84:ba (capab=0x401 status=0 aid=3)
    [ 11.471130] wlan0: associated
    [ 11.471521] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 24.567793] NVRM: GPU at 0000:01:00: GPU-ac314c58-0b61-fb24-fa28-bac76d8e581b
    [ 27.419761] fuse init (API version 7.19)
    [ 31.119563] EXT4-fs (dm-2): re-mounted. Opts: commit=0
    [ 2088.845650] ata1.00: exception Emask 0x50 SAct 0x78000ffc SErr 0x400800 action 0x6 frozen
    [ 2088.845660] ata1.00: irq_stat 0x08000000, interface fatal error
    [ 2088.845667] ata1: SError: { HostInt Handshk }
    [ 2088.845674] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845687] ata1.00: cmd 61/08:10:97:ae:07/00:00:1a:00:00/40 tag 2 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845694] ata1.00: status: { DRDY }
    [ 2088.845699] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845711] ata1.00: cmd 61/08:18:b7:ae:07/00:00:1a:00:00/40 tag 3 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845716] ata1.00: status: { DRDY }
    [ 2088.845721] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845732] ata1.00: cmd 61/20:20:bf:ae:07/00:00:1a:00:00/40 tag 4 ncq 16384 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845737] ata1.00: status: { DRDY }
    [ 2088.845742] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845753] ata1.00: cmd 61/c8:28:df:ae:07/00:00:1a:00:00/40 tag 5 ncq 102400 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845758] ata1.00: status: { DRDY }
    [ 2088.845763] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845774] ata1.00: cmd 61/90:30:a7:af:07/00:00:1a:00:00/40 tag 6 ncq 73728 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845779] ata1.00: status: { DRDY }
    [ 2088.845783] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845795] ata1.00: cmd 61/b8:38:37:b0:07/00:00:1a:00:00/40 tag 7 ncq 94208 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845800] ata1.00: status: { DRDY }
    [ 2088.845804] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845815] ata1.00: cmd 61/a8:40:ef:b0:07/00:00:1a:00:00/40 tag 8 ncq 86016 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845820] ata1.00: status: { DRDY }
    [ 2088.845825] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845836] ata1.00: cmd 61/80:48:97:b1:07/00:00:1a:00:00/40 tag 9 ncq 65536 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845841] ata1.00: status: { DRDY }
    [ 2088.845845] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845857] ata1.00: cmd 61/b0:50:17:b2:07/00:00:1a:00:00/40 tag 10 ncq 90112 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845862] ata1.00: status: { DRDY }
    [ 2088.845867] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845878] ata1.00: cmd 61/d8:58:c7:b2:07/00:00:1a:00:00/40 tag 11 ncq 110592 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845883] ata1.00: status: { DRDY }
    [ 2088.845889] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845900] ata1.00: cmd 61/08:d8:8f:ae:07/00:00:1a:00:00/40 tag 27 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845905] ata1.00: status: { DRDY }
    [ 2088.845910] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845922] ata1.00: cmd 61/08:e0:9f:ae:07/00:00:1a:00:00/40 tag 28 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845927] ata1.00: status: { DRDY }
    [ 2088.845931] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845942] ata1.00: cmd 61/08:e8:a7:ae:07/00:00:1a:00:00/40 tag 29 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845947] ata1.00: status: { DRDY }
    [ 2088.845954] ata1.00: failed command: WRITE FPDMA QUEUED
    [ 2088.845965] ata1.00: cmd 61/08:f0:af:ae:07/00:00:1a:00:00/40 tag 30 ncq 4096 out
    res 40/00:5c:c7:b2:07/00:00:1a:00:00/40 Emask 0x50 (ATA bus error)
    [ 2088.845970] ata1.00: status: { DRDY }
    [ 2088.845978] ata1: hard resetting link
    [ 2089.329937] ata1: softreset failed (device not ready)
    [ 2089.329948] ata1: applying PMP SRST workaround and retrying
    [ 2089.496590] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2089.498245] ata1.00: configured for UDMA/133
    [ 2089.509941] sd 0:0:0:0: [sda]
    [ 2089.509950] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.509956] sd 0:0:0:0: [sda]
    [ 2089.509959] Sense Key : 0xb [current] [descriptor]
    [ 2089.509966] Descriptor sense data with sense descriptors (in hex):
    [ 2089.509969] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.509987] 1a 07 b2 c7
    [ 2089.509996] sd 0:0:0:0: [sda]
    [ 2089.509999] ASC=0x0 ASCQ=0x0
    [ 2089.510004] sd 0:0:0:0: [sda] CDB:
    [ 2089.510006] cdb[0]=0x2a: 2a 00 1a 07 ae 97 00 00 08 00
    [ 2089.510021] end_request: I/O error, dev sda, sector 436711063
    [ 2089.510032] Buffer I/O error on device dm-3, logical block 631
    [ 2089.510035] lost page write due to I/O error on dm-3
    [ 2089.510058] sd 0:0:0:0: [sda]
    [ 2089.510061] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510066] sd 0:0:0:0: [sda]
    [ 2089.510068] Sense Key : 0xb [current] [descriptor]
    [ 2089.510073] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510075] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510091] 1a 07 b2 c7
    [ 2089.510099] sd 0:0:0:0: [sda]
    [ 2089.510101] ASC=0x0 ASCQ=0x0
    [ 2089.510106] sd 0:0:0:0: [sda] CDB:
    [ 2089.510108] cdb[0]=0x2a: 2a 00 1a 07 ae b7 00 00 08 00
    [ 2089.510121] end_request: I/O error, dev sda, sector 436711095
    [ 2089.510126] Buffer I/O error on device dm-3, logical block 635
    [ 2089.510129] lost page write due to I/O error on dm-3
    [ 2089.510140] sd 0:0:0:0: [sda]
    [ 2089.510142] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510146] sd 0:0:0:0: [sda]
    [ 2089.510149] Sense Key : 0xb [current] [descriptor]
    [ 2089.510153] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510155] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510171] 1a 07 b2 c7
    [ 2089.510178] sd 0:0:0:0: [sda]
    [ 2089.510181] ASC=0x0 ASCQ=0x0
    [ 2089.510185] sd 0:0:0:0: [sda] CDB:
    [ 2089.510187] cdb[0]=0x2a: 2a 00 1a 07 ae bf 00 00 20 00
    [ 2089.510200] end_request: I/O error, dev sda, sector 436711103
    [ 2089.510205] Buffer I/O error on device dm-3, logical block 636
    [ 2089.510208] lost page write due to I/O error on dm-3
    [ 2089.510212] Buffer I/O error on device dm-3, logical block 637
    [ 2089.510215] lost page write due to I/O error on dm-3
    [ 2089.510220] Buffer I/O error on device dm-3, logical block 638
    [ 2089.510222] lost page write due to I/O error on dm-3
    [ 2089.510227] Buffer I/O error on device dm-3, logical block 639
    [ 2089.510230] lost page write due to I/O error on dm-3
    [ 2089.510245] sd 0:0:0:0: [sda]
    [ 2089.510248] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510252] sd 0:0:0:0: [sda]
    [ 2089.510254] Sense Key : 0xb [current] [descriptor]
    [ 2089.510258] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510261] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510276] 1a 07 b2 c7
    [ 2089.510284] sd 0:0:0:0: [sda]
    [ 2089.510286] ASC=0x0 ASCQ=0x0
    [ 2089.510290] sd 0:0:0:0: [sda] CDB:
    [ 2089.510293] cdb[0]=0x2a: 2a 00 1a 07 ae df 00 00 c8 00
    [ 2089.510305] end_request: I/O error, dev sda, sector 436711135
    [ 2089.510310] Buffer I/O error on device dm-3, logical block 640
    [ 2089.510313] lost page write due to I/O error on dm-3
    [ 2089.510317] Buffer I/O error on device dm-3, logical block 641
    [ 2089.510320] lost page write due to I/O error on dm-3
    [ 2089.510325] Buffer I/O error on device dm-3, logical block 642
    [ 2089.510327] lost page write due to I/O error on dm-3
    [ 2089.510332] Buffer I/O error on device dm-3, logical block 643
    [ 2089.510335] lost page write due to I/O error on dm-3
    [ 2089.510400] sd 0:0:0:0: [sda]
    [ 2089.510403] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510407] sd 0:0:0:0: [sda]
    [ 2089.510409] Sense Key : 0xb [current] [descriptor]
    [ 2089.510414] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510416] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510432] 1a 07 b2 c7
    [ 2089.510440] sd 0:0:0:0: [sda]
    [ 2089.510442] ASC=0x0 ASCQ=0x0
    [ 2089.510446] sd 0:0:0:0: [sda] CDB:
    [ 2089.510449] cdb[0]=0x2a: 2a 00 1a 07 af a7 00 00 90 00
    [ 2089.510461] end_request: I/O error, dev sda, sector 436711335
    [ 2089.510502] sd 0:0:0:0: [sda]
    [ 2089.510505] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510509] sd 0:0:0:0: [sda]
    [ 2089.510511] Sense Key : 0xb [current] [descriptor]
    [ 2089.510515] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510518] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510533] 1a 07 b2 c7
    [ 2089.510541] sd 0:0:0:0: [sda]
    [ 2089.510543] ASC=0x0 ASCQ=0x0
    [ 2089.510548] sd 0:0:0:0: [sda] CDB:
    [ 2089.510550] cdb[0]=0x2a: 2a 00 1a 07 b0 37 00 00 b8 00
    [ 2089.510563] end_request: I/O error, dev sda, sector 436711479
    [ 2089.510610] sd 0:0:0:0: [sda]
    [ 2089.510613] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510617] sd 0:0:0:0: [sda]
    [ 2089.510619] Sense Key : 0xb [current] [descriptor]
    [ 2089.510623] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510626] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510641] 1a 07 b2 c7
    [ 2089.510649] sd 0:0:0:0: [sda]
    [ 2089.510651] ASC=0x0 ASCQ=0x0
    [ 2089.510656] sd 0:0:0:0: [sda] CDB:
    [ 2089.510658] cdb[0]=0x2a: 2a 00 1a 07 b0 ef 00 00 a8 00
    [ 2089.510670] end_request: I/O error, dev sda, sector 436711663
    [ 2089.510713] sd 0:0:0:0: [sda]
    [ 2089.510716] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510720] sd 0:0:0:0: [sda]
    [ 2089.510722] Sense Key : 0xb [current] [descriptor]
    [ 2089.510727] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510729] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510744] 1a 07 b2 c7
    [ 2089.510752] sd 0:0:0:0: [sda]
    [ 2089.510754] ASC=0x0 ASCQ=0x0
    [ 2089.510759] sd 0:0:0:0: [sda] CDB:
    [ 2089.510761] cdb[0]=0x2a: 2a 00 1a 07 b1 97 00 00 80 00
    [ 2089.510774] end_request: I/O error, dev sda, sector 436711831
    [ 2089.510812] sd 0:0:0:0: [sda]
    [ 2089.510815] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510819] sd 0:0:0:0: [sda]
    [ 2089.510821] Sense Key : 0xb [current] [descriptor]
    [ 2089.510825] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510828] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510843] 1a 07 b2 c7
    [ 2089.510851] sd 0:0:0:0: [sda]
    [ 2089.510854] ASC=0x0 ASCQ=0x0
    [ 2089.510858] sd 0:0:0:0: [sda] CDB:
    [ 2089.510860] cdb[0]=0x2a: 2a 00 1a 07 b2 17 00 00 b0 00
    [ 2089.510873] end_request: I/O error, dev sda, sector 436711959
    [ 2089.510919] sd 0:0:0:0: [sda]
    [ 2089.510922] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.510926] sd 0:0:0:0: [sda]
    [ 2089.510928] Sense Key : 0xb [current] [descriptor]
    [ 2089.510933] Descriptor sense data with sense descriptors (in hex):
    [ 2089.510935] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.510951] 1a 07 b2 c7
    [ 2089.510959] sd 0:0:0:0: [sda]
    [ 2089.510961] ASC=0x0 ASCQ=0x0
    [ 2089.510966] sd 0:0:0:0: [sda] CDB:
    [ 2089.510968] cdb[0]=0x2a: 2a 00 1a 07 b2 c7 00 00 d8 00
    [ 2089.510980] end_request: I/O error, dev sda, sector 436712135
    [ 2089.511030] sd 0:0:0:0: [sda]
    [ 2089.511033] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511037] sd 0:0:0:0: [sda]
    [ 2089.511039] Sense Key : 0xb [current] [descriptor]
    [ 2089.511043] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511046] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511061] 1a 07 b2 c7
    [ 2089.511069] sd 0:0:0:0: [sda]
    [ 2089.511071] ASC=0x0 ASCQ=0x0
    [ 2089.511076] sd 0:0:0:0: [sda] CDB:
    [ 2089.511078] cdb[0]=0x2a: 2a 00 1a 07 ae 8f 00 00 08 00
    [ 2089.511090] end_request: I/O error, dev sda, sector 436711055
    [ 2089.511111] sd 0:0:0:0: [sda]
    [ 2089.511114] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511118] sd 0:0:0:0: [sda]
    [ 2089.511120] Sense Key : 0xb [current] [descriptor]
    [ 2089.511125] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511128] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511144] 1a 07 b2 c7
    [ 2089.511151] sd 0:0:0:0: [sda]
    [ 2089.511154] ASC=0x0 ASCQ=0x0
    [ 2089.511158] sd 0:0:0:0: [sda] CDB:
    [ 2089.511160] cdb[0]=0x2a: 2a 00 1a 07 ae 9f 00 00 08 00
    [ 2089.511173] end_request: I/O error, dev sda, sector 436711071
    [ 2089.511188] sd 0:0:0:0: [sda]
    [ 2089.511191] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511195] sd 0:0:0:0: [sda]
    [ 2089.511197] Sense Key : 0xb [current] [descriptor]
    [ 2089.511201] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511204] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511219] 1a 07 b2 c7
    [ 2089.511227] sd 0:0:0:0: [sda]
    [ 2089.511230] ASC=0x0 ASCQ=0x0
    [ 2089.511234] sd 0:0:0:0: [sda] CDB:
    [ 2089.511236] cdb[0]=0x2a: 2a 00 1a 07 ae a7 00 00 08 00
    [ 2089.511249] end_request: I/O error, dev sda, sector 436711079
    [ 2089.511263] sd 0:0:0:0: [sda]
    [ 2089.511266] Result: hostbyte=0x00 driverbyte=0x08
    [ 2089.511270] sd 0:0:0:0: [sda]
    [ 2089.511272] Sense Key : 0xb [current] [descriptor]
    [ 2089.511277] Descriptor sense data with sense descriptors (in hex):
    [ 2089.511279] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    [ 2089.511295] 1a 07 b2 c7
    [ 2089.511302] sd 0:0:0:0: [sda]
    [ 2089.511305] ASC=0x0 ASCQ=0x0
    [ 2089.511309] sd 0:0:0:0: [sda] CDB:
    [ 2089.511311] cdb[0]=0x2a: 2a 00 1a 07 ae af 00 00 08 00
    [ 2089.511324] end_request: I/O error, dev sda, sector 436711087
    [ 2089.511343] ata1: EH complete
    [ 2089.511517] REISERFS abort (device dm-3): Journal write error in flush_commit_list
    error.log (only part related to the current session):
    Sep 28 20:20:21 localhost kernel: [ 2088.845650] ata1.00: exception Emask 0x50 SAct 0x78000ffc SErr 0x400800 action 0x6 frozen
    Sep 28 20:20:21 localhost kernel: [ 2088.845660] ata1.00: irq_stat 0x08000000, interface fatal error
    Sep 28 20:20:21 localh

    uzsolt wrote:
    I've same problem with an asus laptop, with one hdd. On the device I've some partitions (home, root, backup, var) but this error appears with 'home' only. Sometimes the mount options turns into "read-only", but only on home-partition (ext4, but root, var and a download-directory is ext4 too but they works well).
    I found this: https://bbs.archlinux.org/viewtopic.php … 9#p1052099 - I hope this helps for me - and for you too
    Errors in logs:
    Dec 02 09:44:03 [kernel] [ 666.911555] ata1.00: exception Emask 0x50 SAct 0x4 SErr 0x400800 action 0x6 frozen
    Dec 02 09:44:03 [kernel] [ 666.911561] ata1.00: irq_stat 0x08000000, interface fatal error
    Dec 02 09:44:03 [kernel] [ 666.911564] ata1: SError: { HostInt Handshk }
    Dec 02 09:44:03 [kernel] [ 666.911568] ata1.00: failed command: WRITE FPDMA QUEUED
    Dec 02 09:44:03 [kernel] [ 666.911574] ata1.00: cmd 61/68:10:53:25:2a/00:00:04:00:00/40 tag 2 ncq 53248 out
    Dec 02 09:44:03 [kernel] [ 666.911574] res 40/00:10:53:25:2a/00:00:04:00:00/40 Emask 0x50 (ATA bus error)
    Dec 02 09:44:03 [kernel] [ 666.911577] ata1.00: status: { DRDY }
    Dec 02 09:44:03 [kernel] [ 666.911583] ata1: hard resetting link
    Dec 02 09:44:03 [kernel] [ 667.396660] ata1: softreset failed (device not ready)
    Dec 02 09:44:03 [kernel] [ 667.396668] ata1: applying PMP SRST workaround and retrying
    Dec 02 09:44:03 [kernel] [ 667.563375] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Dec 02 09:44:03 [kernel] [ 667.614772] ata1.00: configured for UDMA/133
    Dec 02 09:44:03 [kernel] [ 667.614796] sd 0:0:0:0: [sda]
    Dec 02 09:44:03 [kernel] [ 667.614798] Result: hostbyte=0x00 driverbyte=0x08
    Dec 02 09:44:03 [kernel] [ 667.614801] sd 0:0:0:0: [sda]
    Dec 02 09:44:03 [kernel] [ 667.614802] Sense Key : 0xb [current] [descriptor]
    Dec 02 09:44:03 [kernel] [ 667.614806] Descriptor sense data with sense descriptors (in hex):
    Dec 02 09:44:03 [kernel] [ 667.614808] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    Dec 02 09:44:03 [kernel] [ 667.614816] 04 2a 25 53
    Dec 02 09:44:03 [kernel] [ 667.614821] sd 0:0:0:0: [sda]
    Dec 02 09:44:03 [kernel] [ 667.614822] ASC=0x0 ASCQ=0x0
    Dec 02 09:44:03 [kernel] [ 667.614825] sd 0:0:0:0: [sda] CDB:
    Dec 02 09:44:03 [kernel] [ 667.614827] cdb[0]=0x2a: 2a 00 04 2a 25 53 00 00 68 00
    Dec 02 09:44:03 [kernel] [ 667.614834] end_request: I/O error, dev sda, sector 69870931
    Dec 02 09:44:03 [kernel] [ 667.614862] ata1: EH complete
    Dec 02 09:44:03 [kernel] [ 667.614949] Aborting journal on device sda3-8.
    Dec 02 09:44:03 [kernel] [ 667.614962] EXT4-fs error (device sda3) in ext4_reserve_inode_write:4550: Journal has aborted
    Dec 02 09:44:04 [kernel] [ 667.692734] EXT4-fs error (device sda3) in ext4_dirty_inode:4669: Journal has aborted
    Dec 02 09:44:04 [kernel] [ 667.720681] EXT4-fs error (device sda3): ext4_journal_start_sb:349: Detected aborted journal
    Dec 02 09:44:04 [kernel] [ 667.720690] EXT4-fs (sda3): Remounting filesystem read-only
    Dec 02 09:44:04 [kernel] [ 667.721798] EXT4-fs error (device sda3): ext4_journal_start_sb:349: Detected aborted journal
    Dec 02 09:44:30 [kernel] [ 694.098612] ata1.00: exception Emask 0x50 SAct 0x40 SErr 0x800 action 0x6 frozen
    Dec 02 09:44:30 [kernel] [ 694.098622] ata1.00: irq_stat 0x08000000, interface fatal error
    Dec 02 09:44:30 [kernel] [ 694.098627] ata1: SError: { HostInt }
    Dec 02 09:44:30 [kernel] [ 694.098635] ata1.00: failed command: WRITE FPDMA QUEUED
    Dec 02 09:44:30 [kernel] [ 694.098647] ata1.00: cmd 61/08:30:53:a6:e5/00:00:05:00:00/40 tag 6 ncq 4096 out
    Dec 02 09:44:30 [kernel] [ 694.098647] res 40/00:30:53:a6:e5/00:00:05:00:00/40 Emask 0x50 (ATA bus error)
    Dec 02 09:44:30 [kernel] [ 694.098653] ata1.00: status: { DRDY }
    Dec 02 09:44:30 [kernel] [ 694.098663] ata1: hard resetting link
    Dec 02 09:44:30 [kernel] [ 694.583317] ata1: softreset failed (device not ready)
    Dec 02 09:44:30 [kernel] [ 694.583328] ata1: applying PMP SRST workaround and retrying
    Dec 02 09:44:31 [kernel] [ 694.749997] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Dec 02 09:44:31 [kernel] [ 694.804387] ata1.00: configured for UDMA/133
    Dec 02 09:44:31 [kernel] [ 694.804425] sd 0:0:0:0: [sda]
    Dec 02 09:44:31 [kernel] [ 694.804428] Result: hostbyte=0x00 driverbyte=0x08
    Dec 02 09:44:31 [kernel] [ 694.804434] sd 0:0:0:0: [sda]
    Dec 02 09:44:31 [kernel] [ 694.804437] Sense Key : 0xb [current] [descriptor]
    Dec 02 09:44:31 [kernel] [ 694.804443] Descriptor sense data with sense descriptors (in hex):
    Dec 02 09:44:31 [kernel] [ 694.804447] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    Dec 02 09:44:31 [kernel] [ 694.804463] 05 e5 a6 53
    Dec 02 09:44:31 [kernel] [ 694.804472] sd 0:0:0:0: [sda]
    Dec 02 09:44:31 [kernel] [ 694.804475] ASC=0x0 ASCQ=0x0
    Dec 02 09:44:31 [kernel] [ 694.804480] sd 0:0:0:0: [sda] CDB:
    Dec 02 09:44:31 [kernel] [ 694.804482] cdb[0]=0x2a: 2a 00 05 e5 a6 53 00 00 08 00
    Dec 02 09:44:31 [kernel] [ 694.804497] end_request: I/O error, dev sda, sector 98936403
    Dec 02 09:44:31 [kernel] [ 694.804505] Buffer I/O error on device sda3, logical block 9437196
    Dec 02 09:44:31 [kernel] [ 694.804508] lost page write due to I/O error on sda3
    Dec 02 09:44:31 [kernel] [ 694.804537] ata1: EH complete
    The other partition works well on same disk as I wrote above.
    Is /home on /dev/sda3?

  • Problem that starts with *apparent* sticking caps lock key

    I have a mid-2009 MacBook Pro (two weeks outside of AppleCare, of course!).  Last night, it appeared the caps lock key was sticking. It would type in all caps even when I hit the button and the green indicator light went off. Moments later, I noticed that the option that shows you all the windows on the same screen was suddenly going very, very slow. I tried to restart but it started in safe mode - twice. It finally started correctly on the third or fourth reboot. I hoped it was a fluke.
    Unfortunately it's happening again and rebooting doesn't seem to fix it - I can't put in my password to login because it thinks I'm typing in all caps.
    Any ideas, please?  Thanks.

    This may enter the Apple Hall of Fame for stupid posts.  I spent a couple hours last night restarting the computer, trying restore etc....and really doing anything I could from clinton's link in order to identify the problem.  I'd even called our local store to let them know I would be there first thing in the morning (I'm boarding a plane in a few minutes and really needed my laptop for this trip).
    So after doing all of those things + removing the caps lock key to see if it was somehow manually stuck, I go the store this morning.  Virtual panic.  I needed a presentation off the laptop for a workshop tomorrow and I hadn't backed up since I created it...
    I enter the store, I begin to explain the situation in detail, I open up the laptop....
    And the guy at the store says "Did you notice your shift key is stuck down?".  Why No, I hadn't noticed that!  With a tiny wiggle and a tap, that key popped back into place and the computer worked fine.  The Safe Mode was happening because the shift key was down.

  • Problem with xfce4-session.

    Hello, I'm not sure whether I'm posting in the correct section of the forums but anyway, here's the problem, after upgrading the system xfce started crashing randomly (It definitely crashes when I try to suspend first time, then it does it correctly). I took a look in Xorg and fglrx log files, they didn't contain any errors. However, dmesg listed a segfault of xfce4-session in libglib, is there any solution for that problem or I just have to wait until the upgrade. Also, I have and AMD E-450 APU, and a proprietary catalyst driver from catalyst-stable. Here is the output from dmesg (the segfault message is in the end):
    [ 0.000000] PM: Registered nosave memory: 00000000afb64000 - 00000000afb6c000
    [ 0.000000] PM: Registered nosave memory: 00000000afb6c000 - 00000000afb91000
    [ 0.000000] PM: Registered nosave memory: 00000000afb91000 - 00000000afbd4000
    [ 0.000000] PM: Registered nosave memory: 00000000afd47000 - 00000000afef7000
    [ 0.000000] PM: Registered nosave memory: 00000000aff00000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    [ 0.000000] PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    [ 0.000000] PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 0000000100000000
    [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    [ 0.000000] e820: [mem 0xaff00000-0xfebfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s84544 r8192 d21952 u1048576
    [ 0.000000] pcpu-alloc: s84544 r8192 d21952 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 966665
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lqx root=UUID=ee58701b-54f4-4a5e-a884-636f3ac8cb2f ro nomodeset usbcore.autosuspend=1 quiet usbcore.autosuspend=0 nomodeset nmi_watchdog=0 pcie_aspm=force
    [ 0.000000] PCIe ASPM is forcibly enabled
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3782720k/5242880k available (4438k kernel code, 1314812k absent, 145348k reserved, 2809k data, 640k 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] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:33024 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.001000] tsc: Detected 1646.401 MHz processor
    [ 0.000005] Calibrating delay loop (skipped), value calculated using timer frequency.. 3292.80 BogoMIPS (lpj=1646401)
    [ 0.000010] pid_max: default: 32768 minimum: 301
    [ 0.000063] Security Framework initialized
    [ 0.000068] SELinux: Disabled at boot.
    [ 0.000071] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000073] Yama: becoming mindful.
    [ 0.000095] Mount-cache hash table entries: 256
    [ 0.000418] tseg: 00aff00000
    [ 0.000422] CPU: Physical Processor ID: 0
    [ 0.000424] CPU: Processor Core ID: 0
    [ 0.000426] mce: CPU supports 6 MCE banks
    [ 0.000442] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4
    tlb_flushall_shift: 5
    [ 0.000558] Freeing SMP alternatives: 16k freed
    [ 0.002455] ACPI: Core revision 20121018
    [ 0.015032] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.025024] smpboot: CPU0: AMD E-450 APU with Radeon(tm) HD Graphics (fam: 14, model: 02, stepping: 00)
    [ 0.126038] Performance Events: AMD PMU driver.
    [ 0.126044] ... version: 0
    [ 0.126047] ... bit width: 48
    [ 0.126048] ... generic registers: 4
    [ 0.126050] ... value mask: 0000ffffffffffff
    [ 0.126051] ... max period: 00007fffffffffff
    [ 0.126053] ... fixed-purpose events: 0
    [ 0.126054] ... event mask: 000000000000000f
    [ 0.134178] smpboot: Booting Node 0, Processors #1 OK
    [ 0.147430] Brought up 2 CPUs
    [ 0.147435] smpboot: Total of 2 processors activated (6585.60 BogoMIPS)
    [ 0.148250] devtmpfs: initialized
    [ 0.148666] PM: Registering ACPI NVS region [mem 0xafaf7000-0xafb3efff] (294912 bytes)
    [ 0.148681] PM: Registering ACPI NVS region [mem 0xafb49000-0xafb4bfff] (12288 bytes)
    [ 0.148683] PM: Registering ACPI NVS region [mem 0xafb4d000-0xafb4dfff] (4096 bytes)
    [ 0.148686] PM: Registering ACPI NVS region [mem 0xafb64000-0xafb6bfff] (32768 bytes)
    [ 0.148689] PM: Registering ACPI NVS region [mem 0xafb91000-0xafbd3fff] (274432 bytes)
    [ 0.149151] regulator-dummy: no parameters
    [ 0.149293] NET: Registered protocol family 16
    [ 0.150271] ACPI: bus type pci registered
    [ 0.150593] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.150599] PCI: not using MMCONFIG
    [ 0.150601] PCI: Using configuration type 1 for base access
    [ 0.150602] PCI: Using configuration type 1 for extended access
    [ 0.155916] bio: create slab <bio-0> at 0
    [ 0.156315] ACPI: Added _OSI(Module Device)
    [ 0.156319] ACPI: Added _OSI(Processor Device)
    [ 0.156321] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.156323] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.158103] ACPI: EC: Look up EC in DSDT
    [ 0.160056] ACPI: Executed 3 blocks of module-level executable AML code
    [ 0.172510] ACPI: Interpreter enabled
    [ 0.172527] ACPI: (supports S0 S3 S4 S5)
    [ 0.172576] ACPI: Using IOAPIC for interrupt routing
    [ 0.172886] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.172961] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.213033] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.213391] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.245487] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    [ 0.245850] ACPI: No dock devices found.
    [ 0.245858] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.246163] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.246166] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.246887] PCI host bridge to bus 0000:00
    [ 0.246895] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.246899] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.246906] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.246910] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.246913] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.246916] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.246919] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.246923] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
    [ 0.246938] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
    [ 0.246999] pci 0000:00:01.0: [1002:9806] type 00 class 0x030000
    [ 0.247013] pci 0000:00:01.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.247023] pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    [ 0.247032] pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    [ 0.247093] pci 0000:00:01.0: supports D1 D2
    [ 0.247118] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
    [ 0.247130] pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    [ 0.247202] pci 0000:00:01.1: supports D1 D2
    [ 0.247388] pci 0000:00:04.0: [1022:1512] type 01 class 0x060400
    [ 0.247482] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 0.247576] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.247602] pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    [ 0.247615] pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    [ 0.247629] pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    [ 0.247642] pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    [ 0.247655] pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    [ 0.247669] pci 0000:00:11.0: reg 24: [mem 0xfeb4d000-0xfeb4d3ff]
    [ 0.247749] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.247767] pci 0000:00:12.0: reg 10: [mem 0xfeb4c000-0xfeb4cfff]
    [ 0.247863] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.247889] pci 0000:00:12.2: reg 10: [mem 0xfeb4b000-0xfeb4b0ff]
    [ 0.247997] pci 0000:00:12.2: supports D1 D2
    [ 0.248000] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.248033] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.248052] pci 0000:00:13.0: reg 10: [mem 0xfeb4a000-0xfeb4afff]
    [ 0.248150] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.248175] pci 0000:00:13.2: reg 10: [mem 0xfeb49000-0xfeb490ff]
    [ 0.248289] pci 0000:00:13.2: supports D1 D2
    [ 0.248292] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.248325] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.248433] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.248461] pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 0.248548] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.248571] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.248673] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.248732] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.248750] pci 0000:00:14.5: reg 10: [mem 0xfeb48000-0xfeb48fff]
    [ 0.248848] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
    [ 0.248953] pci 0000:00:15.0: supports D1 D2
    [ 0.248991] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
    [ 0.249095] pci 0000:00:15.1: supports D1 D2
    [ 0.249133] pci 0000:00:15.2: [1002:43a2] type 01 class 0x060400
    [ 0.249237] pci 0000:00:15.2: supports D1 D2
    [ 0.249282] pci 0000:00:15.3: [1002:43a3] type 01 class 0x060400
    [ 0.249387] pci 0000:00:15.3: supports D1 D2
    [ 0.249426] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
    [ 0.249474] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
    [ 0.249518] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
    [ 0.249564] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
    [ 0.249621] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
    [ 0.249665] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
    [ 0.249711] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
    [ 0.249755] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
    [ 0.249928] pci 0000:00:04.0: PCI bridge to [bus 01]
    [ 0.250055] pci 0000:00:14.4: PCI bridge to [bus 02] (subtractive decode)
    [ 0.250067] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.250070] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.250074] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.250077] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.250080] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.250083] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.250086] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 0.250216] pci 0000:03:00.0: [14e4:4727] type 00 class 0x028000
    [ 0.250259] pci 0000:03:00.0: reg 10: [mem 0xfea00000-0xfea03fff 64bit]
    [ 0.250422] pci 0000:03:00.0: supports D1 D2
    [ 0.250425] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.252383] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.252400] pci 0000:00:15.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.252481] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.252587] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.252610] pci 0000:05:00.0: reg 10: [io 0xe000-0xe0ff]
    [ 0.252649] pci 0000:05:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
    [ 0.252674] pci 0000:05:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
    [ 0.252777] pci 0000:05:00.0: supports D1 D2
    [ 0.252780] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.254339] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.254353] pci 0000:00:15.2: bridge window [io 0xe000-0xefff]
    [ 0.254369] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.254451] pci 0000:00:15.3: PCI bridge to [bus 06]
    [ 0.254501] pci_bus 0000:00: on NUMA node 0
    [ 0.254602] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE20._PRT]
    [ 0.254674] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE21._PRT]
    [ 0.254726] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE22._PRT]
    [ 0.254777] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE23._PRT]
    [ 0.254856] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE4._PRT]
    [ 0.254913] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.254916] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.259554] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    [ 0.259704] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    [ 0.259814] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    [ 0.259920] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 11 14 15) *0
    [ 0.260007] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
    [ 0.260075] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
    [ 0.260142] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
    [ 0.260210] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
    [ 0.260719] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.260732] vgaarb: loaded
    [ 0.260733] vgaarb: bridge control possible 0000:00:01.0
    [ 0.261239] ACPI: bus type usb registered
    [ 0.261372] usbcore: registered new interface driver usbfs
    [ 0.261438] usbcore: registered new interface driver hub
    [ 0.261565] usbcore: registered new device driver usb
    [ 0.262092] PCI: Using ACPI for IRQ routing
    [ 0.273018] PCI: pci_cache_line_size set to 64 bytes
    [ 0.273142] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.273146] e820: reserve RAM buffer [mem 0xafaf7000-0xafffffff]
    [ 0.273149] e820: reserve RAM buffer [mem 0xafb54000-0xafffffff]
    [ 0.273151] e820: reserve RAM buffer [mem 0xafd47000-0xafffffff]
    [ 0.273154] e820: reserve RAM buffer [mem 0xaff00000-0xafffffff]
    [ 0.273543] NetLabel: Initializing
    [ 0.273546] NetLabel: domain hash size = 128
    [ 0.273547] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.273565] NetLabel: unlabeled traffic allowed by default
    [ 0.273680] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.273687] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.275723] Switching to clocksource hpet
    [ 0.281493] pnp: PnP ACPI init
    [ 0.281511] ACPI: bus type pnp registered
    [ 0.281854] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.281861] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.282965] system 00:01: [io 0x040b] has been reserved
    [ 0.282969] system 00:01: [io 0x04d6] has been reserved
    [ 0.282972] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.282979] system 00:01: [io 0x0c14] has been reserved
    [ 0.282984] system 00:01: [io 0x0c50-0x0c51] has been reserved
    [ 0.282987] system 00:01: [io 0x0c52] has been reserved
    [ 0.282990] system 00:01: [io 0x0c6c] has been reserved
    [ 0.282994] system 00:01: [io 0x0c6f] has been reserved
    [ 0.282997] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.283000] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.283004] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.283007] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.283010] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.283014] system 00:01: [io 0x0800-0x089f] has been reserved
    [ 0.283017] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    [ 0.283020] system 00:01: [io 0x0900-0x090f] has been reserved
    [ 0.283024] system 00:01: [io 0x0910-0x091f] has been reserved
    [ 0.283027] system 00:01: [io 0xfe00-0xfefe] has been reserved
    [ 0.283033] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.283037] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.283041] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.283045] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.283049] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.283054] system 00:01: [mem 0xfed00000-0xfed00fff] has been reserved
    [ 0.283057] system 00:01: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.283062] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.283085] pnp 00:02: [dma 4]
    [ 0.283236] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.283356] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.283484] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.283686] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.283691] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.283937] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.284106] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.284264] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.284487] pnp 00:09: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
    [ 0.285108] system 00:0a: [mem 0xb0000000-0xbfffffff] has been reserved
    [ 0.285113] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.297800] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.297811] pnp: PnP ACPI: found 12 devices
    [ 0.297813] ACPI: ACPI bus type pnp unregistered
    [ 0.303106] pci 0000:00:04.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.303114] pci 0000:00:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.303119] pci 0000:00:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    [ 0.303173] pci 0000:00:15.0: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 0.303178] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 0.303192] pci 0000:00:15.1: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
    [ 0.303196] pci 0000:00:15.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
    [ 0.303200] pci 0000:00:15.1: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
    [ 0.303213] pci 0000:00:15.2: bridge window [mem 0x00100000-0x000fffff] to [bus 05] add_size 400000
    [ 0.303226] pci 0000:00:15.3: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000
    [ 0.303230] pci 0000:00:15.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
    [ 0.303234] pci 0000:00:15.3: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000
    [ 0.303253] pci 0000:00:04.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303257] pci 0000:00:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303261] pci 0000:00:15.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303264] pci 0000:00:15.1: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303268] pci 0000:00:15.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303271] pci 0000:00:15.2: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
    [ 0.303275] pci 0000:00:15.3: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303278] pci 0000:00:15.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303281] pci 0000:00:04.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303285] pci 0000:00:15.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303288] pci 0000:00:15.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303291] pci 0000:00:15.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303300] pci 0000:00:04.0: BAR 14: assigned [mem 0xd0100000-0xd02fffff]
    [ 0.303305] pci 0000:00:04.0: BAR 15: assigned [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303310] pci 0000:00:15.0: BAR 15: assigned [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303315] pci 0000:00:15.1: BAR 14: assigned [mem 0xd0700000-0xd08fffff]
    [ 0.303320] pci 0000:00:15.1: BAR 15: assigned [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303324] pci 0000:00:15.2: BAR 14: assigned [mem 0xd0b00000-0xd0efffff]
    [ 0.303328] pci 0000:00:15.3: BAR 14: assigned [mem 0xd0f00000-0xd10fffff]
    [ 0.303332] pci 0000:00:15.3: BAR 15: assigned [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303339] pci 0000:00:04.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.303345] pci 0000:00:15.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.303349] pci 0000:00:15.1: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.303354] pci 0000:00:15.3: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.303361] pci 0000:00:04.0: PCI bridge to [bus 01]
    [ 0.303367] pci 0000:00:04.0: bridge window [io 0x1000-0x1fff]
    [ 0.303373] pci 0000:00:04.0: bridge window [mem 0xd0100000-0xd02fffff]
    [ 0.303378] pci 0000:00:04.0: bridge window [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303385] pci 0000:00:14.4: PCI bridge to [bus 02]
    [ 0.303470] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.303474] pci 0000:00:15.0: bridge window [io 0x2000-0x2fff]
    [ 0.303481] pci 0000:00:15.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.303487] pci 0000:00:15.0: bridge window [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303495] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.303499] pci 0000:00:15.1: bridge window [io 0x3000-0x3fff]
    [ 0.303506] pci 0000:00:15.1: bridge window [mem 0xd0700000-0xd08fffff]
    [ 0.303512] pci 0000:00:15.1: bridge window [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303521] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.303525] pci 0000:00:15.2: bridge window [io 0xe000-0xefff]
    [ 0.303532] pci 0000:00:15.2: bridge window [mem 0xd0b00000-0xd0efffff]
    [ 0.303537] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.303545] pci 0000:00:15.3: PCI bridge to [bus 06]
    [ 0.303549] pci 0000:00:15.3: bridge window [io 0x4000-0x4fff]
    [ 0.303557] pci 0000:00:15.3: bridge window [mem 0xd0f00000-0xd10fffff]
    [ 0.303562] pci 0000:00:15.3: bridge window [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303627] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.303631] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.303634] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.303637] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.303640] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.303643] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.303647] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.303650] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
    [ 0.303653] pci_bus 0000:01: resource 1 [mem 0xd0100000-0xd02fffff]
    [ 0.303656] pci_bus 0000:01: resource 2 [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303660] pci_bus 0000:02: resource 4 [io 0x0000-0x03af]
    [ 0.303663] pci_bus 0000:02: resource 5 [io 0x03e0-0x0cf7]
    [ 0.303666] pci_bus 0000:02: resource 6 [io 0x03b0-0x03df]
    [ 0.303669] pci_bus 0000:02: resource 7 [io 0x0d00-0xffff]
    [ 0.303672] pci_bus 0000:02: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.303675] pci_bus 0000:02: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.303678] pci_bus 0000:02: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.303681] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    [ 0.303684] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.303687] pci_bus 0000:03: resource 2 [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303691] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.303693] pci_bus 0000:04: resource 1 [mem 0xd0700000-0xd08fffff]
    [ 0.303752] pci_bus 0000:04: resource 2 [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303755] pci_bus 0000:05: resource 0 [io 0xe000-0xefff]
    [ 0.303758] pci_bus 0000:05: resource 1 [mem 0xd0b00000-0xd0efffff]
    [ 0.303761] pci_bus 0000:05: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.303765] pci_bus 0000:06: resource 0 [io 0x4000-0x4fff]
    [ 0.303768] pci_bus 0000:06: resource 1 [mem 0xd0f00000-0xd10fffff]
    [ 0.303771] pci_bus 0000:06: resource 2 [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303836] NET: Registered protocol family 2
    [ 0.304049] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.304316] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.304574] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.304683] TCP: reno registered
    [ 0.304693] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.304845] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.305013] NET: Registered protocol family 1
    [ 0.305042] pci 0000:00:01.0: Boot video device
    [ 0.305384] PCI: CLS 64 bytes, default 64
    [ 0.305471] Unpacking initramfs...
    [ 0.400016] Freeing initrd memory: 2664k freed
    [ 0.401721] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.401733] software IO TLB [mem 0xabaf7000-0xafaf7000] (64MB) mapped at [ffff8800abaf7000-ffff8800afaf6fff]
    [ 0.401984] LVT offset 0 assigned for vector 0x400
    [ 0.402067] perf: AMD IBS detected (0x000000ff)
    [ 0.402950] audit: initializing netlink socket (disabled)
    [ 0.402971] type=2000 audit(1367137456.294:1): initialized
    [ 0.403912] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.410965] VFS: Disk quotas dquot_6.5.2
    [ 0.411207] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.411535] msgmni has been set to 7393
    [ 0.412281] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.412285] io scheduler noop registered
    [ 0.412287] io scheduler deadline registered
    [ 0.412295] io scheduler cfq registered
    [ 0.412435] io scheduler bfq registered (default)
    [ 0.413822] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [ 0.415487] Linux agpgart interface v0.103
    [ 0.415820] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.415822] vesafb: scrolling: redraw
    [ 0.415826] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.416298] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010100000, using 3072k, total 3072k
    [ 0.477778] Console: switching to colour frame buffer device 128x48
    [ 0.530645] fb0: VESA VGA frame buffer device
    [ 0.530917] ACPI: acpi_idle registered with cpuidle
    [ 0.557297] GHES: HEST is not enabled!
    [ 0.557305] XENFS: not registering filesystem on non-xen platform
    [ 0.557737] libphy: Fixed MDIO Bus: probed
    [ 0.557999] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PSM1] at 0x60,0x64 irq 1,12
    [ 0.561580] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.561601] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.562037] mousedev: PS/2 mouse device common for all mice
    [ 0.562175] cpuidle: using governor ladder
    [ 0.562284] cpuidle: using governor menu
    [ 0.562288] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.562699] TCP: vegas registered
    [ 0.562701] TCP: yeah registered
    [ 0.562786] Key type dns_resolver registered
    [ 0.563728] registered taskstats version 1
    [ 0.564483] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.564936] powernow-k8: this CPU is not supported anymore, using acpi-cpufreq instead.
    [ 0.566831] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 0.567786] Freeing unused kernel memory: 640k freed
    [ 0.568164] CFS CPU scheduler.
    [ 0.584465] systemd-udevd[507]: starting version 202
    [ 0.653357] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.655531] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.655963] ehci-pci: EHCI PCI platform driver
    [ 0.656097] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.656109] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 1
    [ 0.656128] QUIRK: Enable AMD PLL fix
    [ 0.656224] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb4c000
    [ 0.657747] SCSI subsystem initialized
    [ 0.661333] ACPI: bus type scsi registered
    [ 0.665103] libata version 3.00 loaded.
    [ 0.711249] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.711257] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.711260] usb usb1: Product: OHCI Host Controller
    [ 0.711263] usb usb1: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.711266] usb usb1: SerialNumber: 0000:00:12.0
    [ 0.711963] hub 1-0:1.0: USB hub found
    [ 0.711978] hub 1-0:1.0: 5 ports detected
    [ 0.712324] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 0.712335] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 2
    [ 0.712343] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.712361] ehci-pci 0000:00:12.2: debug port 1
    [ 0.712428] ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb4b000
    [ 0.718188] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.718242] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [ 0.718249] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.718255] usb usb2: Product: EHCI Host Controller
    [ 0.718260] usb usb2: Manufacturer: Linux 3.8.8-1-lqx ehci_hcd
    [ 0.718264] usb usb2: SerialNumber: 0000:00:12.2
    [ 0.718762] hub 2-0:1.0: USB hub found
    [ 0.718770] hub 2-0:1.0: 5 ports detected
    [ 0.719034] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 0.719043] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 3
    [ 0.719061] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.719099] ehci-pci 0000:00:13.2: debug port 1
    [ 0.719142] ehci-pci 0000:00:13.2: irq 17, io mem 0xfeb49000
    [ 0.725166] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.725211] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
    [ 0.725218] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.725224] usb usb3: Product: EHCI Host Controller
    [ 0.725230] usb usb3: Manufacturer: Linux 3.8.8-1-lqx ehci_hcd
    [ 0.725235] usb usb3: SerialNumber: 0000:00:13.2
    [ 0.725648] hub 3-0:1.0: USB hub found
    [ 0.725656] hub 3-0:1.0: 5 ports detected
    [ 0.725886] ahci 0000:00:11.0: version 3.0
    [ 0.726156] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
    [ 0.726162] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 0.730354] scsi0 : ahci
    [ 0.730816] scsi1 : ahci
    [ 0.731197] scsi2 : ahci
    [ 0.731481] scsi3 : ahci
    [ 0.731816] scsi4 : ahci
    [ 0.732139] scsi5 : ahci
    [ 0.732460] ata1: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d100 irq 19
    [ 0.732464] ata2: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d180 irq 19
    [ 0.732468] ata3: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d200 irq 19
    [ 0.732471] ata4: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d280 irq 19
    [ 0.732475] ata5: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d300 irq 19
    [ 0.732478] ata6: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d380 irq 19
    [ 0.732661] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 0.732683] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
    [ 0.732720] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfeb4a000
    [ 0.787137] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.787142] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.787145] usb usb4: Product: OHCI Host Controller
    [ 0.787148] usb usb4: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.787151] usb usb4: SerialNumber: 0000:00:13.0
    [ 0.787659] hub 4-0:1.0: USB hub found
    [ 0.787670] hub 4-0:1.0: 5 ports detected
    [ 0.787909] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 0.787918] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 5
    [ 0.787944] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfeb48000
    [ 0.842042] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.842046] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.842049] usb usb5: Product: OHCI Host Controller
    [ 0.842052] usb usb5: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.842054] usb usb5: SerialNumber: 0000:00:14.5
    [ 0.842401] hub 5-0:1.0: USB hub found
    [ 0.842410] hub 5-0:1.0: 2 ports detected
    [ 1.036735] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.036809] ata3: SATA link down (SStatus 0 SControl 300)
    [ 1.037712] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.037754] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.037797] ata6: SATA link down (SStatus 0 SControl 300)
    [ 1.121601] usb 2-5: new high-speed USB device number 3 using ehci-pci
    [ 1.191503] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.197711] ata1.00: ATA-8: ST500LM012 HN-M500MBB, 2AR10002, max UDMA/133
    [ 1.197719] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.203906] ata1.00: configured for UDMA/133
    [ 1.204335] scsi 0:0:0:0: Direct-Access ATA ST500LM012 HN-M5 2AR1 PQ: 0 ANSI: 5
    [ 1.212034] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.212041] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.212125] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.212130] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.212166] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.239240] usb 2-5: New USB device found, idVendor=12d1, idProduct=1506
    [ 1.239251] usb 2-5: New USB device strings: Mfr=4, Product=3, SerialNumber=0
    [ 1.239257] usb 2-5: Product: HUAWEI Mobile
    [ 1.239263] usb 2-5: Manufacturer: Huawei Technologies
    [ 1.239601] sda: sda1 sda2 sda3 sda4
    [ 1.241058] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.248373] Initializing USB Mass Storage driver...
    [ 1.248653] scsi6 : usb-storage 2-5:1.5
    [ 1.249032] scsi7 : usb-storage 2-5:1.6
    [ 1.250887] usbcore: registered new interface driver usb-storage
    [ 1.250892] USB Mass Storage support registered.
    [ 1.346272] usb 3-4: new high-speed USB device number 2 using ehci-pci
    [ 1.402164] tsc: Refined TSC clocksource calibration: 1646.493 MHz
    [ 1.402180] Switching to clocksource tsc
    [ 1.463721] usb 3-4: New USB device found, idVendor=2232, idProduct=1020
    [ 1.463730] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 1.463737] usb 3-4: Product: WebCam SC-0311139N
    [ 1.463743] usb 3-4: Manufacturer: Image Processor
    [ 1.463748] usb 3-4: SerialNumber: SM3711
    [ 1.690741] usb 1-3: new full-speed USB device number 2 using ohci_hcd
    [ 1.847612] usb 1-3: New USB device found, idVendor=0a5c, idProduct=219c
    [ 1.847624] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 1.847631] usb 1-3: Product: Broadcom BCM2070 Bluetooth Device
    [ 1.847637] usb 1-3: Manufacturer: Broadcom Corp
    [ 1.847642] usb 1-3: SerialNumber: 30144A229E4B
    [ 2.058659] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.250157] scsi 6:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 2
    [ 2.250876] scsi 7:0:0:0: Direct-Access HUAWEI TF CARD Storage PQ: 0 ANSI: 2
    [ 2.302154] sd 7:0:0:0: [sdb] Attached SCSI removable disk
    [ 2.827197] systemd[1]: systemd 202 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.065305] systemd[1]: Inserted module 'autofs4'
    [ 3.083044] systemd[1]: Set hostname to <REM>.
    [ 3.104478] systemd[1]: /etc/mtab is not a symlink or not pointing to /proc/self/mounts. This is not supported anymore. Please make sure to replace this file by a symlink to avoid incorrect or misleading mount(8) output.
    [ 3.673989] systemd[1]: logged here: 'Support for option SysVStartPriority= has been disabled at compile time and is ignored': 0
    [ 3.928323] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.928445] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.928473] systemd[1]: Starting Remote File Systems.
    [ 3.928499] systemd[1]: Reached target Remote File Systems.
    [ 3.928520] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.928571] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.928589] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.928636] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.928654] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.928708] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.928727] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.928777] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.928798] systemd[1]: Starting Encrypted Volumes.
    [ 3.928818] systemd[1]: Reached target Encrypted Volumes.
    [ 3.928949] systemd[1]: Starting udev Kernel Socket.
    [ 3.928994] systemd[1]: Listening on udev Kernel Socket.
    [ 3.929083] systemd[1]: Starting udev Control Socket.
    [ 3.929127] systemd[1]: Listening on udev Control Socket.
    [ 3.929179] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.929401] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.929433] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.929511] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.929537] systemd[1]: Starting Journal Socket.
    [ 3.929627] systemd[1]: Listening on Journal Socket.
    [ 3.929668] systemd[1]: Mounting Debug File System...
    [ 3.941501] systemd[1]: Starting Setup Virtual Console...
    [ 3.948777] systemd[1]: Starting udev Coldplug all Devices...
    [ 4.302692] systemd[1]: Started Set Up Additional Binary Formats.
    [ 4.302896] systemd[1]: Starting Create static device nodes in /dev...
    [ 4.311080] systemd[1]: Mounting Huge Pages File System...
    [ 4.333926] systemd[1]: Starting Apply Kernel Variables...
    [ 4.344029] systemd[1]: Starting Journal Service...
    [ 4.354053] systemd[1]: Started Journal Service.
    [ 4.354159] systemd[1]: Mounting POSIX Message Queue File System...
    [ 4.398484] systemd[1]: Starting Load Kernel Modules...
    [ 4.405897] systemd[1]: Expecting device dev-sda2.device...
    [ 4.405958] systemd[1]: Started File System Check on Root Device.
    [ 4.405985] systemd[1]: Mounting Temporary Directory...
    [ 4.444783] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 5.141813] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15
    [ 5.523573] vboxdrv: Found 2 processor cores.
    [ 5.523876] vboxdrv: fAsync=0 offMin=0x37b offMax=0x21cc
    [ 5.524228] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 5.524230] vboxdrv: Successfully loaded version 4.2.12_OSE (interface 0x001a0004).
    [ 5.585084] systemd-udevd[1417]: starting version 202
    [ 6.551072] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
    [ 6.551149] ACPI: Lid Switch [LID]
    [ 6.551279] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 6.551286] ACPI: Power Button [PWRB]
    [ 6.551432] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    [ 6.551436] ACPI: Sleep Button [SLPB]
    [ 6.551556] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 6.551560] ACPI: Power Button [PWRF]
    [ 6.557442] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.570168] ACPI: AC Adapter [ADP1] (on-line)
    [ 6.576119] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 6.581379] acpi device:31: registered as cooling_device2
    [ 6.581414] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 6.581535] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 6.685232] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.685246] ACPI: Battery Slot [BAT1] (battery present)
    [ 6.830273] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 6.830383] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 7.576782] [drm] Initialized drm 1.1.0 20060810
    [ 7.618495] [drm] VGACON disable radeon kernel modesetting.
    [ 7.620005] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 7.620007] [drm] No driver support for vblank timestamp query.
    [ 7.620012] [drm] Initialized radeon 1.33.0 20080528 for 0000:00:01.0 on minor 0
    [ 7.767784] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 7.767790] Disabling lock debugging due to kernel taint
    [ 7.783921] <6>[fglrx] Maximum main memory to use for locked dma buffers: 3540 MBytes.
    [ 7.784096] <6>[fglrx] vendor: 1002 device: 9806 count: 1
    [ 7.784621] <6>[fglrx] ioport: bar 1, base 0xf000, size: 0x100
    [ 7.785024] <6>[fglrx] Kernel PAT support is enabled
    [ 7.785057] <6>[fglrx] module loaded - fglrx 9.1.11 [Dec 19 2012] with 1 minors
    [ 8.571990] Adding 4194300k swap on /dev/sda2. Priority:-1 extents:1 across:4194300k
    [ 10.299762] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 10.935682] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
    [ 10.950057] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x16, 0x0a.
    [ 11.022649] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input7
    [ 11.032941] microcode: CPU0: patch_level=0x05000101
    [ 14.667774] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 14.684494] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
    [ 14.684678] sp5100_tco: PCI Revision ID: 0x42
    [ 14.684818] sp5100_tco: Using 0xfed80b00 for watchdog MMIO address
    [ 14.684869] sp5100_tco: Last reboot was not triggered by watchdog.
    [ 14.685016] sp5100_tco: initialized (0xffffc9000003eb00). heartbeat=60 sec (nowayout=0)
    [ 14.913699] systemd-logind[1501]: Watching system buttons on /dev/input/event1 (Lid Switch)
    [ 14.914754] systemd-logind[1501]: Watching system buttons on /dev/input/event2 (Power Button)
    [ 14.915967] systemd-logind[1501]: Watching system buttons on /dev/input/event3 (Sleep Button)
    [ 14.916946] systemd-logind[1501]: Watching system buttons on /dev/input/event4 (Power Button)
    [ 14.925385] systemd-logind[1501]: Watching system buttons on /dev/input/event5 (Video Bus)
    [ 14.993314] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 14.993343] microcode: CPU1: patch_level=0x05000101
    [ 14.994827] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 15.200573] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 15.200964] r8169 0000:05:00.0: irq 40 for MSI/MSI-X
    [ 15.204405] r8169 0000:05:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000034000, 50:b7:c3:02:d7:05, XID 0c900800 IRQ 40
    [ 15.204413] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 15.290455] systemd-udevd[1420]: renamed network interface eth0 to enp5s0
    [ 15.292678] systemd-sysctl[2033]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 15.404438] samsung_laptop: detected SABI interface: SwSmi@
    [ 15.404444] samsung_laptop: Backlight controlled by ACPI video driver
    [ 15.452716] fglrx_pci 0000:00:01.0: irq 41 for MSI/MSI-X
    [ 15.453760] <6>[fglrx] Firegl kernel thread PID: 2044
    [ 15.453957] <6>[fglrx] Firegl kernel thread PID: 2045
    [ 15.454361] <6>[fglrx] Firegl kernel thread PID: 2046
    [ 15.454513] <6>[fglrx] IRQ 41 Enabled
    [ 15.459141] <6>[fglrx] Gart USWC size:1156 M.
    [ 15.459145] <6>[fglrx] Gart cacheable size:458 M.
    [ 15.459152] <6>[fglrx] Reserved FB block: Shared offset:0, size:1000000
    [ 15.459154] <6>[fglrx] Reserved FB block: Unshared offset:fc54000, size:3a0000
    [ 15.459157] <6>[fglrx] Reserved FB block: Unshared offset:fff4000, size:c000
    [ 15.461998] systemd-sysctl[2047]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 15.698292] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 16.424442] kvm: Nested Virtualization enabled
    [ 16.424448] kvm: Nested Paging enabled
    [ 16.499708] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.716267] Bluetooth: Core ver 2.16
    [ 16.718230] NET: Registered protocol family 31
    [ 16.718232] Bluetooth: HCI device and connection manager initialized
    [ 16.718245] Bluetooth: HCI socket layer initialized
    [ 16.718249] Bluetooth: L2CAP socket layer initialized
    [ 16.718259] Bluetooth: SCO socket layer initialized
    [ 16.733212] media: Linux media interface: v0.10
    [ 16.782160] lib80211: common routines for IEEE802.11 drivers
    [ 16.782166] lib80211_crypt: registered algorithm 'NULL'
    [ 16.784149] Linux video capture interface: v2.00
    [ 16.815091] usbcore: registered new interface driver usbserial
    [ 16.816124] usbcore: registered new interface driver usbserial_generic
    [ 16.817094] usbserial: USB Serial support registered for generic
    [ 16.906678] usbcore: registered new interface driver option
    [ 16.909342] usbserial: USB Serial support registered for GSM modem (1-port)
    [ 16.909431] option 2-5:1.0: GSM modem (1-port) converter detected
    [ 16.912145] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB0
    [ 16.912225] option 2-5:1.3: GSM modem (1-port) converter detected
    [ 16.915130] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB1
    [ 16.915190] option 2-5:1.4: GSM modem (1-port) converter detected
    [ 16.921982] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB2
    [ 16.986926] systemd-udevd[1427]: error opening ATTR{/sys/devices/pci0000:00/0000:00:12.2/usb2/2-5/2-5:1.5/host6/scsi_host/host6/link_power_management_policy} for writing: No such file or directory
    [ 16.988089] uvcvideo: Found UVC 1.00 device WebCam SC-0311139N (2232:1020)
    [ 16.993277] systemd-udevd[1428]: error opening ATTR{/sys/devices/pci0000:00/0000:00:12.2/usb2/2-5/2-5:1.6/host7/scsi_host/host7/link_power_management_policy} for writing: No such file or directory
    [ 17.002663] input: WebCam SC-0311139N as /devices/pci0000:00/0000:00:13.2/usb3/3-4/3-4:1.0/input/input8
    [ 17.011802] usbcore: registered new interface driver uvcvideo
    [ 17.011808] USB Video Class driver (1.1.1)
    [ 17.036157] snd_hda_intel 0000:00:01.1: irq 42 for MSI/MSI-X
    [ 17.055032] usbcore: registered new interface driver cdc_wdm
    [ 17.076782] qmi_wwan 2-5:1.1: cdc-wdm0: USB WDM device
    [ 17.085492] qmi_wwan 2-5:1.1 wwan0: register 'qmi_wwan' at usb-0000:00:12.2-5, WWAN/QMI device, 02:50:f3:00:00:00
    [ 17.088340] usbcore: registered new interface driver qmi_wwan
    [ 17.173910] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input9
    [ 17.402599] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 17.546699] input: HDA ATI SB Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
    [ 17.549997] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
    [ 17.554480] lib80211_crypt: registered algorithm 'TKIP'
    [ 17.557087] eth0: Broadcom BCM4727 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 17.587070] sr0: scsi-1 drive
    [ 17.587077] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 17.590908] sr 6:0:0:0: Attached scsi CD-ROM sr0
    [ 17.764781] systemd-udevd[1426]: renamed network interface wwan0 to wwp0s18f2u5i1
    [ 17.767245] systemd-sysctl[2747]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.772802] systemd-udevd[1427]: renamed network interface eth0 to wlp3s0
    [ 17.776265] systemd-sysctl[2756]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.780048] systemd-sysctl[2755]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.786438] systemd-sysctl[2759]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 18.086526] usbcore: registered new interface driver btusb
    [ 18.769655] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff880136590af8 (20121018/exresop-422)
    [ 18.769669] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 18.769676] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 18.769691] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 20.495319] vboxpci: IOMMU not found (not registered)
    [ 22.447778] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 22.447784] Bluetooth: BNEP filters: protocol multicast
    [ 22.447799] Bluetooth: BNEP socket layer initialized
    [ 22.595480] Bluetooth: RFCOMM TTY layer initialized
    [ 22.595500] Bluetooth: RFCOMM socket layer initialized
    [ 22.595502] Bluetooth: RFCOMM ver 1.11
    [ 24.407804] r8169 0000:05:00.0 enp5s0: link down
    [ 24.815261] NET: Registered protocol family 10
    [ 24.815665] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
    [ 31.811205] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15,commit=0
    [ 32.023742] WARNING! power/level is deprecated; use power/control instead
    [ 162.594332] fuse init (API version 7.20)
    [ 181.712247] xfce4-session[4386]: segfault at ffffffff00000000 ip 00007fe7c8be9537 sp 00007fffd9c3f2e0 error 5 in libglib-2.0.so.0.3600.1[7fe7c8b86000+fc000]
    [ 183.784141] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 184.997887] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff88013aae2948 (20121018/exresop-422)
    [ 184.997901] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 184.997908] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 184.997923] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 405.815701] NET: Registered protocol family 17
    [ 1429.517360] xfce4-session[5257]: segfault at ffffffff00000000 ip 00007f53c2ee6537 sp 00007fff6060c2d0 error 5 in libglib-2.0.so.0.3600.1[7f53c2e83000+fc000]
    [ 1430.198201] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15,commit=600
    [ 1431.620829] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=600,commit=600
    [ 1432.769216] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 1434.176644] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff880136590360 (20121018/exresop-422)
    [ 1434.176667] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 1434.176680] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 1434.176709] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 1477.326788] usb 1-3: USB disconnect, device number 2
    Any help appreciated.
    Last edited by NinjaBus (2013-04-28 09:12:19)

    hadrons123 wrote:does it happen if you use the default arch kernel?
    Yes, it keeps happening even with the default kernel when I try to shut down/suspend the computer (Alt-F4 key combination). I've read on some russian forum that it's the problem in recently upgraded glib2 (as they think), however downgrade didn't help. I'll try to check whether xfce4-session is to blame.
    EDIT: It's definitely not xfce4-session, I tried previous version. Also, while running downgrade I saw that there is a newer version of glib2 in ARM, which is much more unstable, so I'm using 2.36.1-1.
    Last edited by NinjaBus (2013-04-28 15:49:59)

  • Problem with Intel/ATI Hybrid Graphics

    Hi, I Just got a new laptop with the intel(hd4400)/ati(hd8670m) hybrid graphics. I followed exactly this https://wiki.archlinux.org/index.php/Hy … ons_So_Far, trying to disable my discrete card, but I did not have vgaswitcheroo under /sys/kernel/debug. Then I did a reboot, it stopped booting after FSCK, no login for me. I did add radeon and i915 to MODULES in /etc/mkinitcpio.conf if that's what you are wondering. I had to chroot with Arch installer and add a basic 20-intel.conf file to be able to boot into my DE.
    dmesg output below shows that I had radeon loaded, but still no vgaswitcheroo directory.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000006efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000006f000-0x000000000006ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000070000-0x0000000000087fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000094d5ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000094d60000-0x0000000095d5ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000095d60000-0x000000009a36efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009a36f000-0x000000009aebefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000015f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by INSYDE Corp.
    [ 0.000000] efi: ACPI=0x9affe000 ACPI 2.0=0x9affe014 SMBIOS=0x9aebef98
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
    [ 0.000000] efi: mem02: type=0, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    [ 0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem04: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x000000000009f000) (0MB)
    [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001051000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000001051000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f51000) (15MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000002f51000-0x000000003737a000) (836MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x000000003737a000-0x00000000379b5000) (6MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x00000000379b5000-0x000000006d8c0000) (863MB)
    [ 0.000000] efi: mem12: type=2, attr=0xf, range=[0x000000006d8c0000-0x0000000092d70000) (596MB)
    [ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x0000000092d70000-0x0000000092d90000) (0MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000092d90000-0x0000000093ee1000) (17MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x0000000093ee1000-0x0000000094d60000) (14MB)
    [ 0.000000] efi: mem16: type=0, attr=0xf, range=[0x0000000094d60000-0x0000000095d60000) (16MB)
    [ 0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000095d60000-0x0000000095f52000) (1MB)
    [ 0.000000] efi: mem18: type=1, attr=0xf, range=[0x0000000095f52000-0x0000000095f6f000) (0MB)
    [ 0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000095f6f000-0x0000000097260000) (18MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x0000000097260000-0x0000000097262000) (0MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x0000000097262000-0x0000000097272000) (0MB)
    [ 0.000000] efi: mem22: type=2, attr=0xf, range=[0x0000000097272000-0x000000009727c000) (0MB)
    [ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x000000009727c000-0x0000000097c77000) (9MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x0000000097c77000-0x0000000097c7a000) (0MB)
    [ 0.000000] efi: mem25: type=4, attr=0xf, range=[0x0000000097c7a000-0x0000000097c81000) (0MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x0000000097c81000-0x0000000097c82000) (0MB)
    [ 0.000000] efi: mem27: type=4, attr=0xf, range=[0x0000000097c82000-0x0000000097db2000) (1MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x0000000097db2000-0x0000000097db3000) (0MB)
    [ 0.000000] efi: mem29: type=4, attr=0xf, range=[0x0000000097db3000-0x0000000097e0a000) (0MB)
    [ 0.000000] efi: mem30: type=3, attr=0xf, range=[0x0000000097e0a000-0x0000000097e17000) (0MB)
    [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x0000000097e17000-0x0000000097e1f000) (0MB)
    [ 0.000000] efi: mem32: type=3, attr=0xf, range=[0x0000000097e1f000-0x0000000097e20000) (0MB)
    [ 0.000000] efi: mem33: type=4, attr=0xf, range=[0x0000000097e20000-0x0000000097e2c000) (0MB)
    [ 0.000000] efi: mem34: type=3, attr=0xf, range=[0x0000000097e2c000-0x0000000097e34000) (0MB)
    [ 0.000000] efi: mem35: type=4, attr=0xf, range=[0x0000000097e34000-0x0000000097e4c000) (0MB)
    [ 0.000000] efi: mem36: type=7, attr=0xf, range=[0x0000000097e4c000-0x0000000097e4d000) (0MB)
    [ 0.000000] efi: mem37: type=4, attr=0xf, range=[0x0000000097e4d000-0x0000000097e50000) (0MB)
    [ 0.000000] efi: mem38: type=3, attr=0xf, range=[0x0000000097e50000-0x0000000097e57000) (0MB)
    [ 0.000000] efi: mem39: type=4, attr=0xf, range=[0x0000000097e57000-0x0000000097e6e000) (0MB)
    [ 0.000000] efi: mem40: type=3, attr=0xf, range=[0x0000000097e6e000-0x0000000097ee9000) (0MB)
    [ 0.000000] efi: mem41: type=4, attr=0xf, range=[0x0000000097ee9000-0x0000000097efc000) (0MB)
    [ 0.000000] efi: mem42: type=7, attr=0xf, range=[0x0000000097efc000-0x0000000097efd000) (0MB)
    [ 0.000000] efi: mem43: type=4, attr=0xf, range=[0x0000000097efd000-0x0000000097f0b000) (0MB)
    [ 0.000000] efi: mem44: type=7, attr=0xf, range=[0x0000000097f0b000-0x0000000097f0d000) (0MB)
    [ 0.000000] efi: mem45: type=4, attr=0xf, range=[0x0000000097f0d000-0x000000009810f000) (2MB)
    [ 0.000000] efi: mem46: type=3, attr=0xf, range=[0x000000009810f000-0x0000000098111000) (0MB)
    [ 0.000000] efi: mem47: type=4, attr=0xf, range=[0x0000000098111000-0x0000000099f6f000) (30MB)
    [ 0.000000] efi: mem48: type=3, attr=0xf, range=[0x0000000099f6f000-0x000000009a36f000) (4MB)
    [ 0.000000] efi: mem49: type=5, attr=0x800000000000000f, range=[0x000000009a36f000-0x000000009a56f000) (2MB)
    [ 0.000000] efi: mem50: type=6, attr=0x800000000000000f, range=[0x000000009a56f000-0x000000009aabf000) (5MB)
    [ 0.000000] efi: mem51: type=0, attr=0xf, range=[0x000000009aabf000-0x000000009aebf000) (4MB)
    [ 0.000000] efi: mem52: type=10, attr=0xf, range=[0x000000009aebf000-0x000000009afbf000) (1MB)
    [ 0.000000] efi: mem53: type=9, attr=0xf, range=[0x000000009afbf000-0x000000009afff000) (0MB)
    [ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x000000009afff000-0x000000009b000000) (0MB)
    [ 0.000000] efi: mem55: type=7, attr=0xf, range=[0x0000000100000000-0x000000015f600000) (1526MB)
    [ 0.000000] efi: mem56: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem57: type=0, attr=0x0, range=[0x000000009b000000-0x000000009fa00000) (74MB)
    [ 0.000000] efi: mem58: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    [ 0.000000] efi: mem59: type=0, attr=0x0, range=[0x00000000fe101000-0x00000000fe113000) (0MB)
    [ 0.000000] efi: mem60: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb10000) (0MB)
    [ 0.000000] efi: mem61: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem62: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed1c000) (0MB)
    [ 0.000000] efi: mem63: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem64: type=11, attr=0x8000000000000001, range=[0x00000000fed20000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem65: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x0000000100000000) (4MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Dell Inc. Inspiron 3537/028XKX, BIOS A05 08/30/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x15f600 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-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7F80000000 write-back
    [ 0.000000] 1 base 0080000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 009B000000 mask 7FFF000000 uncachable
    [ 0.000000] 3 base 009C000000 mask 7FFC000000 uncachable
    [ 0.000000] 4 base 00FFC00000 mask 7FFFC00000 write-protect
    [ 0.000000] 5 base 0100000000 mask 7F80000000 write-back
    [ 0.000000] 6 base 015F600000 mask 7FFFE00000 uncachable
    [ 0.000000] 7 base 015F800000 mask 7FFF800000 uncachable
    [ 0.000000] 8 base 0160000000 mask 7FE0000000 uncachable
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff88000007e000] 7e000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
    [ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
    [ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15f400000-0x15f5fffff]
    [ 0.000000] [mem 0x15f400000-0x15f5fffff] page 2M
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15c000000-0x15f3fffff]
    [ 0.000000] [mem 0x15c000000-0x15f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x15bffffff]
    [ 0.000000] [mem 0x100000000-0x13fffffff] page 1G
    [ 0.000000] [mem 0x140000000-0x15bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x94bfffff] page 2M
    [ 0.000000] [mem 0x94c00000-0x94d5ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] [mem 0x95d60000-0x95dfffff] page 4k
    [ 0.000000] [mem 0x95e00000-0x9a1fffff] page 2M
    [ 0.000000] [mem 0x9a200000-0x9a36efff] page 4k
    [ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
    [ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9afff000-0x9affffff]
    [ 0.000000] [mem 0x9afff000-0x9affffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x3737a000-0x379b4fff]
    [ 0.000000] ACPI: RSDP 000000009affe014 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 000000009affe210 000AC (v01 DELL CL09 00000001 01000013)
    [ 0.000000] ACPI: FACP 000000009aff8000 0010C (v05 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20130517/tbfadt-202)
    [ 0.000000] ACPI: DSDT 000000009afe9000 0B8AC (v01 DELL CL09 00000000 ASL 00040000)
    [ 0.000000] ACPI: FACS 000000009afb8000 00040
    [ 0.000000] ACPI: SLIC 000000009affd000 00176 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: UEFI 000000009affc000 00236 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: FPDT 000000009affa000 00044 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASF! 000000009aff9000 000A5 (v32 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: HPET 000000009aff7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: APIC 000000009aff6000 0008C (v03 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: MCFG 000000009aff5000 0003C (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afe8000 006FE (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 000000009afe6000 00028 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASPT 000000009afe4000 00034 (v07 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: DBGP 000000009afe3000 00034 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdd000 00539 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdc000 00AD8 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd8000 0343C (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd5000 01E3D (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BGRT 000000009afd7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000015f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x15f5fffff]
    [ 0.000000] NODE_DATA [mem 0x15f5f8000-0x15f5fcfff]
    [ 0.000000] [ffffea0000000000-ffffea00057fffff] PMD -> [ffff88015ac00000-ffff88015ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x15f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0006efff]
    [ 0.000000] node 0: [mem 0x00070000-0x00087fff]
    [ 0.000000] node 0: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] node 0: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] node 0: [mem 0x9afff000-0x9affffff]
    [ 0.000000] node 0: [mem 0x100000000-0x15f5fffff]
    [ 0.000000] On node 0 totalpages: 1018102
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 22 pages reserved
    [ 0.000000] DMA zone: 3974 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 9742 pages used for memmap
    [ 0.000000] DMA32 zone: 623472 pages, LIFO batch:31
    [ 0.000000] Normal zone: 6104 pages used for memmap
    [ 0.000000] Normal zone: 390656 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 56
    [ 0.000000] PM: Registered nosave memory: [mem 0x0006f000-0x0006ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x94d60000-0x95d5ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9a36f000-0x9aebefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9aebf000-0x9afbefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9afbf000-0x9affefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b000000-0x9f9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfe100fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe113000-0xfeafffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb10000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [ 0.000000] e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88015f200000 s86528 r8192 d24064 u262144
    [ 0.000000] pcpu-alloc: s86528 r8192 d24064 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1002170
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 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: 3856592K/4072408K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 215816K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:1016 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2294.570 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4590.35 BogoMIPS (lpj=7648566)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000040] init_memory_mapping: [mem 0x9a36f000-0x9a56efff]
    [ 0.000042] [mem 0x9a36f000-0x9a56efff] page 4k
    [ 0.000064] init_memory_mapping: [mem 0x9a56f000-0x9aabefff]
    [ 0.000066] [mem 0x9a56f000-0x9a5fffff] page 4k
    [ 0.000067] [mem 0x9a600000-0x9a9fffff] page 2M
    [ 0.000069] [mem 0x9aa00000-0x9aabefff] page 4k
    [ 0.059748] Security Framework initialized
    [ 0.059759] AppArmor: AppArmor disabled by boot time parameter
    [ 0.059761] Yama: becoming mindful.
    [ 0.060120] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.061320] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.061810] Mount-cache hash table entries: 256
    [ 0.062052] Initializing cgroup subsys memory
    [ 0.062063] Initializing cgroup subsys devices
    [ 0.062065] Initializing cgroup subsys freezer
    [ 0.062067] Initializing cgroup subsys net_cls
    [ 0.062069] Initializing cgroup subsys blkio
    [ 0.062098] CPU: Physical Processor ID: 0
    [ 0.062100] CPU: Processor Core ID: 0
    [ 0.062105] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.063398] mce: CPU supports 7 MCE banks
    [ 0.063415] CPU0: Thermal monitoring enabled (TM1)
    [ 0.063429] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.063562] Freeing SMP alternatives memory: 20K (ffffffff819e6000 - ffffffff819eb000)
    [ 0.064699] ACPI: Core revision 20130517
    [ 0.077923] ACPI: All ACPI Tables successfully acquired
    [ 0.083767] ftrace: allocating 20100 entries in 79 pages
    [ 0.096243] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.129231] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (fam: 06, model: 45, stepping: 01)
    [ 0.129240] TSC deadline timer enabled
    [ 0.129252] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.129261] ... version: 3
    [ 0.129262] ... bit width: 48
    [ 0.129263] ... generic registers: 4
    [ 0.129265] ... value mask: 0000ffffffffffff
    [ 0.129267] ... max period: 0000ffffffffffff
    [ 0.129268] ... fixed-purpose events: 3
    [ 0.129269] ... event mask: 000000070000000f
    [ 0.167457] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.152681] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.209878] Brought up 4 CPUs
    [ 0.209882] smpboot: Total of 4 processors activated (18363.41 BogoMIPS)
    [ 0.215147] devtmpfs: initialized
    [ 0.216459] PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
    [ 0.217451] RTC time: 2:22:13, date: 11/08/13
    [ 0.217501] NET: Registered protocol family 16
    [ 0.217661] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.217663] ACPI: bus type PCI registered
    [ 0.217666] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.217737] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.217740] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.252752] PCI: Using configuration type 1 for base access
    [ 0.252922] dmi type 0xB1 record - unknown flag
    [ 0.253726] bio: create slab <bio-0> at 0
    [ 0.253868] ACPI: Added _OSI(Module Device)
    [ 0.253870] ACPI: Added _OSI(Processor Device)
    [ 0.253872] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.253874] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.256659] ACPI: EC: Look up EC in DSDT
    [ 0.259524] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.272874] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.274013] ACPI: SSDT 000000009ae7dc18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.274706] ACPI: Dynamic OEM Table Load:
    [ 0.274709] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.282313] ACPI: SSDT 000000009ae7d618 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.283108] ACPI: Dynamic OEM Table Load:
    [ 0.283111] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.301675] ACPI: SSDT 000000009ae7cd98 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.302368] ACPI: Dynamic OEM Table Load:
    [ 0.302370] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.431586] ACPI: Interpreter enabled
    [ 0.431597] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
    [ 0.431606] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.431630] ACPI: (supports S0 S3 S4 S5)
    [ 0.431632] ACPI: Using IOAPIC for interrupt routing
    [ 0.431666] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.431855] ACPI: No dock devices found.
    [ 0.634551] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [ 0.634846] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.635302] acpi PNP0A08:00: ACPI _OSC control (0x1d) granted
    [ 0.635816] PCI host bridge to bus 0000:00
    [ 0.635820] pci_bus 0000:00: root bus resource [bus 00-fe]
    [ 0.635823] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.635825] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.635828] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.635830] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.635832] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.635834] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.635836] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.635838] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.635840] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.635842] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.635844] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.635846] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.635848] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.635850] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.635852] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.635854] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    [ 0.635856] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
    [ 0.635867] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.636037] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.636053] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
    [ 0.636062] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 0.636069] pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
    [ 0.636232] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.636243] pci 0000:00:03.0: reg 0x10: [mem 0xc0810000-0xc0813fff 64bit]
    [ 0.636435] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.636456] pci 0000:00:14.0: reg 0x10: [mem 0xc0800000-0xc080ffff 64bit]
    [ 0.636523] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.636647] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.636693] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.636717] pci 0000:00:16.0: reg 0x10: [mem 0xc0818000-0xc081801f 64bit]
    [ 0.636795] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.636949] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.636965] pci 0000:00:1b.0: reg 0x10: [mem 0xc0814000-0xc0817fff 64bit]
    [ 0.637037] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.637182] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
    [ 0.637255] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.637400] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.637446] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.637518] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.637662] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
    [ 0.637734] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.637885] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.638879] pci 0000:00:1d.0: reg 0x10: [mem 0xc081c000-0xc081c3ff]
    [ 0.644729] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.644857] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.644903] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.645161] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
    [ 0.645179] pci 0000:00:1f.2: reg 0x10: [io 0x5088-0x508f]
    [ 0.645188] pci 0000:00:1f.2: reg 0x14: [io 0x5094-0x5097]
    [ 0.645196] pci 0000:00:1f.2: reg 0x18: [io 0x5080-0x5087]
    [ 0.645205] pci 0000:00:1f.2: reg 0x1c: [io 0x5090-0x5093]
    [ 0.645213] pci 0000:00:1f.2: reg 0x20: [io 0x5060-0x507f]
    [ 0.645222] pci 0000:00:1f.2: reg 0x24: [mem 0xc081b000-0xc081b7ff]
    [ 0.645264] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.645401] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.645417] pci 0000:00:1f.3: reg 0x10: [mem 0xc0819000-0xc08190ff 64bit]
    [ 0.645440] pci 0000:00:1f.3: reg 0x20: [io 0x5040-0x505f]
    [ 0.645679] pci 0000:01:00.0: [10ec:8136] type 00 class 0x020000
    [ 0.645710] pci 0000:01:00.0: reg 0x10: [io 0x4000-0x40ff]
    [ 0.645750] pci 0000:01:00.0: reg 0x18: [mem 0xc0700000-0xc0700fff 64bit]
    [ 0.645779] pci 0000:01:00.0: reg 0x20: [mem 0xc0400000-0xc0403fff 64bit pref]
    [ 0.645873] pci 0000:01:00.0: supports D1 D2
    [ 0.645875] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.652308] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.652312] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.652316] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.652322] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.652414] pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
    [ 0.652447] pci 0000:02:00.0: reg 0x10: [mem 0xc0600000-0xc067ffff 64bit]
    [ 0.652527] pci 0000:02:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    [ 0.652608] pci 0000:02:00.0: supports D1 D2
    [ 0.652610] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.658964] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.658970] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.659066] pci 0000:03:00.0: [1002:6660] type 00 class 0x038000
    [ 0.659093] pci 0000:03:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.659113] pci 0000:03:00.0: reg 0x18: [mem 0xc0500000-0xc053ffff 64bit]
    [ 0.659127] pci 0000:03:00.0: reg 0x20: [io 0x3000-0x30ff]
    [ 0.659154] pci 0000:03:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    [ 0.659233] pci 0000:03:00.0: supports D1 D2
    [ 0.659235] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
    [ 0.665628] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.665632] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.665636] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.665642] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.665658] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.726347] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726411] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726470] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726529] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726588] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726646] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726705] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726765] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.727383] ACPI: Enabled 5 GPEs in block 00 to 7F
    [ 0.727392] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.727488] Found 1 acpi root devices
    [ 0.727533] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    [ 0.727642] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.727647] vgaarb: loaded
    [ 0.727648] vgaarb: bridge control possible 0000:00:02.0
    [ 0.727700] PCI: Using ACPI for IRQ routing
    [ 0.734096] PCI: pci_cache_line_size set to 64 bytes
    [ 0.734149] e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
    [ 0.734151] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    [ 0.734152] e820: reserve RAM buffer [mem 0x94d60000-0x97ffffff]
    [ 0.734154] e820: reserve RAM buffer [mem 0x9a36f000-0x9bffffff]
    [ 0.734157] e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
    [ 0.734158] e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
    [ 0.734265] NetLabel: Initializing
    [ 0.734267] NetLabel: domain hash size = 128
    [ 0.734268] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.734282] NetLabel: unlabeled traffic allowed by default
    [ 0.734302] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.734309] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.736336] Switched to clocksource hpet
    [ 0.741791] pnp: PnP ACPI init
    [ 0.741808] ACPI: bus type PNP registered
    [ 0.741844] pnp 00:00: [dma 4]
    [ 0.741872] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.741898] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.742037] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.742091] system 00:03: [io 0x0680-0x069f] has been reserved
    [ 0.742094] system 00:03: [io 0xfd60-0xfd63] has been reserved
    [ 0.742096] system 00:03: [io 0xffff] has been reserved
    [ 0.742099] system 00:03: [io 0xffff] has been reserved
    [ 0.742101] system 00:03: [io 0xffff] has been reserved
    [ 0.742103] system 00:03: [io 0x1800-0x18fe] could not be reserved
    [ 0.742106] system 00:03: [io 0x164e-0x164f] has been reserved
    [ 0.742109] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.742169] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.742223] system 00:05: [io 0x1854-0x1857] has been reserved
    [ 0.742227] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.742290] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.742323] pnp 00:07: Plug and Play ACPI device, IDs DLL05eb PNP0f13 (active)
    [ 0.799825] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.799828] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.799831] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.799833] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.799836] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.799838] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.799840] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.799843] system 00:08: [mem 0xff000000-0xff000fff] has been reserved
    [ 0.799845] system 00:08: [mem 0xff010000-0xffffffff] could not be reserved
    [ 0.799848] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.799850] system 00:08: [mem 0x9fa22000-0x9fa22fff] has been reserved
    [ 0.799853] system 00:08: [mem 0x9fa10000-0x9fa1ffff] has been reserved
    [ 0.799856] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.800510] pnp: PnP ACPI: found 9 devices
    [ 0.800512] ACPI: bus type PNP unregistered
    [ 0.807188] pci 0000:02:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 0.807192] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 0.807227] pci 0000:00:1c.3: BAR 15: assigned [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807230] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.807234] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.807240] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.807244] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807251] pci 0000:02:00.0: BAR 6: assigned [mem 0x9fb00000-0x9fb0ffff pref]
    [ 0.807254] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.807259] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.807263] pci 0000:00:1c.3: bridge window [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807270] pci 0000:03:00.0: BAR 6: assigned [mem 0xc0540000-0xc055ffff pref]
    [ 0.807272] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.807275] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.807280] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.807285] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807584] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.807586] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.807589] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.807591] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.807593] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.807595] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.807597] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.807599] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.807601] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.807603] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.807605] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.807607] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.807609] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.807611] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.807613] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.807615] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
    [ 0.807617] pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff]
    [ 0.807619] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 0.807622] pci_bus 0000:01: resource 1 [mem 0xc0700000-0xc07fffff]
    [ 0.807624] pci_bus 0000:01: resource 2 [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807626] pci_bus 0000:02: resource 1 [mem 0xc0600000-0xc06fffff]
    [ 0.807628] pci_bus 0000:02: resource 2 [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807630] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    [ 0.807632] pci_bus 0000:03: resource 1 [mem 0xc0500000-0xc05fffff]
    [ 0.807635] pci_bus 0000:03: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807677] NET: Registered protocol family 2
    [ 0.807890] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808027] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808127] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.808150] TCP: reno registered
    [ 0.808162] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808181] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808261] NET: Registered protocol family 1
    [ 0.808274] pci 0000:00:02.0: Boot video device
    [ 0.823082] PCI: CLS 64 bytes, default 64
    [ 0.823122] Unpacking initramfs...
    [ 0.982411] Freeing initrd memory: 6380K (ffff88003737a000 - ffff8800379b5000)
    [ 0.982417] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.982420] software IO TLB [mem 0x8ed70000-0x92d70000] (64MB) mapped at [ffff88008ed70000-ffff880092d6ffff]
    [ 0.982447] Simple Boot Flag at 0x44 set to 0x1
    [ 0.982626] Scanning for low memory corruption every 60 seconds
    [ 0.982970] audit: initializing netlink socket (disabled)
    [ 0.982981] type=2000 audit(1383877333.966:1): initialized
    [ 1.000018] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.001570] zbud: loaded
    [ 1.001748] VFS: Disk quotas dquot_6.5.2
    [ 1.001801] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.001998] msgmni has been set to 7672
    [ 1.002265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.002308] io scheduler noop registered
    [ 1.002311] io scheduler deadline registered
    [ 1.002344] io scheduler cfq registered (default)
    [ 1.002441] pcieport 0000:00:1c.0: irq 56 for MSI/MSI-X
    [ 1.002526] pcieport 0000:00:1c.3: irq 57 for MSI/MSI-X
    [ 1.002598] pcieport 0000:00:1c.4: irq 58 for MSI/MSI-X
    [ 1.002681] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 1.002684] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002688] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 1.002706] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 1.002708] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002712] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 1.002728] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 1.002730] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002734] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 1.002751] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.002769] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.002888] efifb: probing for efifb
    [ 1.003509] efifb: framebuffer at 0xb0000000, mapped to 0xffffc90020e00000, using 4160k, total 4160k
    [ 1.003511] efifb: mode is 1366x768x32, linelength=5504, pages=1
    [ 1.003513] efifb: scrolling: redraw
    [ 1.003515] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 1.007477] Console: switching to colour frame buffer device 170x48
    [ 1.011265] fb0: EFI VGA frame buffer device
    [ 1.011272] intel_idle: MWAIT substates: 0x11142120
    [ 1.011274] intel_idle: v0.4 model 0x45
    [ 1.011275] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.011336] GHES: HEST is not enabled!
    [ 1.011398] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.011946] Linux agpgart interface v0.103
    [ 1.012027] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.032274] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.032308] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.032411] mousedev: PS/2 mouse device common for all mice
    [ 1.032672] rtc_cmos 00:04: RTC can wake from S4
    [ 1.032819] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 1.032857] rtc_cmos 00:04: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 1.032871] Intel P-state driver initializing.
    [ 1.032884] Intel pstate controlling: cpu 0
    [ 1.032911] Intel pstate controlling: cpu 1
    [ 1.032923] Intel pstate controlling: cpu 2
    [ 1.032935] Intel pstate controlling: cpu 3
    [ 1.033105] cpuidle: using governor ladder
    [ 1.033295] cpuidle: using governor menu
    [ 1.033356] drop_monitor: Initializing network drop monitor service
    [ 1.033431] TCP: cubic registered
    [ 1.033524] NET: Registered protocol family 10
    [ 1.033688] NET: Registered protocol family 17
    [ 1.033697] Key type dns_resolver registered
    [ 1.033905] PM: Hibernation image not present or could not be loaded.
    [ 1.033915] registered taskstats version 1
    [ 1.034407] Magic number: 5:662:358
    [ 1.034483] rtc_cmos 00:04: setting system clock to 2013-11-08 02:22:14 UTC (1383877334)
    [ 1.035212] Freeing unused kernel memory: 1140K (ffffffff818c9000 - ffffffff819e6000)
    [ 1.035213] Write protecting the kernel read-only data: 8192k
    [ 1.037442] Freeing unused kernel memory: 1084K (ffff8800024f1000 - ffff880002600000)
    [ 1.038163] Freeing unused kernel memory: 352K (ffff8800027a8000 - ffff880002800000)
    [ 1.045866] systemd-udevd[57]: starting version 208
    [ 1.050291] [drm] Initialized drm 1.1.0 20060810
    [ 1.053926] [drm] radeon kernel modesetting enabled.
    [ 1.053955] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 1.053962] radeon 0000:03:00.0: enabling device (0000 -> 0003)
    [ 1.054153] [drm] initializing kernel modesetting (HAINAN 0x1002:0x6660 0x1028:0x05EA).
    [ 1.054190] [drm] register mmio base: 0xC0500000
    [ 1.054191] [drm] register mmio size: 262144
    [ 1.055856] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.982382] tsc: Refined TSC clocksource calibration: 2294.688 MHz
    [ 2.566653] ATOM BIOS: Dell
    [ 2.566668] [drm] GPU not posted. posting now...
    [ 2.570040] radeon 0000:03:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
    [ 2.570042] radeon 0000:03:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
    [ 2.570044] [drm] Detected VRAM RAM=1024M, BAR=256M
    [ 2.570045] [drm] RAM width 64bits DDR
    [ 2.570094] [TTM] Zone kernel: Available graphics memory: 1965320 kiB
    [ 2.570095] [TTM] Initializing pool allocator
    [ 2.570099] [TTM] Initializing DMA pool allocator
    [ 2.570117] [drm] radeon: 1024M of VRAM memory ready
    [ 2.570118] [drm] radeon: 512M of GTT memory ready.
    [ 2.570129] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 2.570456] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 2.570460] [drm] PCIE gen 2 link speeds already enabled
    [ 2.570620] [drm] Loading HAINAN Microcode
    [ 2.981834] Switched to clocksource tsc
    [ 2.993997] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 2.994098] radeon 0000:03:00.0: WB enabled
    [ 2.994100] radeon 0000:03:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880156e63c00
    [ 2.994102] radeon 0000:03:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04 and cpu addr 0xffff880156e63c04
    [ 2.994103] radeon 0000:03:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08 and cpu addr 0xffff880156e63c08
    [ 2.994104] radeon 0000:03:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880156e63c0c
    [ 2.994106] radeon 0000:03:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10 and cpu addr 0xffff880156e63c10
    [ 2.994107] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.994108] [drm] Driver supports precise vblank timestamp query.
    [ 2.994126] radeon 0000:03:00.0: irq 59 for MSI/MSI-X
    [ 2.994137] radeon 0000:03:00.0: radeon: using MSI.
    [ 2.994157] [drm] radeon: irq initialized.
    [ 3.013688] [drm] ring test on 0 succeeded in 1 usecs
    [ 3.013694] [drm] ring test on 1 succeeded in 1 usecs
    [ 3.013698] [drm] ring test on 2 succeeded in 1 usecs
    [ 3.013761] [drm] ring test on 3 succeeded in 2 usecs
    [ 3.013770] [drm] ring test on 4 succeeded in 1 usecs
    [ 3.015377] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 3.015424] [drm] ib test on ring 1 succeeded in 0 usecs
    [ 3.015476] [drm] ib test on ring 2 succeeded in 0 usecs
    [ 3.015496] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 3.015517] [drm] ib test on ring 4 succeeded in 1 usecs
    [ 3.015656] [drm] Radeon Display Connectors
    [ 3.015663] [drm] Internal thermal controller without fan control
    [ 3.015712] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 3.015739] == power state 0 ==
    [ 3.015740] ui class: none
    [ 3.015742] internal class: boot
    [ 3.015744] caps:
    [ 3.015746] uvd vclk: 0 dclk: 0
    [ 3.015748] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.015749] status: c r b
    [ 3.015752] == power state 1 ==
    [ 3.015753] ui class: performance
    [ 3.015754] internal class: none
    [ 3.015756] caps:
    [ 3.015758] uvd vclk: 0 dclk: 0
    [ 3.015760] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015761] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.015763] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.015765] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.015767] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.015768] status:
    [ 3.015769] == power state 2 ==
    [ 3.015771] ui class: battery
    [ 3.015772] internal class: none
    [ 3.015773] caps:
    [ 3.015775] uvd vclk: 0 dclk: 0
    [ 3.015777] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015778] power level 1 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015780] power level 2 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015781] status:
    [ 3.023133] switching from power state:
    [ 3.023135] ui class: none
    [ 3.023136] internal class: boot
    [ 3.023138] caps:
    [ 3.023139] uvd vclk: 0 dclk: 0
    [ 3.023141] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.023142] status: c b
    [ 3.023143] switching to power state:
    [ 3.023144] ui class: performance
    [ 3.023145] internal class: none
    [ 3.023147] caps:
    [ 3.023148] uvd vclk: 0 dclk: 0
    [ 3.023149] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.023151] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.023152] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.023154] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.023155] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.023156] status: r
    [ 3.024470] [drm] radeon: dpm initialized
    [ 3.024475] radeon 0000:03:00.0: No connectors reported connected with modes
    [ 3.024477] [drm] Cannot find any crtc or sizes - going 1024x768
    [ 3.026968] [drm] fb mappable at 0xA1150000
    [ 3.026970] [drm] vram apper at 0xA0000000
    [ 3.026971] [drm] size 3145728
    [ 3.026972] [drm] fb depth is 24
    [ 3.026973] [drm] pitch is 4096
    [ 3.026976] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 3.027040] radeon 0000:03:00.0: fb1: radeondrmfb frame buffer device
    [ 3.027042] radeon 0000:03:00.0: registered panic notifier
    [ 3.027053] [drm] Initialized radeon 2.34.0 20080528 for 0000:03:00.0 on minor 0
    [ 3.027978] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0D:00/input/input1
    [ 3.028026] ACPI: Lid Switch [LID0]
    [ 3.028063] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input2
    [ 3.028066] ACPI: Power Button [PWRB]
    [ 3.028114] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 3.028116] ACPI: Power Button [PWRF]
    [ 3.031882] [drm] Memory usable by graphics device = 2048M
    [ 3.031886] checking generic (b0000000 410000) vs hw (b0000000 10000000)
    [ 3.031888] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 3.031900] Console: switching to colour dummy device 80x25
    [ 3.031959] i915 0000:00:02.0: setting latency timer to 64
    [ 3.056716] i915 0000:00:02.0: irq 60 for MSI/MSI-X
    [ 3.056723] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.056724] [drm] Driver supports precise vblank timestamp query.
    [ 3.056784] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.101180] fbcon: inteldrmfb (fb0) is primary device
    [ 4.361087] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 4.707482] Console: switching to colour frame buffer device 170x48
    [ 4.712160] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 4.712553] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 4.713578] ACPI Error: [\_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    [ 4.713584] ACPI Error: Method parse/execution failed [\_SB_.PCI0.RP05.PEGP.DD02._BCL] (Node ffff880159325d98), AE_NOT_FOUND (20130517/psparse-536)
    [ 4.713871] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
    [ 4.713930] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:2f/LNXVIDEO:00/input/input4
    [ 4.715381] acpi device:55: registered as cooling_device0
    [ 4.715415] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 4.715455] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 4.715487] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 1
    [ 4.738967] ACPI: bus type USB registered
    [ 4.738999] usbcore: registered new interface driver usbfs
    [ 4.739016] usbcore: registered new interface driver hub
    [ 4.739050] usbcore: registered new device driver usb
    [ 4.739638] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 4.739642] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.739649] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 4.739721] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 4.739741] xhci_hcd 0000:00:14.0: irq 61 for MSI/MSI-X
    [ 4.740145] xHCI xhci_add_endpoint called for root hub
    [ 4.740148] xHCI xhci_check_bandwidth called for root hub
    [ 4.740208] hub 1-0:1.0: USB hub found
    [ 4.740218] hub 1-0:1.0: 9 ports detected
    [ 4.741007] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.741164] ehci-pci: EHCI PCI platform driver
    [ 4.742756] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.742760] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 4.743091] xHCI xhci_add_endpoint called for root hub
    [ 4.743093] xHCI xhci_check_bandwidth called for root hub
    [ 4.743135] hub 2-0:1.0: USB hub found
    [ 4.743141] hub 2-0:1.0: 4 ports detected
    [ 4.743425] SCSI subsystem initialized
    [ 4.745035] ACPI: bus type ATA registered
    [ 4.745122] libata version 3.00 loaded.
    [ 4.747867] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 4.747875] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 4.747880] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 4.747891] ehci-pci 0000:00:1d.0: debug port 2
    [ 4.751784] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 4.751800] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc081c000
    [ 4.760774] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 4.760925] hub 3-0:1.0: USB hub found
    [ 4.760930] hub 3-0:1.0: 2 ports detected
    [ 4.761082] ahci 0000:00:1f.2: version 3.0
    [ 4.761230] ahci 0000:00:1f.2: irq 62 for MSI/MSI-X
    [ 4.774140] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x3 impl SATA mode
    [ 4.774146] ahci 0000:00:1f.2: flags: 64bit ncq led clo only pio slum part deso sadm sds apst
    [ 4.774151] ahci 0000:00:1f.2: setting latency timer to 64
    [ 4.774614] scsi0 : ahci
    [ 4.774722] scsi1 : ahci
    [ 4.774798] scsi2 : ahci
    [ 4.774868] ata1: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b100 irq 62
    [ 4.774871] ata2: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b180 irq 62
    [ 4.774873] ata3: DUMMY
    [ 5.067345] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 5.094002] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.094032] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 5.099568] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A5HH, SD12, max UDMA/100
    [ 5.100914] ata2.00: configured for UDMA/100
    [ 5.129572] ata1.00: ATA-8: ST500LT012-1DG142, 0001SDM1, max UDMA/133
    [ 5.129577] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 5.191169] hub 3-1:1.0: USB hub found
    [ 5.191237] hub 3-1:1.0: 8 ports detected
    [ 5.255854] ata1.00: configured for UDMA/133
    [ 5.256061] scsi 0:0:0:0: Direct-Access ATA ST500LT012-1DG14 0001 PQ: 0 ANSI: 5
    [ 5.261341] scsi 1:0:0:0: CD-ROM PLDS DVD+-RW DU-8A5HH SD12 PQ: 0 ANSI: 5
    [ 5.263686] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 5.263691] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 5.263724] sd 0:0:0:0: [sda] Write Protect is off
    [ 5.263727] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 5.263737] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.269320] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 5.269323] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 5.269521] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 5.332482] sda: sda1 sda2
    [ 5.333235] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 5.457253] usb 3-1.7: new high-speed USB device number 3 using ehci-pci
    [ 5.549500] device-mapper: uevent: version 1.0.3
    [ 5.549652] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: [email protected]
    [ 5.554331] bio: create slab <bio-1> at 1
    [ 5.607167] usb 3-1.8: new high-speed USB device number 4 using ehci-pci
    [ 6.510287] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.581705] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 7.582431] systemd[1]: Set hostname to <archins3537>.
    [ 8.087615] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 8.087670] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 8.087682] systemd[1]: Starting Login Prompts.
    [ 8.087692] systemd[1]: Reached target Login Prompts.
    [ 8.087700] systemd[1]: Starting Remote File Systems.
    [ 8.087707] systemd[1]: Reached target Remote File Systems.
    [ 8.087715] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 8.087736] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 8.087743] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 8.087762] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 8.087769] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 8.087789] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 8.087796] systemd[1]: Starting Delayed Shutdown Socket.
    [ 8.087813] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 8.087822] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 8.087851] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 8.087858] systemd[1]: Starting Paths.
    [ 8.087865] systemd[1]: Reached target Paths.
    [ 8.087878] systemd[1]: Starting udev Kernel Socket.
    [ 8.087895] systemd[1]: Listening on udev Kernel Socket.
    [ 8.087904] systemd[1]: Starting udev Control Socket.
    [ 8.087920] systemd[1]: Listening on udev Control Socket.
    [ 8.087944] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 8.088034] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 8.088043] systemd[1]: Starting Encrypted Volumes.
    [ 8.088051] systemd[1]: Reached target Encrypted Volumes.
    [ 8.088059] systemd[1]: Starting Journal Socket.
    [ 8.088098] systemd[1]: Listening on Journal Socket.
    [ 8.094096] systemd[1]: Started Set Up Additional Binary Formats.
    [ 8.146808] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 8.147345] systemd[1]: Starting udev Coldplug all Devices...
    [ 8.147641] systemd[1]: Starting Setup Virtual Console...
    [ 8.156662] systemd[1]: Started Load Kernel Modules.
    [ 8.156702] systemd[1]: Mounted FUSE Control File System.
    [ 8.156719] systemd[1]: Mounting Debug File System...
    [ 8.160118] systemd[1]: Starting Apply Kernel Variables...
    [ 8.160456] systemd[1]: Mounting POSIX Message Queue File System...
    [ 8.160770] systemd[1]: Mounting Configuration File System...
    [ 8.161235] systemd[1]: Starting Journal Service...
    [ 8.161549] systemd[1]: Started Journal Service.
    [ 8.407759] systemd-journald[153]: Vacuuming done, freed 0 bytes
    [ 8.622532] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
    [ 8.834003] systemd-udevd[177]: starting version 208
    [ 9.449711] ACPI: Requesting acpi_cpufreq
    [ 9.652388] snd_hda_intel 0000:00:03.0: irq 63 for MSI/MSI-X
    [ 9.652512] snd_hda_intel 0000:00:1b.0: irq 64 for MSI/MSI-X
    [ 9.703295] ACPI: AC Adapter [ACAD] (off-line)
    [ 9.734702] wmi: Mapper loaded
    [ 9.767167] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 9.900528] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x15
    [ 9.914682] ACPI: Battery Slot [BAT1] (battery present)
    [ 9.946497] hda_codec: invalid CONNECT_LIST verb 5[1]:0
    [ 9.946555] hda_codec: invalid CONNECT_LIST verb 6[1]:0
    [ 9.946621] hda_codec: invalid CONNECT_LIST verb 7[1]:0
    [ 9.948456] input: HDA Intel MID HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input7
    [ 9.948585] input: HDA Intel MID HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input8
    [ 9.948656] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
    [ 9.953096] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
    [ 9.953371] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 9.953378] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953384] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953388] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953392] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953394] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953398] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953402] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \IO_D 3 (20130517/utaddress-251)
    [ 9.953406] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953407] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 9.953792] mei_me 0000:00:16.0: setting latency timer to 64
    [ 9.953838] mei_me 0000:00:16.0: irq 65 for MSI/MSI-X
    [ 9.956390] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 9.956608] ACPI Warning: 0x0000000000005040-0x000000000000505f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 9.956615] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.231648] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 10.250684] cfg80211: Calling CRDA to update world regulatory domain
    [ 10.307646] input: Dell WMI hotkeys as /devices/virtual/input/input11
    [ 10.310649] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313166] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313536] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313923] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 10.347294] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 10.347309] r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 10.347544] r8169 0000:01:00.0: irq 66 for MSI/MSI-X
    [ 10.347727] r8169 0000:01:00.0 eth0: RTL8106e at 0xffffc90022cee000, 74:86:7a:50:ce:f4, XID 04900000 IRQ 66
    [ 10.381911] iTCO_vendor_support: vendor-support=0
    [ 10.393283] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 10.393324] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 10.393578] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 10.400848] systemd-udevd[183]: renamed network interface eth0 to enp1s0
    [ 10.416483] ath: EEPROM regdomain: 0x60
    [ 10.416486] ath: EEPROM indicates we should expect a direct regpair map
    [ 10.416489] ath: Country alpha2 being used: 00
    [ 10.416490] ath: Regpair used: 0x60
    [ 10.614808] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 10.615079] ieee80211 phy0: Atheros AR9565 Rev:1 mem=0xffffc90035180000, irq=19
    [ 10.643067] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 10.643619] systemd-udevd[189]: renamed network interface wlan0 to wlp2s0
    [ 10.646589] scsi3 : SCSI emulation for RTS5139 USB card reader
    [ 10.646742]

    Cdh wrote:
    You didn't give much information so...
    Blacklisting is now done via /etc/modprobe.d/*.conf files
    For example:
    /etc/modprobe.d/disable-radeon.conf would contain
    install radeon /bin/false
    You can also write "blacklist radeon" instead but that only prevents loading it automatically on itself while booting. You can still modprobe it and if it is a dependency of an automatically loaded module it will still get loaded. With the install ... /bin/false there is no way to load it.
    Also you need to make sure that it is not in the modules array in /etc/mkinitcpio.conf (or that your disable-radeon.conf is in the files array) because the initramfs is its own mini-system that doesn't know about the module configuration otherwise.
    but thats the problem ! i need radeon module to start because vgaswitcheroo needs it ! and then trun it off because 'I' dont need it ! anyway i ll give 'bin/false' method a try !

  • Problem with failing ata link

    Hello,
    I might be in the wrong section, but I got a serious issue I can´t track down!
    Lets start with the symptoms:
    on BIOS-HW-initialisation I get randomly a S.M.A.R.T. error for my root-HD (if the error occurs ARCH won´t boot, but WIN7 does from the same drive without any problems!)
    if ARCH start usually everything is fine, but:
    recently, during normal usage of ARCH, my second HD with my home-partition disappeared (still listed on /etc/mtab, but no more in fdisk -l or lsblk)
    I know, that I can´t exclude possible hardware-problems, but since my second HD never showed any problems via S.M.A.R.T. I wouldn´t consider it as origin of the problem.
    Maybe this is due to a problematic ata-chip on my mainboard (ASRock 880g Extreme3)?
    This could maybe explain the errors randomly between both drives.
    As additional information:
    Earlier I experienced problems booting ARCH with some 'frozen ata links' already, which were related to my DVD-drive (at least they disappeared after I plugged it off).
    The errormessages did not point to the DVD-drive, but to my earlier root-HD, which broke after a short lifetime of maybe 1.5 years.
    I don´t know if this could be a mainboard related problem.
    Can those problems affect the sanity of harddrives?
    Then why didn´t WIN7 had any problems at all? (Okay maybe WIN7 simply ignores problems...)
    I used Kubuntu previously of ARCH and sata-related error messages came after the migration to ARCH.
    I would think, that this could lead to a driver/kernel related issue, but to be honest, I am not enough into this matter...
    My search in the WWW didn´t lead to any helping clues...
    So if someone more experienced could give me some advice on interpreting the situation and my syslog I would be very thankful!
    If you need more information, tell me and I will update the post!
    Thanks and greeting!
    Malte
    uname -a: Linux 3.4.4-2-ARCH #1 SMP PREEMPT Sun Jun 24 18:59:47 CEST 2012 x86_64 GNU/Linux
    This is the syslog (sda is the data-HD):
    Jul 12 13:12:34 localhost kernel: [ 3620.597956] ata3: hard resetting link
    Jul 12 13:12:35 localhost kernel: [ 3621.082485] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:35 localhost kernel: [ 3621.088099] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x100)
    Jul 12 13:12:40 localhost kernel: [ 3626.079118] ata3: hard resetting link
    Jul 12 13:12:40 localhost kernel: [ 3626.565475] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:40 localhost kernel: [ 3626.571103] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x100)
    Jul 12 13:12:40 localhost kernel: [ 3626.571122] ata3: limiting SATA link speed to 1.5 Gbps
    Jul 12 13:12:45 localhost kernel: [ 3631.562105] ata3: hard resetting link
    Jul 12 13:12:47 localhost kernel: [ 3633.770658] ata3: SATA link down (SStatus 1 SControl 310)
    Jul 12 13:12:47 localhost kernel: [ 3633.770674] ata3.00: disabled
    Jul 12 13:12:47 localhost kernel: [ 3633.784024] ata3: hard resetting link
    Jul 12 13:12:48 localhost kernel: [ 3634.670054] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:48 localhost kernel: [ 3634.789959] ata3: hard resetting link
    Jul 12 13:12:49 localhost kernel: [ 3635.276308] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:49 localhost kernel: [ 3635.412888] ata3: hard resetting link
    Jul 12 13:12:50 localhost kernel: [ 3635.899221] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:50 localhost kernel: [ 3636.015842] ata3: hard resetting link
    Jul 12 13:12:50 localhost kernel: [ 3636.502157] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 12 13:12:50 localhost kernel: [ 3636.635375] sd 2:0:0:0: [sda] Result: hostbyte=0x00 driverbyte=0x08
    Jul 12 13:12:50 localhost kernel: [ 3636.635378] sd 2:0:0:0: [sda] Sense Key : 0xb [current] [descriptor]
    Jul 12 13:12:50 localhost kernel: [ 3636.635380] Descriptor sense data with sense descriptors (in hex):
    Jul 12 13:12:50 localhost kernel: [ 3636.635382] 72 0b 00 00 00 00 00 0c 00 0a 80 00 00 00 00 00
    Jul 12 13:12:50 localhost kernel: [ 3636.635386] 6f 9a 2a 2f
    Jul 12 13:12:50 localhost kernel: [ 3636.635388] sd 2:0:0:0: [sda] ASC=0x0 ASCQ=0x0
    Jul 12 13:12:50 localhost kernel: [ 3636.635390] sd 2:0:0:0: [sda] CDB: cdb[0]=0x28: 28 00 6f 9a 2a 2f 00 01 00 00
    Jul 12 13:12:50 localhost kernel: [ 3636.635418] sd 2:0:0:0: [sda] killing request
    Jul 12 13:12:50 localhost kernel: [ 3636.635429] ata3: EH complete
    Jul 12 13:12:50 localhost kernel: [ 3636.635440] ata3.00: detaching (SCSI 2:0:0:0)
    Jul 12 13:12:50 localhost kernel: [ 3636.635467] sd 2:0:0:0: [sda] Unhandled error code
    Jul 12 13:12:50 localhost kernel: [ 3636.635469] sd 2:0:0:0: [sda] Result: hostbyte=0x01 driverbyte=0x00
    Jul 12 13:12:50 localhost kernel: [ 3636.635471] sd 2:0:0:0: [sda] CDB: cdb[0]=0x28: 28 00 6f 9a 2b 2f 00 01 00 00
    Jul 12 13:12:50 localhost kernel: [ 3636.641628] sd 2:0:0:0: [sda] Synchronizing SCSI cache
    Jul 12 13:12:50 localhost kernel: [ 3636.641659] sd 2:0:0:0: [sda] Result: hostbyte=0x04 driverbyte=0x00
    Jul 12 13:12:50 localhost kernel: [ 3636.641662] sd 2:0:0:0: [sda] Stopping disk
    Jul 12 13:12:50 localhost kernel: [ 3636.641667] sd 2:0:0:0: [sda] START_STOP FAILED
    Jul 12 13:12:50 localhost kernel: [ 3636.641669] sd 2:0:0:0: [sda] Result: hostbyte=0x04 driverbyte=0x00
    fdisk -l (as you can see, only my root-HD sdb is present...)
    [root@rechenknecht ~]# fdisk -l
    Disk /dev/sdb: 500.1 GB, 500107862016 bytes
    255 Köpfe, 63 Sektoren/Spur, 60801 Zylinder, zusammen 976773168 Sektoren
    Einheiten = Sektoren von 1 × 512 = 512 Bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x4e93d8b3
    Gerät boot. Anfang Ende Blöcke Id System
    /dev/sdb1 * 2048 206847 102400 7 HPFS/NTFS/exFAT
    /dev/sdb2 206848 102402047 51097600 7 HPFS/NTFS/exFAT
    /dev/sdb3 102402048 800643071 349120512 7 HPFS/NTFS/exFAT
    /dev/sdb4 800643072 976773167 88065048 5 Erweiterte
    /dev/sdb5 * 800643135 801028631 192748+ 83 Linux
    /dev/sdb6 801028695 820524977 9748141+ 82 Linux Swap / Solaris
    /dev/sdb7 820525041 976773167 78124063+ 83 Linux
    cat /etc/mtab (still a mounted sda in mtab?)
    [root@rechenknecht ~]# cat /etc/mtab
    rootfs / rootfs rw 0 0
    proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
    sys /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
    dev /dev devtmpfs rw,nosuid,relatime,size=4054648k,nr_inodes=1013662,mode=755 0 0
    run /run tmpfs rw,nosuid,nodev,relatime,mode=755 0 0
    /dev/sdb7 / ext4 rw,relatime,data=ordered 0 0
    devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
    shm /dev/shm tmpfs rw,nosuid,nodev,relatime 0 0
    tmpfs /tmp tmpfs rw,nosuid,nodev,relatime 0 0
    /dev/sdb5 /boot ext4 rw,relatime,data=ordered 0 0
    /dev/sda1 /mnt/daten ext4 rw,relatime,data=ordered 0 0
    binfmt /proc/sys/fs/binfmt_misc binfmt_misc rw,relatime 0 0
    cat /var/log/dmesg.log
    [root@rechenknecht ~]# cat /var/log/dmesg.log
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.4-2-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 (GCC) ) #1 SMP PREEMPT Sun Jun 24 18:59:47 CEST 2012
    [ 0.000000] Command line: root=/dev/sdb7 ro nomodeset vga=0
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009b800 (usable)
    [ 0.000000] BIOS-e820: 000000000009b800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000c7ea0000 (usable)
    [ 0.000000] BIOS-e820: 00000000c7ea0000 - 00000000c7eb0000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000c7eb0000 - 00000000c7ee0000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000c7ee0000 - 00000000c7f00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000238000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./880G Extreme3, BIOS P1.70 06/21/2010
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x238000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000C0000000 mask FFFFF8000000 write-back
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 0000000238000000 aka 9088M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000c8000000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xc7ea0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000c7ea0000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00c7e00000 page 2M
    [ 0.000000] 00c7e00000 - 00c7ea0000 page 4k
    [ 0.000000] kernel direct mapping tables up to c7ea0000 @ 1fffd000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000238000000
    [ 0.000000] 0100000000 - 0200000000 page 1G
    [ 0.000000] 0200000000 - 0238000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 238000000 @ c7e9e000-c7ea0000
    [ 0.000000] RAMDISK: 37d19000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000fa940 00014 (v00 ACPIAM)
    [ 0.000000] ACPI: RSDT 00000000c7ea0000 00044 (v01 062110 RSDT2249 20100621 MSFT 00000097)
    [ 0.000000] ACPI: FACP 00000000c7ea0200 00084 (v01 A_M_I OEMFACP 12000601 MSFT 00000097)
    [ 0.000000] ACPI: DSDT 00000000c7ea0450 07D9F (v01 AS368 AS368164 00000164 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000c7eb0000 00040
    [ 0.000000] ACPI: APIC 00000000c7ea0390 0007C (v01 062110 APIC2249 20100621 MSFT 00000097)
    [ 0.000000] ACPI: MCFG 00000000c7ea0410 0003C (v01 062110 OEMMCFG 20100621 MSFT 00000097)
    [ 0.000000] ACPI: OEMB 00000000c7eb0040 00072 (v01 062110 OEMB2249 20100621 MSFT 00000097)
    [ 0.000000] ACPI: SRAT 00000000c7eaa450 000E8 (v03 AMD FAM_F_10 00000002 AMD 00000001)
    [ 0.000000] ACPI: AAFT 00000000c7eaa540 00027 (v01 062110 OEMAAFT 20100621 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000c7eaa570 00038 (v01 062110 OEMHPET 20100621 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000c7eaa5b0 0088C (v01 A M I POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
    [ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
    [ 0.000000] SRAT: Node 0 PXM 0 0-a0000
    [ 0.000000] SRAT: Node 0 PXM 0 100000-c8000000
    [ 0.000000] SRAT: Node 0 PXM 0 100000000-238000000
    [ 0.000000] NUMA: Node 0 [0,a0000) + [100000,c8000000) -> [0,c8000000)
    [ 0.000000] NUMA: Node 0 [0,c8000000) + [100000000,238000000) -> [0,238000000)
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000238000000
    [ 0.000000] NODE_DATA [0000000237ffc000 - 0000000237ffffff]
    [ 0.000000] [ffffea0000000000-ffffea0008dfffff] PMD -> [ffff88022f600000-ffff8802375fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00238000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009b
    [ 0.000000] 0: 0x00000100 -> 0x000c7ea0
    [ 0.000000] 0: 0x00100000 -> 0x00238000
    [ 0.000000] On node 0 totalpages: 2096683
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3910 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 798432 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19968 pages used for memmap
    [ 0.000000] Normal zone: 1257984 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
    [ 0.000000] SMP: Allowing 6 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009b000 - 000000000009c000
    [ 0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000
    [ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000c7ea0000 - 00000000c7eb0000
    [ 0.000000] PM: Registered nosave memory: 00000000c7eb0000 - 00000000c7ee0000
    [ 0.000000] PM: Registered nosave memory: 00000000c7ee0000 - 00000000c7f00000
    [ 0.000000] PM: Registered nosave memory: 00000000c7f00000 - 00000000fff00000
    [ 0.000000] PM: Registered nosave memory: 00000000fff00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at c7f00000 (gap: c7f00000:38000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:6 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff880237c00000 s82880 r8192 d23616 u262144
    [ 0.000000] pcpu-alloc: s82880 r8192 d23616 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 - -
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2060326
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sdb7 ro nomodeset vga=0
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ bc000000 size 32 MB
    [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
    [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    [ 0.000000] Please enable the IOMMU option in the BIOS setup
    [ 0.000000] This costs you 64 MB of RAM
    [ 0.000000] Mapping aperture over 65536 KB of RAM @ bc000000
    [ 0.000000] PM: Registered nosave memory: 00000000bc000000 - 00000000c0000000
    [ 0.000000] Memory: 8109296k/9306112k available (4538k kernel code, 919380k absent, 277436k reserved, 4308k data, 740k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:728 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 3422.215 MHz processor.
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 6847.61 BogoMIPS (lpj=11407383)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000025] Security Framework initialized
    [ 0.000029] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000418] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002612] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003622] Mount-cache hash table entries: 256
    [ 0.003775] Initializing cgroup subsys cpuacct
    [ 0.003777] Initializing cgroup subsys memory
    [ 0.003784] Initializing cgroup subsys devices
    [ 0.003786] Initializing cgroup subsys freezer
    [ 0.003787] Initializing cgroup subsys net_cls
    [ 0.003789] Initializing cgroup subsys blkio
    [ 0.003808] tseg: 0000000000
    [ 0.003818] CPU: Physical Processor ID: 0
    [ 0.003819] CPU: Processor Core ID: 0
    [ 0.003821] mce: CPU supports 6 MCE banks
    [ 0.003825] LVT offset 0 assigned for vector 0xf9
    [ 0.004362] ACPI: Core revision 20120320
    [ 0.007773] ftrace: allocating 17820 entries in 70 pages
    [ 0.014762] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.047742] CPU0: AMD Phenom(tm) II X4 965 Processor stepping 03
    [ 0.153366] Performance Events: AMD PMU driver.
    [ 0.153369] ... version: 0
    [ 0.153370] ... bit width: 48
    [ 0.153371] ... generic registers: 4
    [ 0.153372] ... value mask: 0000ffffffffffff
    [ 0.153373] ... max period: 00007fffffffffff
    [ 0.153374] ... fixed-purpose events: 0
    [ 0.153375] ... event mask: 000000000000000f
    [ 0.173405] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.193370] Booting Node 0, Processors #1
    [ 0.206528] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.216703] #2
    [ 0.229898] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.240014] #3
    [ 0.253215] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.253239] Brought up 4 CPUs
    [ 0.253241] Total of 4 processors activated (27388.45 BogoMIPS).
    [ 0.257652] devtmpfs: initialized
    [ 0.259104] PM: Registering ACPI NVS region [mem 0xc7eb0000-0xc7edffff] (196608 bytes)
    [ 0.259606] NET: Registered protocol family 16
    [ 0.259683] node 0 link 0: io port [1000, ffffff]
    [ 0.259685] TOM: 00000000c8000000 aka 3200M
    [ 0.259687] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    [ 0.259689] node 0 link 0: mmio [a0000, bffff]
    [ 0.259691] node 0 link 0: mmio [c8000000, dfffffff]
    [ 0.259693] node 0 link 0: mmio [e0000000, efffffff] ==> none
    [ 0.259694] node 0 link 0: mmio [f0000000, ffefffff]
    [ 0.259696] TOM2: 0000000238000000 aka 9088M
    [ 0.259697] bus: [00, 07] on node 0 link 0
    [ 0.259699] bus: 00 index 0 [io 0x0000-0xffff]
    [ 0.259700] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
    [ 0.259701] bus: 00 index 2 [mem 0xc8000000-0xdfffffff]
    [ 0.259702] bus: 00 index 3 [mem 0xf0000000-0xffffffff]
    [ 0.259704] bus: 00 index 4 [mem 0x238000000-0xfcffffffff]
    [ 0.259748] ACPI: bus type pci registered
    [ 0.259790] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.259792] PCI: not using MMCONFIG
    [ 0.259793] PCI: Using configuration type 1 for base access
    [ 0.259794] PCI: Using configuration type 1 for extended access
    [ 0.260241] bio: create slab <bio-0> at 0
    [ 0.260287] ACPI: Added _OSI(Module Device)
    [ 0.260288] ACPI: Added _OSI(Processor Device)
    [ 0.260289] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.260290] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.260774] ACPI: EC: Look up EC in DSDT
    [ 0.261441] ACPI: Executed 4 blocks of module-level executable AML code
    [ 0.263476] ACPI: Interpreter enabled
    [ 0.263480] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.263496] ACPI: Using IOAPIC for interrupt routing
    [ 0.263622] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.264266] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.282569] ACPI: No dock devices found.
    [ 0.282572] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.282625] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.282707] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.282709] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 0.282710] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.282712] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff]
    [ 0.282714] pci_root PNP0A03:00: host bridge window [mem 0xc7f00000-0xdfffffff]
    [ 0.282715] pci_root PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff]
    [ 0.282737] PCI host bridge to bus 0000:00
    [ 0.282739] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.282740] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.282742] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.282744] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    [ 0.282745] pci_bus 0000:00: root bus resource [mem 0xc7f00000-0xdfffffff]
    [ 0.282747] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 0.282756] pci 0000:00:00.0: [1022:9601] type 00 class 0x060000
    [ 0.282831] pci 0000:00:02.0: [1022:9603] type 01 class 0x060400
    [ 0.282858] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.282875] pci 0000:00:09.0: [1022:9608] type 01 class 0x060400
    [ 0.282901] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    [ 0.282912] pci 0000:00:0a.0: [1022:9609] type 01 class 0x060400
    [ 0.282938] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.282993] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.283009] pci 0000:00:11.0: reg 10: [io 0xb000-0xb007]
    [ 0.283015] pci 0000:00:11.0: reg 14: [io 0xa000-0xa003]
    [ 0.283022] pci 0000:00:11.0: reg 18: [io 0x9000-0x9007]
    [ 0.283029] pci 0000:00:11.0: reg 1c: [io 0x8000-0x8003]
    [ 0.283036] pci 0000:00:11.0: reg 20: [io 0x7000-0x700f]
    [ 0.283043] pci 0000:00:11.0: reg 24: [mem 0xfe5ffc00-0xfe5fffff]
    [ 0.283093] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.283102] pci 0000:00:12.0: reg 10: [mem 0xfe5fe000-0xfe5fefff]
    [ 0.283157] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.283170] pci 0000:00:12.2: reg 10: [mem 0xfe5ff800-0xfe5ff8ff]
    [ 0.283229] pci 0000:00:12.2: supports D1 D2
    [ 0.283230] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.283247] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.283256] pci 0000:00:13.0: reg 10: [mem 0xfe5fd000-0xfe5fdfff]
    [ 0.283308] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.283322] pci 0000:00:13.2: reg 10: [mem 0xfe5ff400-0xfe5ff4ff]
    [ 0.283380] pci 0000:00:13.2: supports D1 D2
    [ 0.283381] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.283398] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.283449] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    [ 0.283459] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    [ 0.283466] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    [ 0.283473] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    [ 0.283479] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    [ 0.283486] pci 0000:00:14.1: reg 20: [io 0xff00-0xff0f]
    [ 0.283513] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.283528] pci 0000:00:14.2: reg 10: [mem 0xfe5f4000-0xfe5f7fff 64bit]
    [ 0.283576] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.283587] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.283641] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.283671] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.283681] pci 0000:00:14.5: reg 10: [mem 0xfe5fc000-0xfe5fcfff]
    [ 0.283732] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
    [ 0.283783] pci 0000:00:15.0: supports D1 D2
    [ 0.283804] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    [ 0.283813] pci 0000:00:16.0: reg 10: [mem 0xfe5f3000-0xfe5f3fff]
    [ 0.283864] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    [ 0.283878] pci 0000:00:16.2: reg 10: [mem 0xfe5ff000-0xfe5ff0ff]
    [ 0.283936] pci 0000:00:16.2: supports D1 D2
    [ 0.283937] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.283953] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    [ 0.283965] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    [ 0.283974] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    [ 0.283984] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    [ 0.283996] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    [ 0.284069] pci 0000:04:00.0: [1002:6738] type 00 class 0x030000
    [ 0.284082] pci 0000:04:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.284092] pci 0000:04:00.0: reg 18: [mem 0xfe8e0000-0xfe8fffff 64bit]
    [ 0.284098] pci 0000:04:00.0: reg 20: [io 0xe000-0xe0ff]
    [ 0.284111] pci 0000:04:00.0: reg 30: [mem 0xfe8c0000-0xfe8dffff pref]
    [ 0.284141] pci 0000:04:00.0: supports D1 D2
    [ 0.284162] pci 0000:04:00.1: [1002:aa88] type 00 class 0x040300
    [ 0.284174] pci 0000:04:00.1: reg 10: [mem 0xfe8bc000-0xfe8bffff 64bit]
    [ 0.284231] pci 0000:04:00.1: supports D1 D2
    [ 0.293145] pci 0000:00:02.0: PCI bridge to [bus 04-04]
    [ 0.293150] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.293152] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe8fffff]
    [ 0.293155] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.293193] pci 0000:01:00.0: [1033:0194] type 00 class 0x0c0330
    [ 0.293208] pci 0000:01:00.0: reg 10: [mem 0xfe6fe000-0xfe6fffff 64bit]
    [ 0.293279] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.303139] pci 0000:00:09.0: PCI bridge to [bus 01-01]
    [ 0.303144] pci 0000:00:09.0: bridge window [mem 0xfe600000-0xfe6fffff]
    [ 0.303183] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.303195] pci 0000:02:00.0: reg 10: [io 0xc800-0xc8ff]
    [ 0.303213] pci 0000:02:00.0: reg 18: [mem 0xcffff000-0xcfffffff 64bit pref]
    [ 0.303225] pci 0000:02:00.0: reg 20: [mem 0xcfff8000-0xcfffbfff 64bit pref]
    [ 0.303277] pci 0000:02:00.0: supports D1 D2
    [ 0.303278] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.313132] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.313137] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    [ 0.313140] pci 0000:00:0a.0: bridge window [mem 0xcff00000-0xcfffffff 64bit pref]
    [ 0.313187] pci 0000:05:06.0: [1814:0601] type 00 class 0x028000
    [ 0.313204] pci 0000:05:06.0: reg 10: [mem 0xfe9f0000-0xfe9fffff]
    [ 0.313322] pci 0000:00:14.4: PCI bridge to [bus 05-05] (subtractive decode)
    [ 0.313326] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.313330] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.313331] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.313333] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.313335] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    [ 0.313336] pci 0000:00:14.4: bridge window [mem 0xc7f00000-0xdfffffff] (subtractive decode)
    [ 0.313338] pci 0000:00:14.4: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 0.313388] pci 0000:03:00.0: [1106:3403] type 00 class 0x0c0010
    [ 0.313408] pci 0000:03:00.0: reg 10: [mem 0xfe7ff800-0xfe7fffff 64bit]
    [ 0.313419] pci 0000:03:00.0: reg 18: [io 0xd800-0xd8ff]
    [ 0.313504] pci 0000:03:00.0: supports D2
    [ 0.313505] pci 0000:03:00.0: PME# supported from D2 D3hot D3cold
    [ 0.323166] pci 0000:00:15.0: PCI bridge to [bus 03-03]
    [ 0.323171] pci 0000:00:15.0: bridge window [io 0xd000-0xdfff]
    [ 0.323174] pci 0000:00:15.0: bridge window [mem 0xfe700000-0xfe7fffff]
    [ 0.323192] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.323279] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
    [ 0.323297] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE9._PRT]
    [ 0.323311] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
    [ 0.323332] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
    [ 0.323371] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE20._PRT]
    [ 0.323386] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.323388] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.323389] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.325822] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11 14 15) *0
    [ 0.325859] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11 14 15) *0
    [ 0.325896] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11 14 15) *0
    [ 0.325932] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11 14 15) *0
    [ 0.325959] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11 14 15) *0
    [ 0.325980] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11 14 15) *0
    [ 0.326001] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11 14 15) *0
    [ 0.326021] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11 14 15) *0
    [ 0.326094] vgaarb: device added: PCI:0000:04:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.326096] vgaarb: loaded
    [ 0.326097] vgaarb: bridge control possible 0000:04:00.0
    [ 0.326125] PCI: Using ACPI for IRQ routing
    [ 0.332165] PCI: pci_cache_line_size set to 64 bytes
    [ 0.332227] reserve RAM buffer: 000000000009b800 - 000000000009ffff
    [ 0.332228] reserve RAM buffer: 00000000c7ea0000 - 00000000c7ffffff
    [ 0.332293] NetLabel: Initializing
    [ 0.332294] NetLabel: domain hash size = 128
    [ 0.332295] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.332303] NetLabel: unlabeled traffic allowed by default
    [ 0.332334] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.332337] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.334364] Switching to clocksource hpet
    [ 0.338169] pnp: PnP ACPI init
    [ 0.338178] ACPI: bus type pnp registered
    [ 0.338246] pnp 00:00: [bus 00-ff]
    [ 0.338248] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.338251] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.338252] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.338254] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.338255] pnp 00:00: [mem 0x000d0000-0x000dffff window]
    [ 0.338256] pnp 00:00: [mem 0xc7f00000-0xdfffffff window]
    [ 0.338258] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
    [ 0.338282] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.338331] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.338333] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.338363] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.338384] pnp 00:02: [dma 4]
    [ 0.338386] pnp 00:02: [io 0x0000-0x000f]
    [ 0.338387] pnp 00:02: [io 0x0081-0x0083]
    [ 0.338388] pnp 00:02: [io 0x0087]
    [ 0.338389] pnp 00:02: [io 0x0089-0x008b]
    [ 0.338390] pnp 00:02: [io 0x008f]
    [ 0.338391] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.338405] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.338411] pnp 00:03: [io 0x0070-0x0071]
    [ 0.338425] pnp 00:03: [irq 8]
    [ 0.338442] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.338448] pnp 00:04: [io 0x0061]
    [ 0.338462] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.338466] pnp 00:05: [io 0x00f0-0x00ff]
    [ 0.338469] pnp 00:05: [irq 13]
    [ 0.338485] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.338610] pnp 00:06: [mem 0xfed00000-0xfed003ff]
    [ 0.338627] pnp 00:06: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.338668] pnp 00:07: [mem 0xfec00000-0xfec00fff]
    [ 0.338669] pnp 00:07: [mem 0xfee00000-0xfee00fff]
    [ 0.338695] system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.338697] system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.338699] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.338773] pnp 00:08: [io 0x0010-0x001f]
    [ 0.338774] pnp 00:08: [io 0x0022-0x003f]
    [ 0.338775] pnp 00:08: [io 0x0062-0x0063]
    [ 0.338776] pnp 00:08: [io 0x0065-0x006f]
    [ 0.338777] pnp 00:08: [io 0x0072-0x007f]
    [ 0.338778] pnp 00:08: [io 0x0080]
    [ 0.338779] pnp 00:08: [io 0x0084-0x0086]
    [ 0.338780] pnp 00:08: [io 0x0088]
    [ 0.338781] pnp 00:08: [io 0x008c-0x008e]
    [ 0.338782] pnp 00:08: [io 0x0090-0x009f]
    [ 0.338783] pnp 00:08: [io 0x00a2-0x00bf]
    [ 0.338784] pnp 00:08: [io 0x00b1]
    [ 0.338785] pnp 00:08: [io 0x00e0-0x00ef]
    [ 0.338787] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.338788] pnp 00:08: [io 0x040b]
    [ 0.338789] pnp 00:08: [io 0x04d6]
    [ 0.338790] pnp 00:08: [io 0x0c00-0x0c01]
    [ 0.338791] pnp 00:08: [io 0x0c14]
    [ 0.338792] pnp 00:08: [io 0x0c50-0x0c51]
    [ 0.338794] pnp 00:08: [io 0x0c52]
    [ 0.338795] pnp 00:08: [io 0x0c6c]
    [ 0.338796] pnp 00:08: [io 0x0c6f]
    [ 0.338797] pnp 00:08: [io 0x0cd0-0x0cd1]
    [ 0.338798] pnp 00:08: [io 0x0cd2-0x0cd3]
    [ 0.338799] pnp 00:08: [io 0x0cd4-0x0cd5]
    [ 0.338800] pnp 00:08: [io 0x0cd6-0x0cd7]
    [ 0.338801] pnp 00:08: [io 0x0cd8-0x0cdf]
    [ 0.338802] pnp 00:08: [io 0x0800-0x089f]
    [ 0.338804] pnp 00:08: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.338805] pnp 00:08: [io 0x0b00-0x0b1f]
    [ 0.338806] pnp 00:08: [io 0x0b20-0x0b3f]
    [ 0.338807] pnp 00:08: [io 0x0900-0x090f]
    [ 0.338808] pnp 00:08: [io 0x0910-0x091f]
    [ 0.338809] pnp 00:08: [io 0xfe00-0xfefe]
    [ 0.338810] pnp 00:08: [io 0x0060-0x005f disabled]
    [ 0.338812] pnp 00:08: [io 0x0064-0x0063 disabled]
    [ 0.338813] pnp 00:08: [mem 0xffb80000-0xffbfffff]
    [ 0.338814] pnp 00:08: [mem 0xfec10000-0xfec1001f]
    [ 0.338815] pnp 00:08: [mem 0xfed80000-0xfed80fff]
    [ 0.338816] pnp 00:08: [mem 0x00000000-0xffffffffffffffff disabled]
    [ 0.338871] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.338873] system 00:08: [io 0x040b] has been reserved
    [ 0.338874] system 00:08: [io 0x04d6] has been reserved
    [ 0.338876] system 00:08: [io 0x0c00-0x0c01] has been reserved
    [ 0.338877] system 00:08: [io 0x0c14] has been reserved
    [ 0.338878] system 00:08: [io 0x0c50-0x0c51] has been reserved
    [ 0.338880] system 00:08: [io 0x0c52] has been reserved
    [ 0.338881] system 00:08: [io 0x0c6c] has been reserved
    [ 0.338883] system 00:08: [io 0x0c6f] has been reserved
    [ 0.338884] system 00:08: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.338886] system 00:08: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.338887] system 00:08: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.338889] system 00:08: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.338890] system 00:08: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.338892] system 00:08: [io 0x0800-0x089f] has been reserved
    [ 0.338893] system 00:08: [io 0x0b00-0x0b1f] has been reserved
    [ 0.338895] system 00:08: [io 0x0b20-0x0b3f] has been reserved
    [ 0.338896] system 00:08: [io 0x0900-0x090f] has been reserved
    [ 0.338898] system 00:08: [io 0x0910-0x091f] has been reserved
    [ 0.338899] system 00:08: [io 0xfe00-0xfefe] has been reserved
    [ 0.338901] system 00:08: [mem 0xffb80000-0xffbfffff] has been reserved
    [ 0.338903] system 00:08: [mem 0xfec10000-0xfec1001f] has been reserved
    [ 0.338904] system 00:08: [mem 0xfed80000-0xfed80fff] has been reserved
    [ 0.338906] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.338920] pnp 00:09: [io 0x0060]
    [ 0.338921] pnp 00:09: [io 0x0064]
    [ 0.338958] pnp 00:09: [irq 1]
    [ 0.338977] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.339141] pnp 00:0a: [io 0x03f8-0x03ff]
    [ 0.339144] pnp 00:0a: [irq 4]
    [ 0.339146] pnp 00:0a: [dma 0 disabled]
    [ 0.339187] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.339220] pnp 00:0b: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.339221] pnp 00:0b: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.339222] pnp 00:0b: [io 0x0290-0x029f]
    [ 0.339250] system 00:0b: [io 0x0290-0x029f] has been reserved
    [ 0.339252] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.339269] pnp 00:0c: [mem 0xe0000000-0xefffffff]
    [ 0.339296] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.339298] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.339365] pnp 00:0d: [mem 0x00000000-0x0009ffff]
    [ 0.339366] pnp 00:0d: [mem 0x000c0000-0x000cffff]
    [ 0.339367] pnp 00:0d: [mem 0x000e0000-0x000fffff]
    [ 0.339369] pnp 00:0d: [mem 0x00100000-0xc7efffff]
    [ 0.339370] pnp 00:0d: [mem 0xfec00000-0xffffffff]
    [ 0.339401] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.339403] system 00:0d: [mem 0x000c0000-0x000cffff] could not be reserved
    [ 0.339405] system 00:0d: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.339406] system 00:0d: [mem 0x00100000-0xc7efffff] could not be reserved
    [ 0.339408] system 00:0d: [mem 0xfec00000-0xffffffff] could not be reserved
    [ 0.339410] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.339470] pnp: PnP ACPI: found 14 devices
    [ 0.339471] ACPI: ACPI bus type pnp unregistered
    [ 0.345740] pci 0000:00:02.0: PCI bridge to [bus 04-04]
    [ 0.345742] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.345745] pci 0000:00:02.0: bridge window [mem 0xfe800000-0xfe8fffff]
    [ 0.345747] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.345750] pci 0000:00:09.0: PCI bridge to [bus 01-01]
    [ 0.345752] pci 0000:00:09.0: bridge window [mem 0xfe600000-0xfe6fffff]
    [ 0.345756] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
    [ 0.345757] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    [ 0.345760] pci 0000:00:0a.0: bridge window [mem 0xcff00000-0xcfffffff 64bit pref]
    [ 0.345763] pci 0000:00:14.4: PCI bridge to [bus 05-05]
    [ 0.345767] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.345773] pci 0000:00:15.0: PCI bridge to [bus 03-03]
    [ 0.345775] pci 0000:00:15.0: bridge window [io 0xd000-0xdfff]
    [ 0.345778] pci 0000:00:15.0: bridge window [mem 0xfe700000-0xfe7fffff]
    [ 0.345808] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.345810] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.345811] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.345813] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.345814] pci_bus 0000:00: resource 8 [mem 0xc7f00000-0xdfffffff]
    [ 0.345816] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.345817] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
    [ 0.345818] pci_bus 0000:04: resource 1 [mem 0xfe800000-0xfe8fffff]
    [ 0.345820] pci_bus 0000:04: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.345821] pci_bus 0000:01: resource 1 [mem 0xfe600000-0xfe6fffff]
    [ 0.345823] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 0.345824] pci_bus 0000:02: resource 2 [mem 0xcff00000-0xcfffffff 64bit pref]
    [ 0.345826] pci_bus 0000:05: resource 1 [mem 0xfe900000-0xfe9fffff]
    [ 0.345827] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7]
    [ 0.345829] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff]
    [ 0.345830] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.345831] pci_bus 0000:05: resource 7 [mem 0x000d0000-0x000dffff]
    [ 0.345833] pci_bus 0000:05: resource 8 [mem 0xc7f00000-0xdfffffff]
    [ 0.345834] pci_bus 0000:05: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.345836] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    [ 0.345837] pci_bus 0000:03: resource 1 [mem 0xfe700000-0xfe7fffff]
    [ 0.345866] NET: Registered protocol family 2
    [ 0.345989] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.346848] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.349037] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.349296] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.349298] TCP: reno registered
    [ 0.349310] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.349356] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.349453] NET: Registered protocol family 1
    [ 0.677681] pci 0000:04:00.0: Boot video device
    [ 0.677713] PCI: CLS 64 bytes, default 64
    [ 0.677749] Unpacking initramfs...
    [ 0.718032] Freeing initrd memory: 2908k freed
    [ 0.719807] PCI-DMA: Disabling AGP.
    [ 0.719871] PCI-DMA: aperture base @ bc000000 size 65536 KB
    [ 0.719872] PCI-DMA: using GART IOMMU.
    [ 0.719874] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    [ 0.725070] LVT offset 1 assigned for vector 0x400
    [ 0.725079] IBS: LVT offset 1 assigned
    [ 0.725089] perf: AMD IBS detected (0x0000001f)
    [ 0.725203] audit: initializing netlink socket (disabled)
    [ 0.725213] type=2000 audit(1342095131.619:1): initialized
    [ 0.725791] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.727601] VFS: Disk quotas dquot_6.5.2
    [ 0.727633] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.727700] msgmni has been set to 15972
    [ 0.727874] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.727898] io scheduler noop registered
    [ 0.727899] io scheduler deadline registered
    [ 0.727931] io scheduler cfq registered (default)
    [ 0.728079] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.728205] pcieport 0000:00:09.0: irq 41 for MSI/MSI-X
    [ 0.728311] pcieport 0000:00:0a.0: irq 42 for MSI/MSI-X
    [ 0.728517] GHES: HEST is not enabled!
    [ 0.728597] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.749121] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.769870] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.770045] Linux agpgart interface v0.103
    [ 0.770081] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.770083] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.770826] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.770924] mousedev: PS/2 mouse device common for all mice
    [ 0.770963] rtc_cmos 00:03: RTC can wake from S4
    [ 0.771049] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 0.771067] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.771072] cpuidle: using governor ladder
    [ 0.771074] cpuidle: using governor menu
    [ 0.771167] TCP: cubic registered
    [ 0.771232] NET: Registered protocol family 10
    [ 0.771354] NET: Registered protocol family 17
    [ 0.771357] Registering the dns_resolver key type
    [ 0.771479] PM: Hibernation image not present or could not be loaded.
    [ 0.771486] registered taskstats version 1
    [ 0.772203] rtc_cmos 00:03: setting system clock to 2012-07-12 12:12:12 UTC (1342095132)
    [ 0.772225] Initializing network drop monitor service
    [ 0.775123] Freeing unused kernel memory: 740k freed
    [ 0.775261] Write protecting the kernel read-only data: 8192k
    [ 0.778687] Freeing unused kernel memory: 1588k freed
    [ 0.780366] Freeing unused kernel memory: 640k freed
    [ 0.786942] udevd[81]: starting version 185
    [ 0.806218] usbcore: registered new interface driver usbfs
    [ 0.806236] usbcore: registered new interface driver hub
    [ 0.806293] usbcore: registered new device driver usb
    [ 0.806913] SCSI subsystem initialized
    [ 0.808327] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.808550] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 0.808577] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 0.808585] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.808603] QUIRK: Enable AMD PLL fix
    [ 0.808612] ehci_hcd 0000:00:12.2: debug port 1
    [ 0.808631] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe5ff800
    [ 0.809224] libata version 3.00 loaded.
    [ 0.809903] xhci_hcd 0000:01:00.0: xHCI Host Controller
    [ 0.809925] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
    [ 0.810035] xhci_hcd 0000:01:00.0: irq 17, io mem 0xfe6fe000
    [ 0.810076] xhci_hcd 0000:01:00.0: irq 43 for MSI/MSI-X
    [ 0.810081] xhci_hcd 0000:01:00.0: irq 44 for MSI/MSI-X
    [ 0.810085] xhci_hcd 0000:01:00.0: irq 45 for MSI/MSI-X
    [ 0.810090] xhci_hcd 0000:01:00.0: irq 46 for MSI/MSI-X
    [ 0.810094] xhci_hcd 0000:01:00.0: irq 47 for MSI/MSI-X
    [ 0.810322] xHCI xhci_add_endpoint called for root hub
    [ 0.810323] xHCI xhci_check_bandwidth called for root hub
    [ 0.810492] hub 2-0:1.0: USB hub found
    [ 0.810497] hub 2-0:1.0: 2 ports detected
    [ 0.810688] xhci_hcd 0000:01:00.0: xHCI Host Controller
    [ 0.810693] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 3
    [ 0.813735] xHCI xhci_add_endpoint called for root hub
    [ 0.813737] xHCI xhci_check_bandwidth called for root hub
    [ 0.813784] hub 3-0:1.0: USB hub found
    [ 0.813792] hub 3-0:1.0: 2 ports detected
    [ 0.814472] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.817469] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.817877] hub 1-0:1.0: USB hub found
    [ 0.817879] hub 1-0:1.0: 5 ports detected
    [ 0.818099] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 0.818107] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 0.818112] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.818129] ehci_hcd 0000:00:13.2: debug port 1
    [ 0.818138] ehci_hcd 0000:00:13.2: irq 17, io mem 0xfe5ff400
    [ 0.827497] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.827604] hub 4-0:1.0: USB hub found
    [ 0.827606] hub 4-0:1.0: 5 ports detected
    [ 0.827728] ehci_hcd 0000:00:16.2: EHCI Host Controller
    [ 0.827734] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 5
    [ 0.827739] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.827754] ehci_hcd 0000:00:16.2: debug port 1
    [ 0.827764] ehci_hcd 0000:00:16.2: irq 17, io mem 0xfe5ff000
    [ 0.837496] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 0.837603] hub 5-0:1.0: USB hub found
    [ 0.837605] hub 5-0:1.0: 4 ports detected
    [ 0.841081] ahci 0000:00:11.0: version 3.0
    [ 0.841136] ahci 0000:00:11.0: irq 48 for MSI/MSI-X
    [ 0.841201] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 4 ports 6 Gbps 0xf impl SATA mode
    [ 0.841204] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 0.841602] scsi0 : ahci
    [ 0.841675] scsi1 : ahci
    [ 0.841726] scsi2 : ahci
    [ 0.841774] scsi3 : ahci
    [ 0.841809] ata1: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffd00 irq 48
    [ 0.841811] ata2: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffd80 irq 48
    [ 0.841814] ata3: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffe00 irq 48
    [ 0.841816] ata4: SATA max UDMA/133 abar m1024@0xfe5ffc00 port 0xfe5ffe80 irq 48
    [ 0.841947] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.841954] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 6
    [ 0.841984] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfe5fe000
    [ 0.898238] hub 6-0:1.0: USB hub found
    [ 0.898243] hub 6-0:1.0: 5 ports detected
    [ 0.898366] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 0.898373] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 7
    [ 0.898385] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe5fd000
    [ 0.954864] hub 7-0:1.0: USB hub found
    [ 0.954868] hub 7-0:1.0: 5 ports detected
    [ 0.954992] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 0.955005] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 8
    [ 0.955017] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe5fc000
    [ 1.011491] hub 8-0:1.0: USB hub found
    [ 1.011495] hub 8-0:1.0: 2 ports detected
    [ 1.011602] ohci_hcd 0000:00:16.0: OHCI Host Controller
    [ 1.011607] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 9
    [ 1.011619] ohci_hcd 0000:00:16.0: irq 18, io mem 0xfe5f3000
    [ 1.068113] hub 9-0:1.0: USB hub found
    [ 1.068118] hub 9-0:1.0: 4 ports detected
    [ 1.160646] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.160677] ata1: SATA link down (SStatus 0 SControl 300)
    [ 1.317173] usb 7-1: new low-speed USB device number 2 using ohci_hcd
    [ 1.327173] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.327198] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.332726] ata4.00: ATA-8: SAMSUNG HD502HJ, 1AJ10001, max UDMA/133
    [ 1.332728] ata4.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.332859] ata3.00: ATA-8: SAMSUNG HD103SJ, 1AJ10001, max UDMA/133
    [ 1.332862] ata3.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.338315] ata4.00: configured for UDMA/133
    [ 1.338581] ata3.00: configured for UDMA/133
    [ 1.338734] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD103SJ 1AJ1 PQ: 0 ANSI: 5
    [ 1.338907] scsi 3:0:0:0: Direct-Access ATA SAMSUNG HD502HJ 1AJ1 PQ: 0 ANSI: 5
    [ 1.341163] sd 2:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.341181] sd 3:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.341191] sd 2:0:0:0: [sda] Write Protect is off
    [ 1.341193] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.341215] sd 3:0:0:0: [sdb] Write Protect is off
    [ 1.341217] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.341225] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.341238] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.351164] sda: sda1
    [ 1.351389] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.401086] sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 >
    [ 1.401524] sd 3:0:0:0: [sdb] Attached SCSI disk
    [ 1.481781] usbcore: registered new interface driver usbhid
    [ 1.481782] usbhid: USB HID core driver
    [ 1.487591] input: Microsft Microsoft Wireless Desktop Receiver 3.1 as /devices/pci0000:00/0000:00:13.0/usb7/7-1/7-1:1.0/input/input0
    [ 1.487653] microsoft 0003:045E:00F9.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsft Microsoft Wireless Desktop Receiver 3.1] on usb-0000:00:13.0-1/input0
    [ 1.508451] microsoft 0003:045E:00F9.0002: fixing up Microsoft Wireless Receiver Model 1028 report descriptor
    [ 1.521532] input: Microsft Microsoft Wireless Desktop Receiver 3.1 as /devices/pci0000:00/0000:00:13.0/usb7/7-1/7-1:1.1/input/input1
    [ 1.521648] microsoft 0003:045E:00F9.0002: input,hidraw1: USB HID v1.11 Mouse [Microsft Microsoft Wireless Desktop Receiver 3.1] on usb-0000:00:13.0-1/input1
    [ 1.610307] usb 9-4: new full-speed USB device number 2 using ohci_hcd
    [ 1.726903] Refined TSC clocksource calibration: 3422.454 MHz.
    [ 1.726912] Switching to clocksource tsc
    [ 1.786627] input: Logitech Logitech USB Headset as /devices/pci0000:00/0000:00:16.0/usb9/9-4/9-4:1.3/input/input2
    [ 1.786674] generic-usb 0003:046D:0A0B.0003: input,hidraw2: USB HID v1.00 Device [Logitech Logitech USB Headset] on usb-0000:00:16.0-4/input3
    [ 1.950887] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.192500] udevd[184]: starting version 185
    [ 3.958438] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 3.958443] ACPI: Power Button [PWRB]
    [ 3.958512] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 3.958514] ACPI: Power Button [PWRF]
    [ 3.978134] wmi: Mapper loaded
    [ 4.015387] pata_atiixp 0000:00:14.1: setting latency timer to 64
    [ 4.015586] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.015668] r8169 0000:02:00.0: irq 49 for MSI/MSI-X
    [ 4.015786] r8169 0000:02:00.0: eth0: RTL8168e/8111e at 0xffffc900119a0000, 00:25:22:69:80:29, XID 0c200000 IRQ 49
    [ 4.015788] r8169 0000:02:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 4.015801] scsi4 : pata_atiixp
    [ 4.015859] scsi5 : pata_atiixp
    [ 4.016032] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
    [ 4.016034] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
    [ 4.033484] sp5100_tco: SP5100 TCO WatchDog Timer Driver v0.01
    [ 4.033560] sp5100_tco: mmio address 0xb8fe00 already in use
    [ 4.079638] powernow-k8: Found 1 AMD Phenom(tm) II X4 965 Processor (4 cpu cores) (version 2.20.00)
    [ 4.079668] powernow-k8: 0 : pstate 0 (3400 MHz)
    [ 4.079670] powernow-k8: 1 : pstate 1 (2700 MHz)
    [ 4.079671] powernow-k8: 2 : pstate 2 (2200 MHz)
    [ 4.079672] powernow-k8: 3 : pstate 3 (800 MHz)
    [ 4.106096] microcode: CPU0: patch_level=0x010000b6
    [ 4.127578] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.127723] microcode: CPU1: patch_level=0x010000b6
    [ 4.128583] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.128674] microcode: CPU2: patch_level=0x010000b6
    [ 4.129514] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.129606] microcode: CPU3: patch_level=0x010000b6
    [ 4.130329] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 4.130535] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 4.162216] EDAC MC: Ver: 2.1.0
    [ 4.212356] ACPI Warning: 0x0000000000000b00-0x0000000000000b07 SystemIO conflicts with Region \SOR1 1 (20120320/utaddress-251)
    [ 4.212375] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 4.222694] MCE: In-kernel MCE decoding enabled.
    [ 4.280312] [drm] Initialized drm 1.1.0 20060810
    [ 4.403795] AMD64 EDAC driver v3.4.0
    [ 4.403955] EDAC amd64: DRAM ECC disabled.
    [ 4.403974] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    [ 4.403978] Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    [ 4.403982] (Note that use of the override may cause unknown side effects.)
    [ 4.445168] firewire_ohci 0000:03:00.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 4.527650] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.790059] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 4.790219] Registered led device: rt2800pci-phy0::radio
    [ 4.790231] Registered led device: rt2800pci-phy0::assoc
    [ 4.790242] Registered led device: rt2800pci-phy0::quality
    [ 4.904991] [drm] VGACON disable radeon kernel modesetting.
    [ 4.905329] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 4.905330] [drm] No driver support for vblank timestamp query.
    [ 4.905333] [drm] Initialized radeon 1.33.0 20080528 for 0000:04:00.0 on minor 0
    [ 4.911887] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    [ 4.911889] AMD IOMMUv2 functionality not available on this sytem
    [ 4.945232] firewire_core 0000:03:00.0: created device fw0: GUID 008f130026a90a00, S400
    [ 5.022074] usbcore: registered new interface driver snd-usb-audio
    [ 5.085203] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 5.085206] Disabling lock debugging due to kernel taint
    [ 5.090452] [fglrx] Maximum main memory to use for locked dma buffers: 7756 MBytes.
    [ 5.090549] [fglrx] vendor: 1002 device: 6738 count: 1
    [ 5.090911] [fglrx] ioport: bar 4, base 0xe000, size: 0x100
    [ 5.091202] [fglrx] Kernel PAT support is enabled
    [ 5.091219] [fglrx] module loaded - fglrx 8.96.4 [Apr 5 2012] with 1 minors
    [ 5.100526] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input5
    [ 5.100607] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
    [ 5.100767] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    [ 5.100828] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 5.100886] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 5.101067] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 5.101174] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 5.101661] snd_hda_intel 0000:04:00.1: irq 50 for MSI/MSI-X
    [ 5.145389] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:04:00.1/sound/card2/input12
    [ 7.130063] EXT4-fs (sdb7): re-mounted. Opts: (null)
    [ 7.205827] EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.293502] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.388548] Adding 9748136k swap on /dev/sdb6. Priority:-1 extents:1 across:9748136k
    And for ultimate completeness (I hope so)
    lspci -v
    [root@rechenknecht ~]# lspci -v
    00:00.0 Host bridge: Advanced Micro Devices [AMD] RS880 Host Bridge
    Subsystem: ASRock Incorporation Device 9601
    Flags: bus master, 66MHz, medium devsel, latency 0
    Capabilities: [c4] HyperTransport: Slave or Primary Interface
    Capabilities: [54] HyperTransport: UnitID Clumping
    Capabilities: [40] HyperTransport: Retry Mode
    Capabilities: [9c] HyperTransport: #1a
    Capabilities: [f8] HyperTransport: #1c
    00:02.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (ext gfx port 0) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
    I/O behind bridge: 0000e000-0000efff
    Memory behind bridge: fe800000-fe8fffff
    Prefetchable memory behind bridge: 00000000d0000000-00000000dfffffff
    Capabilities: [50] Power Management version 3
    Capabilities: [58] Express Root Port (Slot+), MSI 00
    Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [b0] Subsystem: ASRock Incorporation Device 9601
    Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
    Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
    Capabilities: [110] Virtual Channel
    Kernel driver in use: pcieport
    00:09.0 PCI bridge: Advanced Micro Devices [AMD] RS780/RS880 PCI to PCI bridge (PCIE port 4) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
    Memory behind bridge: fe600000-fe6fffff
    Capabilities: [50] Power Management version 3
    Capabilities: [58] Express Root Port (Slot+), MSI 00
    Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [b0] Subsystem: ASRock Incorporation Device 9601
    Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
    Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
    Capabilities: [110] Virtual Channel
    Kernel driver in use: pcieport
    00:0a.0 PCI bridge: Advanced Micro Devices [AMD] RS780/RS880 PCI to PCI bridge (PCIE port 5) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    I/O behind bridge: 0000c000-0000cfff
    Prefetchable memory behind bridge: 00000000cff00000-00000000cfffffff
    Capabilities: [50] Power Management version 3
    Capabilities: [58] Express Root Port (Slot+), MSI 00
    Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [b0] Subsystem: ASRock Incorporation Device 9601
    Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
    Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
    Capabilities: [110] Virtual Channel
    Kernel driver in use: pcieport
    00:11.0 SATA controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode] (rev 40) (prog-if 01 [AHCI 1.0])
    Subsystem: ASRock Incorporation Device 4391
    Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 48
    I/O ports at b000 [size=8]
    I/O ports at a000 [size=4]
    I/O ports at 9000 [size=8]
    I/O ports at 8000 [size=4]
    I/O ports at 7000 [size=16]
    Memory at fe5ffc00 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] MSI: Enable+ Count=1/4 Maskable- 64bit+
    Capabilities: [70] SATA HBA v1.0
    Capabilities: [a4] PCI Advanced Features
    Kernel driver in use: ahci
    00:12.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI])
    Subsystem: ASRock Incorporation Device 4397
    Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 18
    Memory at fe5fe000 (32-bit, non-prefetchable) [size=4K]
    Kernel driver in use: ohci_hcd
    00:12.2 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI])
    Subsystem: ASRock Incorporation Device 4396
    Flags: bus master, 66MHz, medium devsel, latency 32, IRQ 17
    Memory at fe5ff800 (32-bit, non-prefetchable) [size=256]
    Capabilities: [c0] Power Management version 2
    Capabilities: [e4] Debug port: BAR=1 offset=00e0
    Kernel driver in use: ehci_hcd
    00:13.0 USB controller: Advanced Micro Devices [AMD] nee ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI])
    Subsystem

    When I do that and publish the navbar item, the subsribers do not see it as "Page in this application", they see the URL f?p=104:1.
    An example on htmldb.oracle.com could be useful.
    Scott

  • SharePoint Designer workflow gives Claims Authentication error for some users. Problem getting output claims identity. The specified user or domain group was not found.

    We have a SharePoint Enterprise 2013 system at RTM level.  We've installed Workflow Manager 1.0 by following the steps at
    http://technet.microsoft.com/en-us/library/jj658588.aspx.  For the final step of Validating the Installation we created a simple list-level workflow and verified that the workflow
    is invoked successfully.  This is working successfully, but only for a single user.  If other users in the same site collection try to invoke the workflow on this same list we get the ULS Log Error:
    Claims Authentication          af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.SharePoint.SPException: The specified user or domain group was not found. --->
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
    followed by:
    Failed to issue new security token. Exception: Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
    (as details below).
    All accounts that are attempting to use the Test Workflow (both working and non-working user accounts) are valid AD accounts and are included in the User Profile Sync that runs nightly.  All have Contribute or Design permission level (and for testing,
    Full Control). 
    What could cause the Claims Authentication to fail when certain users attempt to launch the workflow?
    Thank you for your response.
    Jim Mac.
    08/29/2013 10:22:51.94  w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.SharePoint.SPException: The specified user or domain group was
    not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.     at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType,
    Boolean forceSuccess)     at System.Security.Principal.NTAccount.Translate(Type targetType)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity,
    SPClaim loginClaim)     --- End of inner exception stack trace ---     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdent... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          af3zp Unexpected ...ity, SPClaim loginClaim)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String
    encodedIdentityClaimSuffix)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.CreateTokenCacheReferenceFromTokenSignature(SPRequestInfo requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentTokenCacheReferenceClaim(SPRequestInfo
    requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)'. 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94  w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable STS Call: Failed to issue new security token. Exception: Microsoft.SharePoint.SPException: The specified user or domain group was not found. --->
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.     at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)    
    at System.Security.Principal.NTAccount.Translate(Type targetType)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim)    
    --- End of inner exception stack trace ---     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim logi... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable ...nClaim)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.CreateTokenCacheReferenceFromTokenSignature(SPRequestInfo requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentTokenCacheReferenceClaim(SPRequestInfo
    requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)     at Microsoft.IdentityModel.Securi... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable ...tyTokenService.SecurityTokenService.Issue(IClaimsPrincipal principal, RequestSecurityToken request)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.Issue(IClaimsPrincipal
    principal, RequestSecurityToken request) 94aa5c2d-fa45-9b83-b203-a92b20102583

    Hi Aries,
    I am facing issue with work flow where Workflow goes to Suspend mode.
    I am facing an issue with SP2013 Custom Workflow developed using Visual Studio 2012.
    Objective of the Custom workflow: User fills the form and submit, list get updated and workflow will initiate and go for the process.
    Issue: After the deployment of WF, for first time when user is filling the form and submit, list is getting updated. But the Workflow Goes to "Suspend" mode. (
    This Custom Workflow has a configuration file where we are providing other details including ID of Impersonator (farm is running under Claim Based Authentication).
    Work flow works fine once when the Impersonator initiate the workflow (Fill the form and submit for approval) and everything works fine after that.
    Following steps are already performed
    1.Make sure User profile synchronization is started.
    2.Make sure the user is not the SharePoint system user.
    3.Make sure the user by whom you are logged is available in User Profile list.
    4.Step full synchronization of User Profile Application.
    From the ULS logs it seems the user's security token from the STS service and User profile service is not being issued.
    Appreciate any thoughts or solution.
    Following are the log files.
    <-------------------------------Information taken from "http://YYYY.XXXXX.com/sites/xxxx/_layouts/15/wrkstat.aspx" where it is showing workflow status as "Suspend"------->
    http://yyyy.XXXX.com/sites/xxxx/_vti_bin/client.svc/sp.utilities.utility.ResolvePrincipalInCurrentcontext(input=@ParamUser,scopes='15',sources='15',inputIsEmailOnly='false',addToUserInfoList='False')?%40ParamUser='i%3A0%23.w%7CXXXXX%5Csps_biscomdev'
    Correlation Id: f5bd8793-a53c-2127-bfb1-70bc172425e8 Instance Id: 14a985a0-60c8-42db-a42c-c752190b8106
    RequestorId: f5bd8793-a53c-2127-0000-000000000000. Details: RequestorId: f5bd8793-a53c-2127-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 401
    {"error_description":"The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug>
    configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs."} {"x-ms-diagnostics":["3001000;reason=\"There
    has been an error authenticating the request.\";category=\"invalid_client\""],"SPRequestGuid":["f5bd8793-a53c-2127-8654-672758a68234"],"request-id":["f5bd8793-a53c-2127-8654-672758a68234"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"SPRequestDuration":["34"],"SPIisLatency":["0"],"Server":["Microsoft-IIS\/7.5"],"WWW-Authenticate":["Bearer
    realm=\"b14e1e0f-257f-42ec-a92d-377479e0ec8d\",client_id=\"00000003-0000-0ff1-ce00-000000000000\",trusted_issuers=\"00000005-0000-0000-c000-000000000000@*,[email protected]79e0ec8d\"","NTLM"],"X-Powered-By":["ASP.NET"],"MicrosoftSharePointTeamServices":["15.0.0.4420"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Date":["Fri, 10 Apr 2015 19:48:07 GMT"]} at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    ULS Log
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Authentication Authorization agb9s Medium OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Runtime ajd6k Verbose Value for isAnonymousAllowed is : False f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Runtime ajd6l Verbose Value for checkAuthenticationCookie is : True f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Execution Time=18.7574119057031 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.73 PowerShell.exe (0x29BC) 0x2B9C SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {AF89E1D7-C47F-467B-8FD4-D7DC768820EE} 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Parent No 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Application Authentication Pipeline). Parent Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication ah25l Medium SPJsonWebSecurityBaseTokenHandler: ValidateActorIsSelfIssuer! Issuer '00000005-0000-0000-c000-000000000000' is not self
    issuer. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Getting Site Subscription Id). Parent [S2S] Getting token from STS and setting Thread Identity f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Getting Site Subscription Id). Execution Time=0.341314329055788 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Reading token from Cache using token signature). Parent [S2S] Getting token from STS and setting Thread
    Identity f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General ajji6 High Unable to write SPDistributedCache call usage entry. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Reading token from Cache using token signature). Execution Time=7.5931438213516 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Application Authentication ajwpx Medium SPApplicationAuthenticationModule: Failed to build cache key for user  f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Topology aeayb Medium SecurityTokenServiceSendRequest: RemoteAddress: 'http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc' Channel:
    'Microsoft.IdentityModel.Protocols.WSTrust.IWSTrustChannelContract' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:fd5eba94-c39d-4667-89bd-089411c87f09' f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.77 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Topology aeax9 Medium SecurityTokenServiceReceiveRequest: LocalAddress: 'http://c1vspwfe01.vitas.com:32843/SecurityTokenServiceApplication/securitytoken.svc'
    Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:fd5eba94-c39d-4667-89bd-089411c87f09' f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.77 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteSecurityTokenServiceOperationServer). Parent No f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication ah25l Medium SPJsonWebSecurityBaseTokenHandler: ValidateActorIsSelfIssuer! Issuer '00000005-0000-0000-c000-000000000000' is not self
    issuer. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {F17590DF-49D9-439D-86BC-5AE6416BB765} f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8b Verbose Looking up  site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {3847D5A4-15C6-4AF9-B062-E22BB555DF4F} f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0s1 High Identity claims mapped to '0' user profiles. Claims: [nameid: '', nii: 'windows', upn: '', smtp: '', sip: ''], User Profiles: f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0sr Unexpected UserProfileException caught.. Exception Microsoft.Office.Server.Security.UserProfileNoUserFoundException: 3001002;reason=The
    incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0() is thrown. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0su High The set of claims could not be mapped to a single user identity. Exception 3001002;reason=The incoming identity is not mapped
    to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator. has occured.  f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication ae0tc High The registered mappered failed to resolve to one identity claim. Exception: Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.ResolveUserIdentityClaim(Uri contextUri, ClaimCollection inputClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetIdentityClaim(Uri
    contextUri, ClaimCollection inputClaims, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetLogonIdentityClaim(SPRequestInfo requestInfo, IClaimsIdentity inputIdentity, IClaimsIdentity
    outputIdentity, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.EnsureSharePointClaims(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity, SPCallingIdentityType callerType)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)'. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication fo1t Monitorable STS Call: Failed to issue new security token. Exception: Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.ResolveUserIdentityClaim(Uri contextUri, ClaimCollection inputClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetIdentityClaim(Uri
    contextUri, ClaimCollection inputClaims, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetLogonIdentityClaim(SPRequestInfo requestInfo, IClaimsIdentity inputIdentity, IClaimsIdentity
    outputIdentity, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.EnsureSharePointClaims(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity, SPCallingIdentityType callerType)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)     at Microsoft.IdentityModel.SecurityTokenService.SecurityTokenService.Issue(IClaimsPrincipal principal, RequestSecurityToken request)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.Issue(IClaimsPrincipal
    principal, RequestSecurityToken request) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteSecurityTokenServiceOperationServer). Execution Time=17.1551132895382 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication fsq7 High SPSecurityContext: Request for security token failed with exception: System.ServiceModel.FaultException: The server was
    unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in
    order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message
    response)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken
    rst)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication 8306 Critical An exception occurred when trying to issue security token: The server was unable to process the request due to an internal
    error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to
    the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Application Authentication Pipeline). Execution Time=52.3525336320678 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Application Authentication ajezs High SPApplicationAuthenticationModule: Error authenticating request, Error details { Header: {0}, Body: {1} }.  Available
    parameters: 3001000;reason="There has been an error authenticating the request.";category="invalid_client" {"error_description":"The server was unable to process the request due to an internal error.  For more information
    about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as
    per the Microsoft .NET Framework SDK documentation and inspect the server trace logs."} . f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 8nca Medium Application error when access /sites/testrpa2/_vti_bin/client.svc, Error=The server was unable to process the request due to an internal
    error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to
    the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.   at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message response)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken
    rst, RequestSecurityTokenResponse& rstr)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context,
    Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForApplicationAuthentication(Uri context,
    SecurityToken onBehalfOf)     at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.<>c__DisplayClass4.<GetLocallyIssuedToken>b__3()     at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated
    secureCode)     at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.ConstructIClaimsPrincipalAndSetThreadIdentity(HttpApplication httpApplication, HttpContext httpContext, SPFederationAuthenticationModule fam)    
    at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.AuthenticateRequest(Object sender, EventArgs e)     at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Execution Time=62.2890618779761 f5bd8793-a53c-2127-8485-418c67f110f6
    Regards
    Sakti

Maybe you are looking for

  • Itunes freezes when i connect my iphone

    also it wont sync and i cant repair itunes by using the repair option in the download page

  • Green Screen trying to view video then choppy!

    Ok after being on the phone for over 5 hours yesterday with support, no real support for quick time, I just get transfered from person to person. Trying to find answers to why video doesn't play. Well today I finally got it to play but it is choppy a

  • Zen mirco battery drain over night.

    i fully charged my zen micro, took out the USB, turned off the zen off and came back the next morning to find "low battery". what gives?

  • How do I get a movie on DVD into my new 5th Generation ipod?

    I read up, and it seems the only way to get a DVD movie onto the 60 GB iPod is to buy Quicktime Pro. I wouldn't have a problem with this if I was just sure that a DVD format will convert well with this program. In fact I'm not ever sure how to transf

  • G5 ATA disk fans always on

    Hi, I have a 2.5 dual G5 I bought second hand, I am annoyed by the disk fans (I'm talking about the ATA disks) they're always running even if I do not use those disk at all, making a steady noise that I'd like to suppress. Is there any chance I can g