Detecting and handling user session expiry

I have implemented Frank's method of detecting expired session (http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/)-
basicaly we call session expired when requested session is not equal to current web session. If requested session is null then we say its innitial request.
But there is situation when this doesn't work properly:
We are closing our application, but we dont close the browser. Then if we try to open our application again (initial request) our code detects session expiry error, becouse requested session is not null...
Is there I way to make it work properly?

I have implemented Frank's method of detecting expired session (http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/)-
basicaly we call session expired when requested session is not equal to current web session. If requested session is null then we say its innitial request.
But there is situation when this doesn't work properly:
We are closing our application, but we dont close the browser. Then if we try to open our application again (initial request) our code detects session expiry error, becouse requested session is not null...
Is there I way to make it work properly?

Similar Messages

  • Problem in implements ADF Faces: Detecting and handling user session expiry

    Hello everybody
    I´m trying to implement a method to handle user session expiry as explained by frank nimphius in his blog.
    http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/
    I have implemented the class bellow and add the filters in web.xml. However when I add the JavaServer Faces Servlet to sign the filter, my hole application get nuts. I try to publish the applicatoin in the OAS and it seems that it already starts expired.
    Someone konw what I´m doing wrong?
    I use the filter
    <filter>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <filter-class>adf.sample.ApplicationSessionExpiryFilter</filter-class>
    <init-param>
    <param-name>SessionTimeoutRedirect</param-name>
    <param-value>SessionExpired.jspx</param-value>
    </init-param>
    </filter>
    then I add
    XML:
    <filter-mapping>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    package adf.sample;
    import java.io.IOException;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    this is the class
    public class ApplicationSessionExpiryFilter implements Filter {
    private FilterConfig _filterConfig = null;
    public void init(FilterConfig filterConfig) throws ServletException {
    _filterConfig = filterConfig;
    public void destroy() {
    _filterConfig = null;
    public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain) throws IOException, ServletException {
    String requestedSession = ((HttpServletRequest)request).getRequestedSessionId();
    String currentWebSession = ((HttpServletRequest)request).getSession().getId();
    boolean sessionOk = currentWebSession.equalsIgnoreCase(requestedSession);
    // if the requested session is null then this is the first application
    // request and "false" is acceptable
    if (!sessionOk && requestedSession != null){
    // the session has expired or renewed. Redirect request
    ((HttpServletResponse) response).sendRedirect(_filterConfig.getInitParameter("SessionTimeoutRedirect"));
    else{
    chain.doFilter(request, response);
    I'm really having trouble controlling user sessions. if someone know where I can get materials to learn how to implements session in Jdev ADF + BC, I´m very grateful.
    Thank you Marnie

    The class works fine.. the issue is when I add the this code into web.xml
    <filter-mapping>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    bellow the web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app>
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>userinterface.DataBindings</param-value>
    </context-param>
    <filter>
    <filter-name>ApplicationSessionExpiryFilter</filter-name>
    <filter-class>view.managedBean.ApplicationSessionExpiryFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>ApplicationSessionExpiryFilter</filter-name> ==> the problem occurs when I try to add this code
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>1</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/pain</mime-type>
    </mime-mapping>
    </web-app>
    By the way, how can I post code on the forum properly?

  • Handling user session expiry

    I am trying to implements Frank's way of detecting session expiry.(http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/)
    It looks so simple and works perfectly well on test application in OC4J servers...
    But it doesnt work on my JBoss.
    Basicaly you take requestSession and currentWebSession in filter and compare them like this:
    String requestedSession = ((HttpServletRequest)request).getRequestedSessionId();
    String currentWebSession = ((HttpServletRequest)request).getSession().getId();
    If session id's are not equal, then it is expired session...But on my JBoss I always get equal session ids and never get requestedSession null (you should get null on initial session)!!! I am realy stuck with this
    I try checking if requested session is valid with isRequestedSessionIdValid() and I always get valid on my JBoss... on OC4J it works properly as well...
    Maybe this has something to do with my secure connection on JBoss?
    Can someone please give me something to hold to!?

    I am trying to implements Frank's way of detecting session expiry.(http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/)
    It looks so simple and works perfectly well on test application in OC4J servers...
    But it doesnt work on my JBoss.
    Basicaly you take requestSession and currentWebSession in filter and compare them like this:
    String requestedSession = ((HttpServletRequest)request).getRequestedSessionId();
    String currentWebSession = ((HttpServletRequest)request).getSession().getId();
    If session id's are not equal, then it is expired session...But on my JBoss I always get equal session ids and never get requestedSession null (you should get null on initial session)!!! I am realy stuck with this
    I try checking if requested session is valid with isRequestedSessionIdValid() and I always get valid on my JBoss... on OC4J it works properly as well...
    Maybe this has something to do with my secure connection on JBoss?
    Can someone please give me something to hold to!?

  • Detecting user session expiry in secure connection

    I have implemented Frank's method of detecting expired session (http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/)-
    basicaly we call session expired when requested session is not equal to current web session:
    String requestedSession =
    ((HttpServletRequest)request).getRequestedSessionId();
    String currentWebSession =
    ((HttpServletRequest)request).getSession().getId();
    boolean sessionOk =
    currentWebSession.equalsIgnoreCase(requestedSession);
    It works perfectly well when I am launching application in OC4J, but it doesnt if I use JBoss with secure connection and session id in cookie- requestedSession and requestedSession is always the same
    Is there a way to detect session expiry using secure connection?

    Thank You for the answer Frank.
    unfortunately I cannot see full view of how this proposal differ from what I am doing..
    Can You please be more specific...
    As I understand, I am doing exactly the same with:
    String requestedSession =
    ((HttpServletRequest)request).getRequestedSessionId();
    String currentWebSession =
    ((HttpServletRequest)request).getSession().getId();
    or you mean to save currentWebSession somewhere else?

  • How to Handle user Session in JSP

    Help me,
    How to handle user session in JSP.......

    Prakash_Pune wrote:
    tell me some Debugging tech. so i can overcome from my problem.....Do you use an IDE? Any IDE ships with a decent debugger where in you can just execute the code step by step, explore the current variable values and check what exactly is happening. For example Eclipse or IntelliJ. If you don´t use an IDE, then just place some System.out.println() or Logger.debug() statements at strategic locations printing the variables of relevance so that you can track in logs what exactly is happening.
    or tell any other way to find is my page is thread safe or not...Just write correct code and narrow the scope of the variables as much as possible. If you for example assigned the user object to a static variable or as a servlet´s instance variable, then exactly the same user object would be used everywhere in the application. That kind of logical things.

  • JDev 11gr1: Session expiry example from Frank Nimphius

    Is the "ADF Faces: Detecting and handling user session expiry" http://thepeninsulasedge.com/frank_nimphius/2007/08/22/adf-faces-detecting-and-handling-user-session-expiry/
    supposed to work with JDev/ADF 11g?
    I noticed the following two issues:
    1) When a session expires, is renewed and I get redirected to the desired page the GUI does not respond to any actions anymore (eg. button clicks).
    2) Concerns JDev embedded WLS.
    The session id (requested session for the first app request) is only null when the app is run for the first time after starting JDev. For every subsequent run a session id is existent already. So the implemented logic in ApplicationSessionExpiryFilter.doFilter causes a redirect.
    Session ids look like this for a 2nd run:
    requestedSession : lKyvJQ9Wvb1jyHfjRcXVqydvJjpLvT1QwWHTM1PbpTTsmLpWM06L!-744873777
    currentWebSession: KKbnJQCXkyMGTbtxJ0kSVm72yGTX5zJnQBmgk3RJvpcFs7n1ynrl!-744873777!1224770231186

    Hi,
    saying it this way: the solution will have its equivalent in ADF Faces RC. There are two major changes in ADF Faces RC
    - The server is WLS and no longer OC4J, which means that the WLS session handling needs to have a look at
    - ADF Faces RC uses a lot more PPR (Ajax requestst) and less page redirects. So I am not sure that the servlet will know for certain about the context that it is in when the session expired
    So in summary I would think that the sample is broken in JDeveloper 11
    Frank

  • Schedule Task - Windows 2008 R2 - User Session

    I am migratiing the schedule task from windows 2003 to windows 2008 and find some of behaviour change on handling user session by Task Scheduler.
    I have a simple batch to call "net use" command to map a network drive for copying file to remote server. And I have scheduled 3 similar tasks and run as same user (e.g. testuser)
    In windows 2003 enviornment, the mapped network drive resource will not be accessed by another schedule task. In windows 2008 R2, howerver, the network drive mapped in one of schedule task can be reached by another task. Does anyone have
    idea on this behaviour change?
    Here are the testing script
    Test Script 1
    NET USE >> D:\TEST1.LOG
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO >> D:\TEST1.LOG
    ping 127.0.0.1 -n 100
    NET USE Z: /DELETE
    Test Script 2
    NET USE >> D:\TEST2.LOG
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO >> D:\TEST1.LOG
    ping 127.0.0.1 -n 100
    NET USE Z: /DELETE
    Test Script 3
    NET USE >> D:\TEST3.LOG
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO >> D:\TEST3.LOG
    ping 127.0.0.1 -n 100
    NET USE Z: /DELETE
    Output in Windows 2003
    Test1.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Test2.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Test3.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Output in Windows 2008
    Test1.LOG
    New connections will not be remembered.
    There are no entries in the list.
    The command completed successfully.
    z: was deleted successfully.
    Test2.LOG
    New connections will not be remembered.
    Status       Local     Remote                    Network
    OK           Z:       
    \\127.0.0.1\Share          Microsoft Windows Network
    The command completed successfully.
    System error 85 has occurred.
    The local device name is already in use.
    The network connection could not be found.
    More help is available by typing NET HELPMSG 2250.
    Test3.LOG
    New connections will not be remembered.
    Status       Local     Remote                    Network
    OK           Z:       
    \\127.0.0.1\Share          Microsoft Windows Network
    The command completed successfully.
    System error 85 has occurred.
    The local device name is already in use.
    The network connection could not be found.
    More help is available by typing NET HELPMSG 2250.

    Sorry for confusing, I have udpated the script for this testing
    =====================================================
    Script for Schedule Task 1 - to map a network drive and issue a ping command to "sleep"
    Echo %date% %time% list drive on schedule task 1
    NET USE 
    Echo %date% %time% map drive on schedule task 1
    NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO
    ping 127.0.0.1 -n 100 > NUL
    Echo %date% %time% remove drive on schedule task 1
    NET USE Z: /DELETE
    Script for Schedule Task 2 - to list out any network drive are mapped.
    Echo %date% %time% list drive on schedule task 2
    NET USE 
    ========================================================================
    The schedule task 2 are triggered while the schedule task 1 are running, In the windows 2003, the schedule task 2 could not list out any mapped drive. In the windows 2008, however, the schedule task 2
    can list the network drive mapped by schedule task 1. The question is if there are any changes between windows 2003 and 2008, hope it can clarify.
    Ouput on windows 2003
    Schedule task1
    D:\>Echo Wed 02/06/2013 18:31:52.93 list drive on schedule task 1
    Wed 02/06/2013 18:31:52.93 list drive on schedule task 1
    D:\>NET USE
    New connections will not be remembered.
    There are no entries in the list.
    D:\>Echo Wed 02/06/2013 18:31:52.98 map drive on schedule task 1
    Wed 02/06/2013 18:31:52.98 map drive on schedule task 1
    D:\>NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO
    The command completed successfully.
    D:\>ping 127.0.0.1 -n 100 1>NUL
    D:\>Echo Wed 02/06/2013 18:33:32.07 remove drive on schedule task 1
    Wed 02/06/2013 18:33:32.07 remove drive on schedule task 1
    D:\>NET USE Z: /DELETE
    Z: was deleted successfully.
    Schedule Task 2
    d:\>Echo Wed 02/06/2013 18:32:22.54 list drive on schedule task 2
    Wed 02/06/2013 18:32:22.54 list drive on schedule task 2
    d:\>NET USE
    New connections will not be remembered.
    There are no entries in the list.
    Output on windows 2008
     Schedule task1
    C:\Windows\system32>Echo Wed 02/06/2013 18:17:52.13 list drive on schedule task 1
    Wed 02/06/2013 18:17:52.13 list drive on schedule task 1
    C:\Windows\system32>NET USE  
    New connections will not be remembered.
    There are no entries in the list.
    C:\Windows\system32>Echo Wed 02/06/2013 18:17:52.16 map drive on schedule task 1
    Wed 02/06/2013 18:17:52.16 map drive on schedule task 1
    C:\Windows\system32>NET USE Z: \\127.0.0.1\Share /PERSISTENT:NO 
    The command completed successfully.
    C:\Windows\system32>ping 127.0.0.1 -n 100 
    1>NUL
    C:\Windows\system32>Echo Wed 02/06/2013 18:19:32.59 remove drive on schedule task 1
    Wed 02/06/2013 18:19:32.59 remove drive on schedule task 1
    C:\Windows\system32>NET USE Z: /DELETE
    Z: was deleted successfully.
    Schedule task2
    C:\Windows\system32>Echo Wed 02/06/2013 18:18:07.69 list drive on schedule task 2
    Wed 02/06/2013 18:18:07.69 list drive on schedule task 2
    C:\Windows\system32>NET USE  
    New connections will not be remembered.
    Status       Local     Remote                    Network
    OK           Z:        \\127.0.0.1\Share        
    Microsoft Windows Network
    The command completed successfully.

  • How to check if a user session is active in Java application server

    Hi Experts,
          We have a online scenario with a third party system by which a portal user will launch the third party application in a new window from portal. The SSO will work at the third party web application with the dynamic key that is generated by calling a webservice for that user. Now, as the user works on the launched screen, they will have to check whether the user (logged in portal) session is still active. ie., they will be periodically calling a service hosted by SAP java application server to find out whether the corresponding user who launched the session is still logged in or logged out.
    So, my question is, how can i find out programatically whether a user/user's session is still logged in/active in SAP Netweaver Java AS? We are in version 7.3.
    Kindly help me in this regard.
    Regards
    Vijay.K

    Hi Vijay,
    Could you check below links
    Tracing Single User Sessions - Administration - SAP Library
    Display and Manage User Sessions (SAP Library - Tools for Monitoring the System)
    Hope this helps.
    Regards,
    Deepak Kori

  • Terminate a User session in the Portal

    Hello,
    is it possible to terminate a user session.
    I want to delete a user, but I get the following error log:
    - user delete failed
    - Cannot lock at least one of the 4 locks for the owner
    What is necessary to perform, before I am able to delete the user?
    Thanks for your help!
    Best regards,
    Michael

    Michael,
    I think there is a distinction between deleting a user, and a user session. If you want to delete a users session, object locks must be cleared first. Users, as you know are deleted on UME Admin. On NW2004s the UME Admin is now called Identity Management.
    Regards,
    James

  • RDS2012R2 User Printers Showing Up In All User Sessions

    Hi There,
    I'm having a rather odd and annoying issues with our client's RDS servers and some printers. Some users printers seem to 'bleed' to all other users sessions.
    Printers are all configured on the same print server and are shared out from there. Onsite IT then manually add printers to users sessions as they need them.
    However, for some reason some printers are showing up in all user sessions, which is causing Devices and Printers to show 2 and 3 of the same printers installed. I'm logged into the server as my domain admin account and I have no printers installed under
    my profile (other than XPS/Onenote/cutePDF as these are local printers), yet as you can see from the below screenshot, all the printers highlighted in blue show up, and these show for all users.
    When I try to remove these printers one of a few things happens:
    Nothing. The printer does not remove and it just stays there.
    It disappears for a second and then reappears at the end of the list.
    It disappears for a few minutes and then reappears on its own.
    Interestingly enough, these printers come and go on their own through out the day and it appears to be related to user logons, but I've been unable to narrow down what users are causing what printers to appear for all users.
    Printer redirection is turned off so cannot be the cause.
    How is such a thing even possible given that if the printer was installed as an admin, then it would show up all the time and removing it would actually remove the printer and user printers are meant to stick to that users sessions.
    And more importantly, how do I resolve this annoying issue as it is confusing users when they have multiple printers to print to of the same type.

    Hello all,
    i have a strange problem like MachTesseract in
    RDS2012.
    Users have 4 shared network printer from a spooler server; any printer is mapped in users session.
    When user logon or logoff in RDS session in admin session appair other 4 olds  printers that after are present in all users session. In user session these printer cannot be deleted (ask username and password from administrator). If  i delete these
    printer from administrator session these disappair in all user session, but next time user logon or logoff appair in RDS admin session again and after in all user session
    I think that these 4 printer are old setting printer mapped in admin session; i have done reboot RDS server but problem remain.
    If i delete 4 printer in admin session and after restart spooler in RDS server  these 4 printer are again mapped (like when user make logon or logoff) in admin session and any user session.
    I have disable gpo for mapping and in any user session i mapped all 4 printer; but if user logon or logoff old 4 printer mapped in admin session reappair. I think there is a automap at login or logoff user session for deleted printer mapped in RDS server
    in admin session
    Can anyone have any idea for this problem?
    Thanks in advance for any support.

  • User session stops completely and restarts (GNOME 3.10)

    Since last week I have experienced suddenly closing all applications closing and sending me to the log-in screen.
    Using journalctl I can see that all applications exited with a "Fatal IO error 11 (Resource temporarily unavailable) on X server :0". It all ends with the user session stopping and then being started again.
    Here is a journald log from yesterday at 13:10.
    Jan 16 13:10:35 archvision dbus[358]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to load: No such fil
    Jan 16 13:10:35 archvision dbus-daemon[358]: dbus[358]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202014-01-04%2000:45
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202014-01-04%2000:45
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Videos/sound_styling_table_of_contents.wav" was
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202013-12-28%2002:13
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Pictures/Screenshot%20from%202013-12-28%2002:08
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Git/p1-report/out.png" was not found, exec: eog
    Jan 16 13:11:52 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: recent-manager-provider.vala:132: Desktop file for "file:///home/bastian/Git/gitgraph/out.png" was not found, exec: eog,
    Jan 16 13:12:08 archvision gnome-session[512]: (gnome-settings-daemon:569): Gdk-WARNING **: gnome-settings-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup:1993): Gdk-WARNING **: deja-dup: Fatal IO error 104 (Connection reset by peer) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: (transmission-gtk:731): Gdk-WARNING **: transmission-gtk: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: CopyAgent: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: skype: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: xcb_connection_has_error() returned true
    Jan 16 13:12:08 archvision gnome-session[512]: Window manager warning: Log level 16: gnome-shell: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: SparkleShare: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: dropbox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision colord[420]: Automatic remove of icc-faf837061e668d9b052248618ab54c15 from xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-faf837061e668d9b052248618ab54c15
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-d81d4c735fbeec9cb2338b26b884af5d
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-e01a3aa966ec476f6f7f10befcaf4a93
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-46fc44daad94d12a6b26c88f7d89e032
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-4fe850f70957b4b2d6afcbdf852b8027
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-46965f5505458ec64e8697211a352322
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-23de2f0eaffd00e9354ff9c155d0b8a1
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-b464ec762f975aa10134c2892d60657e
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-92e63b59caa77681fe1f11e64cb069e7
    Jan 16 13:12:08 archvision colord[420]: Profile removed: icc-10bb2bcfa705d9b655d32bf92f4d65e9
    Jan 16 13:12:08 archvision colord[420]: device removed: xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:12:08 archvision gnome-session[512]: (evolution-alarm-notify:722): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: (nm-applet:721): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision systemd[1]: Stopping Session 2 of user bastian.
    Jan 16 13:12:08 archvision systemd[1]: Stopped Session 2 of user bastian.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision systemd-logind[356]: Removed session 2.
    Jan 16 13:12:08 archvision systemd[1]: Stopping User Manager for 1000...
    Jan 16 13:12:08 archvision systemd[506]: Stopping Default.
    Jan 16 13:12:08 archvision systemd[506]: Stopped target Default.
    Jan 16 13:12:08 archvision systemd[506]: Starting Shutdown.
    Jan 16 13:12:08 archvision systemd[506]: Reached target Shutdown.
    Jan 16 13:12:08 archvision systemd[506]: Starting Exit the Session...
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup-monitor:750): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor org.gtk.Private.UDisks2VolumeMonitor disconnected from the bus; removing dr
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup-monitor:750): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor org.gtk.Private.MTPVolumeMonitor disconnected from the bus; removing drives
    Jan 16 13:12:08 archvision gnome-session[512]: (deja-dup-monitor:750): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor org.gtk.Private.GoaVolumeMonitor disconnected from the bus; removing drives
    Jan 16 13:12:08 archvision gnome-session[512]: ** (zeitgeist-datahub:726): WARNING **: zeitgeist-datahub.vala:226: Unable to get name "org.gnome.zeitgeist.datahub" on the bus!
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision gnome-session[512]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    Jan 16 13:12:08 archvision gnome-session[512]: Received signal:15->'Terminated'
    Jan 16 13:12:08 archvision systemd[1]: Stopped User Manager for 1000.
    Three minutes later it happened again. (journald log again)
    Jan 16 13:14:35 archvision dbus-daemon[358]: dbus[358]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to
    Jan 16 13:15:18 archvision gnome-session[2416]: [228B blob data]
    Jan 16 13:15:26 archvision systemd[1]: Starting Cleanup of Temporary Directories...
    Jan 16 13:15:26 archvision systemd-tmpfiles[3286]: stat(/run/user/1000/gvfs) failed: Permission denied
    Jan 16 13:15:26 archvision systemd[1]: Started Cleanup of Temporary Directories.
    Jan 16 13:15:43 archvision gnome-session[2416]: Window manager warning: Received a NET_CURRENT_DESKTOP message from a broken (outdated) client who sent a 0 timestamp
    Jan 16 13:15:43 archvision gnome-session[2416]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x1600003 (#archlinux)
    Jan 16 13:15:43 archvision gnome-session[2416]: Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Jan 16 13:16:12 archvision gnome-session[2416]: (gnome-settings-daemon:2471): Gdk-WARNING **: gnome-settings-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: dropbox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: CopyAgent: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: SparkleShare: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: gnome-session[2416]: WARNING: App 'gnome-settings-daemon.desktop' exited with code 1
    Jan 16 13:16:12 archvision gnome-session[2416]: WARNING: App 'gnome-settings-daemon.desktop' exited with code 1
    Jan 16 13:16:12 archvision colord[420]: Automatic remove of icc-faf837061e668d9b052248618ab54c15 from xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-faf837061e668d9b052248618ab54c15
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-d81d4c735fbeec9cb2338b26b884af5d
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-e01a3aa966ec476f6f7f10befcaf4a93
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-46fc44daad94d12a6b26c88f7d89e032
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-4fe850f70957b4b2d6afcbdf852b8027
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-46965f5505458ec64e8697211a352322
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-23de2f0eaffd00e9354ff9c155d0b8a1
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-b464ec762f975aa10134c2892d60657e
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-92e63b59caa77681fe1f11e64cb069e7
    Jan 16 13:16:12 archvision colord[420]: Profile removed: icc-10bb2bcfa705d9b655d32bf92f4d65e9
    Jan 16 13:16:12 archvision colord[420]: device removed: xrandr-Chi Mei Optoelectronics corp.
    Jan 16 13:16:12 archvision gnome-session[2416]: Window manager warning: Log level 16: gnome-shell: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: (nm-applet:2622): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: (transmission-gtk:2632): Gdk-WARNING **: transmission-gtk: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: xcb_connection_has_error() returned true
    Jan 16 13:16:12 archvision sudo[3108]: pam_unix(sudo:session): session closed for user root
    Jan 16 13:16:12 archvision gnome-session[2416]: (evolution-alarm-notify:2623): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision gnome-session[2416]: (empathy:3185): Gdk-WARNING **: empathy: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Jan 16 13:16:12 archvision systemd[1]: Stopping Session 5 of user bastian.
    Jan 16 13:16:12 archvision systemd[1]: Stopped Session 5 of user bastian.
    Jan 16 13:16:12 archvision systemd-logind[356]: Removed session 5.
    Jan 16 13:16:12 archvision systemd[1]: Stopping User Manager for 1000...
    Jan 16 13:16:12 archvision gnome-session[2416]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    The dmesg log doesn't seem to have much in it, though.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.7-2-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 20131219 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Jan 12 13:09:09 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=61f8c7e3-2df0-4a94-9a43-23f12a9c7334 rw resume=/dev/sda2 resume_offset=12656640 quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000c96e6fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000c96e7000-0x00000000ca08efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ca08f000-0x00000000ca115fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca116000-0x00000000ca1e8fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ca1e9000-0x00000000ca621fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ca622000-0x00000000ca622fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca623000-0x00000000ca665fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ca666000-0x00000000cade0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cade1000-0x00000000caff2fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000caff3000-0x00000000caffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cb800000-0x00000000cf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: CLEVO CO. W35_37ET/W35_37ET, BIOS 4.6.5 12/14/2012
    [ 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 = 0x22f600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask E00000000 write-back
    [ 0.000000] 1 base 200000000 mask FE0000000 write-back
    [ 0.000000] 2 base 220000000 mask FF0000000 write-back
    [ 0.000000] 3 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 4 base 0D0000000 mask FF0000000 uncachable
    [ 0.000000] 5 base 0CC000000 mask FFC000000 uncachable
    [ 0.000000] 6 base 0CB800000 mask FFF800000 uncachable
    [ 0.000000] 7 base 22F800000 mask FFF800000 uncachable
    [ 0.000000] 8 base 22F600000 mask FFFE00000 uncachable
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xcb800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcb000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd860-0x000fd86f] mapped at [ffff8800000fd860]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22f400000-0x22f5fffff]
    [ 0.000000] [mem 0x22f400000-0x22f5fffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22c000000-0x22f3fffff]
    [ 0.000000] [mem 0x22c000000-0x22f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x22bffffff]
    [ 0.000000] [mem 0x200000000-0x22bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x40003fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x40005000-0xc96e6fff]
    [ 0.000000] [mem 0x40005000-0x401fffff] page 4k
    [ 0.000000] [mem 0x40200000-0xc95fffff] page 2M
    [ 0.000000] [mem 0xc9600000-0xc96e6fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca08f000-0xca115fff]
    [ 0.000000] [mem 0xca08f000-0xca115fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca622000-0xca622fff]
    [ 0.000000] [mem 0xca622000-0xca622fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca666000-0xcade0fff]
    [ 0.000000] [mem 0xca666000-0xca7fffff] page 4k
    [ 0.000000] [mem 0xca800000-0xcabfffff] page 2M
    [ 0.000000] [mem 0xcac00000-0xcade0fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xcaff3000-0xcaffffff]
    [ 0.000000] [mem 0xcaff3000-0xcaffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x37978000-0x37cb3fff]
    [ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 00000000ca19e080 0007C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000ca1a72d8 0010C (v05 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000ca19e190 09148 (v02 ALASKA A M I 00000021 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000ca1e7080 00040
    [ 0.000000] ACPI: APIC 00000000ca1a73e8 00092 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 00000000ca1a7480 00044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000ca1a74c8 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000ca1a7508 00EA5 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
    [ 0.000000] ACPI: HPET 00000000ca1a83b0 00038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 00000000ca1a83e8 00315 (v01 SataRe SataTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000ca1a8700 00926 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000ca1a9028 00A92 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000ca1a9ac0 00574 (v01 SgRef SgTabl 00001000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000ca1aa038 00FAC (v01 OptRef OptTabl 00001000 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000022f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x22f5fffff]
    [ 0.000000] NODE_DATA [mem 0x22f5f0000-0x22f5f4fff]
    [ 0.000000] [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880226c00000-ffff88022ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x22f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xc96e6fff]
    [ 0.000000] node 0: [mem 0xca08f000-0xca115fff]
    [ 0.000000] node 0: [mem 0xca622000-0xca622fff]
    [ 0.000000] node 0: [mem 0xca666000-0xcade0fff]
    [ 0.000000] node 0: [mem 0xcaff3000-0xcaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x22f5fffff]
    [ 0.000000] On node 0 totalpages: 2069138
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12852 pages used for memmap
    [ 0.000000] DMA32 zone: 822518 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19416 pages used for memmap
    [ 0.000000] Normal zone: 1242624 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc96e7000-0xca08efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca116000-0xca1e8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca1e9000-0xca621fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca623000-0xca665fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcade1000-0xcaff2fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb000000-0xcb7fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcb800000-0xcf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcfa00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xcfa00000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88022f200000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2036785
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=61f8c7e3-2df0-4a94-9a43-23f12a9c7334 rw resume=/dev/sda2 resume_offset=12656640 quiet
    [ 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: 8063300K/8276552K available (5115K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 213252K 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:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2394.611 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4791.77 BogoMIPS (lpj=7982036)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000030] Security Framework initialized
    [ 0.000037] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000038] Yama: becoming mindful.
    [ 0.000541] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002566] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003470] Mount-cache hash table entries: 256
    [ 0.003632] Initializing cgroup subsys memory
    [ 0.003640] Initializing cgroup subsys devices
    [ 0.003642] Initializing cgroup subsys freezer
    [ 0.003643] Initializing cgroup subsys net_cls
    [ 0.003645] Initializing cgroup subsys blkio
    [ 0.003665] CPU: Physical Processor ID: 0
    [ 0.003666] CPU: Processor Core ID: 0
    [ 0.003671] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.004041] mce: CPU supports 9 MCE banks
    [ 0.004054] CPU0: Thermal monitoring enabled (TM1)
    [ 0.004065] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.004173] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.005132] ACPI: Core revision 20130725
    [ 0.011088] ACPI: All ACPI Tables successfully acquired
    [ 0.012488] ftrace: allocating 20316 entries in 80 pages
    [ 0.022278] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.055311] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.055317] TSC deadline timer enabled
    [ 0.055324] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.055330] ... version: 3
    [ 0.055331] ... bit width: 48
    [ 0.055332] ... generic registers: 4
    [ 0.055333] ... value mask: 0000ffffffffffff
    [ 0.055334] ... max period: 0000ffffffffffff
    [ 0.055334] ... fixed-purpose events: 3
    [ 0.055335] ... event mask: 000000070000000f
    [ 0.095724] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.082109] smpboot: Booting Node 0, Processors # 1 # 2 # 3 # 4 # 5 # 6 # 7 OK
    [ 0.218035] Brought up 8 CPUs
    [ 0.218039] smpboot: Total of 8 processors activated (38329.18 BogoMIPS)
    [ 0.225368] devtmpfs: initialized
    [ 0.228016] PM: Registering ACPI NVS region [mem 0xca116000-0xca1e8fff] (864256 bytes)
    [ 0.228030] PM: Registering ACPI NVS region [mem 0xca623000-0xca665fff] (274432 bytes)
    [ 0.228771] RTC time: 10:58:11, date: 01/16/14
    [ 0.228806] NET: Registered protocol family 16
    [ 0.228897] cpuidle: using governor ladder
    [ 0.228898] cpuidle: using governor menu
    [ 0.228925] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.228926] ACPI: bus type PCI registered
    [ 0.228928] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.228974] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.228976] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.236206] PCI: Using configuration type 1 for base access
    [ 0.236847] bio: create slab <bio-0> at 0
    [ 0.236959] ACPI: Added _OSI(Module Device)
    [ 0.236960] ACPI: Added _OSI(Processor Device)
    [ 0.236961] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.236962] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.238281] ACPI: EC: Look up EC in DSDT
    [ 0.239565] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.288607] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.288988] ACPI: SSDT 00000000ca03c018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.289328] ACPI: Dynamic OEM Table Load:
    [ 0.289330] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.302166] ACPI: SSDT 00000000ca03da98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.302528] ACPI: Dynamic OEM Table Load:
    [ 0.302530] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.318721] ACPI: SSDT 00000000ca03ec18 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.319055] ACPI: Dynamic OEM Table Load:
    [ 0.319056] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.334857] ACPI: Interpreter enabled
    [ 0.334865] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.334868] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.334881] ACPI: (supports S0 S3 S4 S5)
    [ 0.334882] ACPI: Using IOAPIC for interrupt routing
    [ 0.334905] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.335040] ACPI: No dock devices found.
    [ 0.345033] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.345229] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.345415] acpi PNP0A08:00: ACPI _OSC control (0x18) granted
    [ 0.345984] PCI host bridge to bus 0000:00
    [ 0.345987] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.345989] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.345990] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.345992] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.345993] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.345995] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.345996] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.345998] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.345999] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.346001] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.346002] pci_bus 0000:00: root bus resource [mem 0xcfa00000-0xfeafffff]
    [ 0.346009] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.346096] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.346125] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.346170] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.346203] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.346213] pci 0000:00:02.0: reg 0x10: [mem 0xf7400000-0xf77fffff 64bit]
    [ 0.346219] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.346223] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.347124] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.347146] pci 0000:00:14.0: reg 0x10: [mem 0xf7a00000-0xf7a0ffff 64bit]
    [ 0.347218] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.347265] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.347299] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.347322] pci 0000:00:16.0: reg 0x10: [mem 0xf7a1b000-0xf7a1b00f 64bit]
    [ 0.347399] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.347484] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.347505] pci 0000:00:1a.0: reg 0x10: [mem 0xf7a18000-0xf7a183ff]
    [ 0.347596] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.347658] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.347692] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.347707] pci 0000:00:1b.0: reg 0x10: [mem 0xf7a10000-0xf7a13fff 64bit]
    [ 0.347775] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.347824] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.347854] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.347933] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.347984] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.348014] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    [ 0.348093] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.348144] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.348174] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
    [ 0.348253] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.348305] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.348342] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.348363] pci 0000:00:1d.0: reg 0x10: [mem 0xf7a17000-0xf7a173ff]
    [ 0.348454] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.348513] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.348545] pci 0000:00:1f.0: [8086:1e57] type 00 class 0x060100
    [ 0.348724] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.348743] pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    [ 0.348750] pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    [ 0.348757] pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    [ 0.348765] pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    [ 0.348772] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    [ 0.348780] pci 0000:00:1f.2: reg 0x24: [mem 0xf7a16000-0xf7a167ff]
    [ 0.348825] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.348896] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.348911] pci 0000:00:1f.3: reg 0x10: [mem 0xf7a15000-0xf7a150ff 64bit]
    [ 0.348932] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.349064] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
    [ 0.349075] pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
    [ 0.349086] pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.349096] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.349104] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.349112] pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
    [ 0.349163] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.355360] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.355365] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.355380] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.355383] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.355452] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.355555] pci 0000:03:00.0: [8086:088e] type 00 class 0x028000
    [ 0.355593] pci 0000:03:00.0: reg 0x10: [mem 0xf7900000-0xf7901fff 64bit]
    [ 0.355775] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.355814] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.362045] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.362061] pci 0000:00:1c.2: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.362207] pci 0000:04:00.0: [10ec:5289] type 00 class 0xff0000
    [ 0.362270] pci 0000:04:00.0: reg 0x10: [mem 0xf7800000-0xf780ffff]
    [ 0.362784] pci 0000:04:00.0: supports D1 D2
    [ 0.362786] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.362879] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.362979] pci 0000:04:00.2: [10ec:8168] type 00 class 0x020000
    [ 0.363037] pci 0000:04:00.2: reg 0x10: [io 0xd000-0xd0ff]
    [ 0.363148] pci 0000:04:00.2: reg 0x18: [mem 0xf2104000-0xf2104fff 64bit pref]
    [ 0.363217] pci 0000:04:00.2: reg 0x20: [mem 0xf2100000-0xf2103fff 64bit pref]
    [ 0.363519] pci 0000:04:00.2: supports D1 D2
    [ 0.363520] pci 0000:04:00.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.368781] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.368785] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.368789] pci 0000:00:1c.3: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.368795] pci 0000:00:1c.3: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
    [ 0.368823] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.369733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.369781] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.369827] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.369872] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.369915] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.369960] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.370004] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.370048] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
    [ 0.370236] ACPI: Enabled 5 GPEs in block 00 to 3F
    [ 0.370243] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.370294] Found 1 acpi root devices
    [ 0.370323] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.370389] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.370393] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.370394] vgaarb: loaded
    [ 0.370395] vgaarb: bridge control possible 0000:01:00.0
    [ 0.370396] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.370422] PCI: Using ACPI for IRQ routing
    [ 0.371982] PCI: pci_cache_line_size set to 64 bytes
    [ 0.372033] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.372038] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.372039] e820: reserve RAM buffer [mem 0xc96e7000-0xcbffffff]
    [ 0.372041] e820: reserve RAM buffer [mem 0xca116000-0xcbffffff]
    [ 0.372043] e820: reserve RAM buffer [mem 0xca623000-0xcbffffff]
    [ 0.372044] e820: reserve RAM buffer [mem 0xcade1000-0xcbffffff]
    [ 0.372045] e820: reserve RAM buffer [mem 0xcb000000-0xcbffffff]
    [ 0.372047] e820: reserve RAM buffer [mem 0x22f600000-0x22fffffff]
    [ 0.372123] NetLabel: Initializing
    [ 0.372124] NetLabel: domain hash size = 128
    [ 0.372125] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.372136] NetLabel: unlabeled traffic allowed by default
    [ 0.372156] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.372160] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.374183] Switched to clocksource hpet
    [ 0.377767] pnp: PnP ACPI init
    [ 0.377776] ACPI: bus type PNP registered
    [ 0.377837] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.377840] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.377850] pnp 00:01: [dma 4]
    [ 0.377862] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.377880] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.377956] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.377992] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.377994] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.377995] system 00:04: [io 0xffff] has been reserved
    [ 0.377997] system 00:04: [io 0xffff] has been reserved
    [ 0.377999] system 00:04: [io 0x0400-0x0453] could not be reserved
    [ 0.378001] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.378002] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.378005] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.378007] system 00:04: [io 0x3322-0x3323] has been reserved
    [ 0.378009] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.378032] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.378073] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.378076] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.378116] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 0.378119] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.378140] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.378164] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.378207] pnp 00:0a: Plug and Play ACPI device, IDs ETD0403 PNP0f13 (active)
    [ 0.378833] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.378835] system 00:0b: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.378837] system 00:0b: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.378839] system 00:0b: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.378841] system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.378842] system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.378844] system 00:0b: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.378846] system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.378848] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.378849] system 00:0b: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.378851] system 00:0b: [mem 0xcfa00000-0xcfa00fff] has been reserved
    [ 0.378853] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.378985] system 00:0c: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.378987] system 00:0c: [mem 0x40000000-0x401fffff] could not be reserved
    [ 0.378989] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.379002] pnp: PnP ACPI: found 13 devices
    [ 0.379003] ACPI: bus type PNP unregistered
    [ 0.385141] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.385144] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.385147] pci 0000:00:01.0: bridge window [mem 0xf6000000-0xf70fffff]
    [ 0.385149] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.385153] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.385163] pci 0000:00:1c.2: PCI bridge to [bus 03]
    [ 0.385168] pci 0000:00:1c.2: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.385176] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.385178] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.385183] pci 0000:00:1c.3: bridge window [mem 0xf7800000-0xf78fffff]
    [ 0.385187] pci 0000:00:1c.3: bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
    [ 0.385193] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.385194] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.385196] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.385198] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.385199] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.385201] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.385202] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.385204] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.385205] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.385207] pci_bus 0000:00: resource 13 [mem 0xcfa00000-0xfeafffff]
    [ 0.385208] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.385210] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
    [ 0.385212] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 0.385213] pci_bus 0000:03: resource 1 [mem 0xf7900000-0xf79fffff]
    [ 0.385215] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
    [ 0.385216] pci_bus 0000:04: resource 1 [mem 0xf7800000-0xf78fffff]
    [ 0.385218] pci_bus 0000:04: resource 2 [mem 0xf2100000-0xf21fffff 64bit pref]
    [ 0.385242] NET: Registered protocol family 2
    [ 0.385406] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.385585] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.385695] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.385709] TCP: reno registered
    [ 0.385721] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.385747] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.385806] NET: Registered protocol family 1
    [ 0.385816] pci 0000:00:02.0: Boot video device
    [ 0.421017] PCI: CLS 64 bytes, default 64
    [ 0.421049] Unpacking initramfs...
    [ 0.476133] Freeing initrd memory: 3312K (ffff880037978000 - ffff880037cb4000)
    [ 0.476137] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.476140] software IO TLB [mem 0xc56e7000-0xc96e7000] (64MB) mapped at [ffff8800c56e7000-ffff8800c96e6fff]
    [ 0.476405] Scanning for low memory corruption every 60 seconds
    [ 0.476648] audit: initializing netlink socket (disabled)
    [ 0.476657] type=2000 audit(1389869891.466:1): initialized
    [ 0.488246] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.489340] zbud: loaded
    [ 0.489487] VFS: Disk quotas dquot_6.5.2
    [ 0.489519] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.489651] msgmni has been set to 15755
    [ 0.489888] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.489932] io scheduler noop registered
    [ 0.489933] io scheduler deadline registered
    [ 0.489954] io scheduler cfq registered (default)
    [ 0.490106] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.490450] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.490462] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.490496] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 0.490497] vesafb: scrolling: redraw
    [ 0.490499] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.491479] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004f00000, using 8128k, total 8128k
    [ 0.636131] Console: switching to colour frame buffer device 240x67
    [ 0.780205] fb0: VESA VGA frame buffer device
    [ 0.780223] intel_idle: MWAIT substates: 0x21120
    [ 0.780225] intel_idle: v0.4 model 0x3A
    [ 0.780226] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.780420] GHES: HEST is not enabled!
    [ 0.780463] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.780820] Linux agpgart interface v0.103
    [ 0.780890] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:ELNM] at 0x60,0x64 irq 1,12
    [ 0.784163] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.785597] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.785607] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.785609] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.785610] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.785612] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.785735] mousedev: PS/2 mouse device common for all mice
    [ 0.785878] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.785904] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.785912] Intel P-state driver initializing.
    [ 0.785920] Intel pstate controlling: cpu 0
    [ 0.785931] Intel pstate controlling: cpu 1
    [ 0.785941] Intel pstate controlling: cpu 2
    [ 0.785949] Intel pstate controlling: cpu 3
    [ 0.785957] Intel pstate controlling: cpu 4
    [ 0.785972] Intel pstate controlling: cpu 5
    [ 0.785981] Intel pstate controlling: cpu 6
    [ 0.785990] Intel pstate controlling: cpu 7
    [ 0.786051] drop_monitor: Initializing network drop monitor service
    [ 0.786109] TCP: cubic registered
    [ 0.786182] NET: Registered protocol family 10
    [ 0.786325] NET: Registered protocol family 17
    [ 0.786334] Key type dns_resolver registered
    [ 0.786578] registered taskstats version 1
    [ 0.787128] Magic number: 14:671:982
    [ 0.787215] rtc_cmos 00:05: setting system clock to 2014-01-16 10:58:12 UTC (1389869892)
    [ 0.787265] PM: Checking hibernation image partition /dev/sda2
    [ 0.788167] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.917532] PM: Hibernation image not present or could not be loaded.
    [ 0.918293] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.918295] Write protecting the kernel read-only data: 8192k
    [ 0.921673] Freeing unused kernel memory: 1016K (ffff880001502000 - ffff880001600000)
    [ 0.922590] Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    [ 0.930285] systemd-udevd[78]: starting version 208
    [ 0.946773] pcieport 0000:00:1c.3: driver skip pci_set_master, fix it!
    [ 0.946873] ACPI: bus type USB registered
    [ 0.946876] rtsx_pci 0000:04:00.0: irq 41 for MSI/MSI-X
    [ 0.946891] rtsx_pci 0000:04:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 41
    [ 0.946903] usbcore: registered new interface driver usbfs
    [ 0.946913] usbcore: registered new interface driver hub
    [ 0.946973] usbcore: registered new device driver usb
    [ 0.947532] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.947546] SCSI subsystem initialized
    [ 0.947733] ehci-pci: EHCI PCI platform driver
    [ 0.947815] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 0.947818] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.947822] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.947912] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.947929] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
    [ 0.948102] hub 1-0:1.0: USB hub found
    [ 0.948109] hub 1-0:1.0: 4 ports detected
    [ 0.948401] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.948403] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.948552] libata version 3.00 loaded.
    [ 0.948642] hub 2-0:1.0: USB hub found
    [ 0.948650] hub 2-0:1.0: 4 ports detected
    [ 0.958134] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 0.958140] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.958144] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 0.958158] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.962052] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.962064] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7a18000
    [ 0.971372] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.971521] hub 3-0:1.0: USB hub found
    [ 0.971526] hub 3-0:1.0: 2 ports detected
    [ 0.971698] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.971702] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.971705] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 0.971715] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.975613] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.975623] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7a17000
    [ 0.984789] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.985103] hub 4-0:1.0: USB hub found
    [ 0.985111] hub 4-0:1.0: 2 ports detected
    [ 0.985259] ahci 0000:00:1f.2: version 3.0
    [ 0.985433] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.985471] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.998181] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x17 impl SATA mode
    [ 0.998189] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems sxs apst
    [ 0.998204] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.018886] scsi0 : ahci
    [ 1.019098] scsi1 : ahci
    [ 1.019311] scsi2 : ahci
    [ 1.019494] scsi3 : ahci
    [ 1.019689] scsi4 : ahci
    [ 1.019866] scsi5 : ahci
    [ 1.019956] ata1: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16100 irq 43
    [ 1.019960] ata2: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16180 irq 43
    [ 1.019962] ata3: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16200 irq 43
    [ 1.019964] ata4: DUMMY
    [ 1.019966] ata5: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16300 irq 43
    [ 1.019968] ata6: DUMMY
    [ 1.308506] usb 1-3: new low-speed USB device number 2 using xhci_hcd
    [ 1.327890] usb 1-3: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.329720] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.333161] usbcore: registered new interface driver usbhid
    [ 1.333165] usbhid: USB HID core driver
    [ 1.334114] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/input/input7
    [ 1.334423] hid-generic 0003:046D:C051.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:14.0-3/input0
    [ 1.338456] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.339420] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.339425] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.339428] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 1.349868] ata1.00: ATA-9: INTEL SSDSC2CT180A3, 300i, max UDMA/133
    [ 1.349884] ata1.00: 351651888 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.359418] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.359434] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.359436] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 1.369892] ata1.00: configured for UDMA/133
    [ 1.370166] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSC2CT18 300i PQ: 0 ANSI: 5
    [ 1.435266] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.478575] tsc: Refined TSC clocksource calibration: 2394.560 MHz
    [ 1.559838] hub 3-1:1.0: USB hub found
    [ 1.560024] hub 3-1:1.0: 6 ports detected
    [ 1.668796] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 1.688767] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.792889] hub 4-1:1.0: USB hub found
    [ 1.793095] hub 4-1:1.0: 8 ports detected
    [ 1.908729] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 1.908736] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 1.908739] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.062606] usb 4-1.6: new high-speed USB device number 3 using ehci-pci
    [ 2.319022] ata2.00: ATA-8: TOSHIBA MK3252GSX, LV010A, max UDMA/100
    [ 2.319029] ata2.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 2.320366] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
    [ 2.320373] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
    [ 2.320377] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.321451] ata2.00: configured for UDMA/100
    [ 2.321618] scsi 1:0:0:0: Direct-Access ATA TOSHIBA MK3252GS LV01 PQ: 0 ANSI: 5
    [ 2.479612] Switched to clocksource tsc
    [ 2.639562] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.643607] ata3.00: ATAPI: TSSTcorp CDDVDW SN-208DB, TC01, max UDMA/100
    [ 2.653637] ata3.00: configured for UDMA/100
    [ 2.662862] scsi 2:0:0:0: CD-ROM TSSTcorp CDDVDW SN-208DB TC01 PQ: 0 ANSI: 5
    [ 2.983186] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.988352] sd 0:0:0:0: [sda] 351651888 512-byte logical blocks: (180 GB/167 GiB)
    [ 2.988411] sd 1:0:0:0: [sdb] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 2.988487] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.988493] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.988494] sd 1:0:0:0: [sdb] Write Protect is off
    [ 2.988497] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.988529] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.988537] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.989966] sda: sda1 sda2
    [ 2.990254] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.993241] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.993244] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.993378] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 3.069540] sdb: sdb1 sdb2
    [ 3.070543] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 3.418979] PM: Starting manual resume from disk
    [ 3.418984] PM: Hibernation image partition 8:2 present
    [ 3.418986] PM: Looking for hibernation image.
    [ 3.419700] PM: Image not found (code -22)
    [ 3.419705] PM: Hibernation image not present or could not be loaded.
    [ 3.444138] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.499597] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.500097] systemd[1]: Set hostname to <archvision>.
    [ 3.559092] systemd[1]: Starting Collect Read-Ahead Data...
    [ 3.560163] systemd[1]: Starting Replay Read-Ahead Data...
    [ 3.560463] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.560524] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.560551] systemd[1]: Starting Login Prompts.
    [ 3.560567] systemd[1]: Reached target Login Prompts.
    [ 3.560588] systemd[1]: Starting Remote File Systems.
    [ 3.560603] systemd[1]: Reached target Remote File Systems.
    [ 3.560622] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.560664] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.560678] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.560719] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.560730] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.560749] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.560759] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.560779] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.560811] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.560941] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.560960] systemd[1]: Starting Journal Socket.
    [ 3.561026] systemd[1]: Listening on Journal Socket.
    [ 3.561056] systemd[1]: Mounting Huge Pages File System...
    [ 3.561370] systemd[1]: Starting Journal Service...
    [ 3.561773] systemd-readahead[160]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    [ 3.561816] systemd[1]: Started Journal Service.
    [ 3.576539] systemd-journald[162]: Vacuuming done, freed 0 bytes
    [ 3.607183] EXT4-fs (sda1): re-mounted. Opts: data=ordered,discard
    [ 3.610857] systemd-udevd[197]: starting version 208
    [ 3.611093] scsi6 : vhba
    [ 3.647675] ACPI: Requesting acpi_cpufreq
    [ 3.648443] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input8
    [ 3.648448] ACPI: Power Button [PWRB]
    [ 3.648507] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input9
    [ 3.648511] ACPI: Sleep Button [SLPB]
    [ 3.649258] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input10
    [ 3.663330] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 3.666930] mei_me 0000:00:16.0: setting latency timer to 64
    [ 3.666967] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
    [ 3.668677] ACPI: Lid Switch [LID0]
    [ 3.668720] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input11
    [ 3.668723] ACPI: Power Button [PWRF]
    [ 3.669670] ACPI: Battery Slot [BAT] (battery present)
    [ 3.670212] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.670214] ACPI: Thermal Zone [TZ0] (35 C)
    [ 3.670260] [drm] Initialized drm 1.1.0 20060810
    [ 3.671009] ACPI: AC Adapter [AC] (off-line)
    [ 3.671841] wmi: Mapper loaded
    [ 3.673496] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 3.673503] r8169 0000:04:00.2: can't disable ASPM; OS doesn't have ASPM control
    [ 3.673726] r8169 0000:04:00.2: irq 45 for MSI/MSI-X
    [ 3.673936] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130725/utaddress-251)
    [ 3.673942] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674142] r8169 0000:04:00.2 eth0: RTL8411 at 0xffffc90005f5a000, 00:90:f5:e4:9c:92, XID 08800800 IRQ 45
    [ 3.674145] r8169 0000:04:00.2 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 3.674610] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130725/utaddress-251)
    [ 3.674614] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674616] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 3.674618] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130725/utaddress-251)
    [ 3.674620] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674621] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 3.674623] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130725/utaddress-251)
    [ 3.674625] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.674625] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 3.676500] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 3.680556] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.684359] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.684362] Copyright(c) 2003-2013 Intel Corporation
    [ 3.687182] pcieport 0000:00:1c.2: driver skip pci_set_master, fix it!
    [ 3.687240] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.687319] iwlwifi 0000:03:00.0: irq 47 for MSI/MSI-X
    [ 3.689230] input: PC Speaker as /devices/platform/pcspkr/input/input13
    [ 3.689318] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input14
    [ 3.691653] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
    [ 3.694703] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
    [ 3.699874] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
    [ 3.700326] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
    [ 3.700721] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
    [ 3.700968] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.700970] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.700971] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.700972] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6235 AGN, REV=0xB0
    [ 3.701019] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3.707821] [drm] Memory usable by graphics device = 2048M
    [ 3.707823] iwlwifi 0000:03:00.0: RF_KILL bit toggled to disable radio.
    [ 3.707824] checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
    [ 3.707825] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 3.707842] Console: switching to colour dummy device 80x25
    [ 3.708353] i915 0000:00:02.0: setting latency timer to 64
    [ 3.719419] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.731545] iTCO_vendor_support: vendor-support=0
    [ 3.731802] iTCO_wdt: Intel TCO WatchDog Timer Dri

    zozi56 wrote:Can you reproduce the problem without Skype, Bastian?
    From what I remember I have also had this issue when Skype wasn't open.
    Yesterday my computer started up beeping - I took the harddisk out and it started normally (initramfs tho). Then I put it back in and the laptop have been running fine so far. I suspect it might just have been a bad connection, but I am giving it time..
    EDIT: Still experiencing the issue..
    Last edited by Bastian (2014-01-19 18:09:08)

  • Redirecting user to login page after session expiry

    Hi,
    Default session expiry implementation in sap EP6.0 doesn't work properly. To overcome this, we have implemented one component where we check the idle time and throw the user back to the login page if the idle time has exceeded the session expiry period. This component has been added to desktop inner page as an iView. Following is the logic put in this component.
    IAuthentication ia = UMFactory.getAuthenticator();
    ia.logout(httpRequest, httpResponse);
    httpResponse.sendRedirect("/irj/portal");
    We are successfully getting the login page after session expiry. Issue is, our portal server is running on 11111 port. We cannot change this to 80 on unix because of unix limitations for the port number. So we have put one apache web server before our portal server. Apache web server is listening on port 80 and forwarding the request to our portal server.
    Now when user is redirected to the login page, url being shown in the browser is http://<host_name>:11111/irj/portal but I am expecting http://<host_name>/irj/portal (without port). I have tried putting the full url in sendRedirect() method but that too doesn't work.
    Any help is highly appreciated.
    Regards,
    Chandra

    Hi Chandra,
    Let the URL be relative in the sendRedirect i.e.
    httpResponse.sendRedirect("/irj/portal");
    However since you have a Reverse proxy in front, the response header for redirect will not contain the address of the reverse proxy in this case, your servername without port. You have to properly configure your reverse proxy so that the HTTP Headers are changed properly before sending the response to the users.
    Check this URL,
    http://httpd.apache.org/docs/1.3/mod/mod_proxy.html#proxypassreverse
    This gives you the details on configuring your apache.
    Hope this helps.
    Ankur
    P.S. If this helps please reward points.

  • How to find and kill session similar to forms user session

    We have a forms and reports based system that uses the oracle sessions. Sometimes if a form takes a long time we have the need to navigate to iAS>Forms>User Sessions, find the IP of the machine where the form is not responding and kill it based on the IP of the troublesome machine.
    I want to add this into our forms environemnt so people can kill their own sessions if need be but not sure how this is handled
    is it a simple alter system kill session in the db or something different.
    also how is the ip found to match the session?
    Thanks

    hi,
    Instead Set session timeout parameters..So that user gets logged off automatically from the application after a particular interval of time
    For this you have to make changes in httpd.conf file,web.xml file and env file
    Regards
    Fabian

  • Re: User Session using ServletSession and Stateful EJB in Cluster

              Sorry , I didn't use WLS 6.0, we use wls 5.1 in production.
              But in Wls 6.0, in some situations , the state of the stateful session bean can be lost. So it's not so reliable. You have to deal with it in the client code. Instead, servlet is a reliable solution.
              In order to test under wls6.0, you can store the handle of the EJBObject in the HttpSession, not in jndi, cos if the instance fails, all its objects will be removed by remaining instances from jndi. In another instance, you get the handle, and try to get the EJBObject.
              In wls5.1, some information like the server url must be embeded inside the handle. But in wls6.0, I don't know how they deal with it.
              I am looking forward to your results
              "Anuj Soni" <[email protected]> wrote:
              >
              >What kind of clustering problems you had with WL6.0 for Stateful session beans ? It will be helpful for me to know before hand.
              >
              >BTW, how were you able to test stateful session beans in a cluster under WL6.0 i.e. were you storing the Handle or EJBObject in HttpSession or did you store it in JNDI ?
              >
              >Thanks,
              >
              >Anuj
              >"Tao Zhang" <[email protected]> wrote:
              >>Although it's very advanced to take advantage of both http session and
              >>stateful session bean replication, but if you rely on the stateful session
              >>bean's state, you will be in trouble. Because the support of stateful
              >>session bean's replication is not perfect in wls6.0. We already chaned
              >>almost all stateful session beans into servlets or entity beans.
              >>
              >>I am not sure about the handle of the EJBObject. I think it should be able
              >>to reconstruct for us otherwise we can't use the handle any more.
              >>
              >>You can do a test. BTW, could you tell me the result?
              >>
              >>Thanks.
              >>
              >>Anuj Soni <[email protected]> wrote in message
              >>news:[email protected]...
              >>>
              >>> Hi,
              >>>
              >>> I am designing the workflow for my web application using a Stateful
              >>session bean. As Weblogic 6.0 supports clustering of stateful session bean
              >>and HttpSession(in-memory replication), I want to use the combination of
              >>both techniques to provide load-balancing and fail-over safety for user
              >>sessions and their corresponding workflows.
              >>>
              >>> The question I have is that, Is Handle obtained using
              >>EJBObject.getHandle(), fail-over safe (for a clusterable stateful bean), so
              >>that I can reconstruct the reference to EJBObject on the secondary server
              >>incase of primary server crash.
              >>>
              >>> My understanding is that I should store Handle in the HttpSession as it is
              >>Serializable not the EJBObject. The weblogic 6.0 document only talks about
              >>the replica-awareness of EJBObject.
              >>>
              >>> If my above assumption is incorrect, Can you tell me how else I can
              >>achieve my goal ?
              >>>
              >>> Thanks in advance.
              >>>
              >>> Anuj Soni
              >>
              >>
              >
              

    Any one tested this scenario yet? i.e: storing the handle to an EJB object and then trying to re-use after the HttpSession is restored?
              Thanks.
              

  • Unable to kill work process and user sessions.

    Hi Gurus,
    Iam facing a different problem in my prd system.Dialog process of a particular user has been running continuosly for long time, when i killed it with cancel with core or with out core option in sm50 still it is starting automatically on different PID and going in to loop.Even though user is not logged in and no back ground jobs are running still the process is running on its own.Even i tried killing the PID from OS level using DPMON but was of no help.
      I tried to kill the user session and log him out from sm04 from it was not happening, locked the user also but was of no help.
    Has anybody faced this situation?Is there any option excluding restarting the system to solve this issue.
    Thanks&Regards
    Prashant

    Hi Prashant,
    In case of multiple instances you have to log off the user from system wide select this option from SM04 while deleting user session again look for the action in SM50 for the process and if possible get details by activating trace from ST05 and filter with user, wp.
    Thanks,
    Saleem

Maybe you are looking for