Get user sessions in ABAP

Hi,
my problem is to get active sessions of a specific user
(as I can see from SM04, selecting a row and clicking "Session")
The program behind SM04 is RSM04000_ALV;
the
call 'ThUsrInfo' id 'OPCODE' field opcode_list
id 'TABUSR' field usr_tabl-sys
get the info about the logged users (first screen of SM04).
Then, the details are shown in dynpro 2000 that contains a
module syst-okopo that does not exixts, and it's impossible to see in debug what happens!!!
Please Help
Thanks a lot
A.try to use this
CALL FUNCTION 'TH_LONG_USR_INFO'
    EXPORTING
      user      = sy-uname
    TABLES
      user_info = usr_tabl.

Hi,
try to use this
CALL FUNCTION 'TH_LONG_USR_INFO'
    EXPORTING
      user      = sy-uname
    TABLES
      user_info = usr_tabl.
Reward if helpfull...
Cheers,
Sundar.

Similar Messages

  • How to get user session details ?

    Hello.
    I can get user session details querying the "USER_AUDIT_SESSION" view against my developing database.
    I have written a PL/SQL function to retrieve those session details. When I executed the function on the production database I have not got any records. It seems that the underlined view is not being refreshed in the production environment.
    Is there any other view or table, available to unprivileged users, I can use to get session details such as the connection timestamp and the user action ?

    Thanks for the reply.
    Ok, I might check it using a non DBA user, I am not sure, though.
    All the database queries have to be executed under a normal user connection.
    I would like a way to get session details not using "user_audit_session".
    Is there any table or view, available to a default profile user, which has session details and has records as a default behaviour?
    As far as I could check disable audit_trail seems to be the normal behaviour of the clients of my application. There is no records in "user_audit_session".

  • Get user statistic by abap user group?

    Hi,
    I need to get number of users visited portal by abap user group?
    Is it possible to do so using portal activity reports?
    Activity report has only option for user separating by abap rols.
    great thanks for all.
    Edited by: Evgeny Borzykh on Aug 21, 2009 12:31 PM

    Not quite the intent I think.
    If we view the hierarchy of nodes as a way to manage a hierarchy of resources specific to your program (think of hierarchical contexts) then I want to be able to put/get objects by key (and not just strings as keys). I don't see any API for this so I would propose augment set/getUserData with getResources() that returns an observable map unless there is another way to do this now.

  • Getting user session without PEI

    I am trying to grab a user setting that I have stored as follows inside of a portlet:
    PortletResponse.SetSettingValue(SettingType.UserInfo, "iHomeCommunityID", sCommunityID);My difficulty is retrieving this value inside of PlumtreeTopBarView.cs. I would like to use the following code, but cannot figure out how to get an oUserSession object if I am not using a PEI.IPTSession ptSession = (IPTSession) oUserSession;
    int iCurrentUserID = ((IPTSession) m_asOwner.GetUserSession()).GetSessionInfo().GetCurrentUserID();Any help would be appreciated.Thanks!John

    Hi John,
    I am not sure I understand the problem as you seem to be doing this correctly.
    Does this not work for you -
    int iCurrentUserID = ((IPTSession) m_asOwner.GetUserSession()).GetSessionInfo().GetCurrentUserID();
    The GetUserSession call on m_asOwner actually does what you have asked. It could be broken up like this -
    IPTSession oUserSession = ((IPTSession)m_asOwner.GetUserSession();
    int iCurrentUserID = oUserSession.GetSessionInfo().GetCurrentUserID();
    I hope this helps.
    Regards,
    Sudha

  • User exit from ABAP workbench

    Hello Gurus,
           How can I get  user exit from ABAP workbench ?
    thanks very much!

    here is the program for the user exits..
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    TABLES : tstc,     "SAP Transaction Codes
             tadir,    "Directory of Repository Objects
             modsapt,  "SAP Enhancements - Short Texts
             modact,   "Modifications
             trdir,    "System table TRDIR
             tfdir,    "Function Module
             enlfdir,  "Additional Attributes for Function Modules
             tstct.    "Transaction Code Texts
    *& Variables
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    *& Selection Screen Parameters
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    *& Start of main program
    START-OF-SELECTION.
    Validate Transaction Code
      SELECT SINGLE * FROM tstc
        WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
      IF sy-subrc EQ 0.
        SELECT SINGLE * FROM tadir
           WHERE pgmid    = 'R3TR'
             AND object   = 'PROG'
             AND obj_name = tstc-pgmna.
        MOVE : tadir-devclass TO v_devclass.
        IF sy-subrc NE 0.
          SELECT SINGLE * FROM trdir
             WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir
              WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir
              WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir
              WHERE pgmid    = 'R3TR'
                AND object   = 'FUGR'
                AND obj_name = enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
    Find SAP Modifactions
        SELECT * FROM tadir
          INTO TABLE jtab
          WHERE pgmid    = 'R3TR'
            AND object   = 'SMOD'
            AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct
          WHERE sprsl EQ sy-langu
            AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(95) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline,
          2 'Exit Name',
          21 sy-vline ,
          22 'Description',
          95 sy-vline.
          WRITE:/(95) sy-uline.
          LOOP AT jtab.
            SELECT SINGLE * FROM modsapt
            WHERE sprsl = sy-langu AND
            name = jtab-obj_name.
            FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            WRITE:/1 sy-vline,
            2 jtab-obj_name HOTSPOT ON,
            21 sy-vline ,
            22 modsapt-modtext,
            95 sy-vline.
          ENDLOOP.
          WRITE:/(95) sy-uline.
          DESCRIBE TABLE jtab.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of Exits:' , sy-tfill.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    give the tcode it will show the user exit and if u click on the user exit it will takes to the code..
    regards,
    venkat

  • Query to get  Forms User Session

    Can any one suggest what is the SQL query to get the detail of the user session(Forms) in 10G Application Server Rel 2?

    How EM takes the IP address of user in the user_session of forms?
    Is there any table that it takes from?
    Thanx

  • Kill user's session via ABAP (like in SM04)

    Does anybody knows is it possible to kill user's session via ABAP? Not all session like via  TH_DELETE_USER, but selectively, session by session.
    Maybe someone know how to trace which logic works when we press "Close session" button in SM04?

    Hi Michael,
    below a snippet to retrieve the sessions and a way to delete a TID.
    Maybe it come in handy for your requirement.
    Best,
    Sander
    INCLUDE tskhincl.
       DATA lt_userlist TYPE STANDARD TABLE OF uinfo.
       DATA ls_userlist TYPE uinfo.
    CALL 'ThUsrInfo' ID 'OPCODE' FIELD opcode_list
             ID 'TABUSR' FIELD lt_userlist .
    CALL 'ThUsrInfo' ID 'OPCODE' FIELD opcode_delete_usr
         ID 'TID' FIELD ls_userlist-tid.

  • How to deploy a VO Bind variable to get value from user session....

    Hello everbody...
    A JSF Page has a table based on VO with two parameters. One of this parameters I will pass by operation ExecuteWithParams.
    but the other parameter I need to pass a value from User session.
    Is that possible? How would I do that? I´m using jdev10.1.3
    Thankyou...

    When you created a binding for executeWithParams in your pageDef, the action binding should have had NamedData elements for each of the parameters. These would have been assigned values from a variableIterator up in the executables section. The parameter that gets its value from user input should be left alone. For the parameter that gets its value from the user session, change the EL expression that defines its NDValue attribute so that it references the session information that you want to use. This can be a sessionScope variable that you set earlier in the session, as Frank suggests, a property of a managed bean in session scope, or some other variable.

  • Query for Last page visit by user/session and get version # of current page

    Hi Guru's,
    Any have a query to retrive last page visited by user / session? Somewhere from apex view fir 3.0 or later version? Also looking for query to get version number of current page

    RequestCtx.getResponsibilityId() should return you the Responsibility Id &
    RequestCtx.getUserId() should return the User Id.
    As I understand RequestCtx values are always available in the JSP Page. Kindly check again.

  • User Session gets invalidated automatically

    Hi,
              The user session gets invalidated automatically ,this happens irregularly but has been seen many times.
              Any ideas?
              

              Akshay <[email protected]> wrote:
              >Hi,
              >The user session gets invalidated automatically ,this happens irregularly
              >but has been seen many times.
              >Any ideas?
              hi,
              1. Check whether u have mistakenly called the session.invalidate() method if
              u are using HTTPSession
              2. Check the App.server Session Timeout
              3. If you are using Cookies check whether the cookies MaximumAge is expried before
              the
              complition of your process / transcation.
              regards,
              Elango
              Elango TR
              Sip Technologies & Exports Ltd. Elnet Software City,Chennai
              http://www.siptech.co.in
              [email protected]
              

  • Close session in ABAP Program Control

    Hi all,
    To avoid the users can run some transactions during the batch window, we have developed an ABAP program to lock these transactions before the start of batch period in background mode. After batch window we unlock it.
    The problem is that the users that are in transactions before the lock process is execute, can use use without problem. Therefore we need to close all sessions that are in these transactions  in background mode near the lock proccess.
    Any idea?
    Thanks a lot.

    Hi Thomas,
    I guess what you call foreign modes are the external modes.
    I don't know for ThUsrInfo, but there's a workaround : It's possible to do a batch input on SM04 and you are able to select the line(s) you want by adding a little trick to determine which external sessions run which transaction codes :
    1) duplicate dynpro rsm04000_alv 2000 (the one which displays the external modes) into a Z dynpro, and inside the PBO step loop, save MODUS table work area (that you declare with TABLES), it contains first 36 characters of transaction code texts (as what you see with SM04).
    2) fill out "TID" SET/GET parameter with the "Terminal ID" corresponding to the user session (you get it from the additional fields in the SM04 list of user sessions).
    3) call the screen a first time with SUPPRESS DIALOG so that to determine which line(s) correspond to which transaction codes
    4) call the screen in batch input mode without SUPPRESS DIALOG and with a SET CURSOR with the line determined previously and delete the mode
    Note that you have to create 2 programs (one which prepares the BDC data, the other which calls the screen) and a dummy transaction (for the batch input, so that to call the second program) so that everything works.
    Sandra

  • How to know if user (session) is authenticated in other application (SSO)

    Hi folks!
    We've deployed various J2EE applications in some OC4J instances. So far the applications used SSO Authentication against OiD (LDAP), but we need a public access application.
    The problem is the following: we need a different behaviour in this last application (without authentication characteristics) depending on one user is authenticated within other application that required SSO login.
    How could check if current user (session) si authenticated against SSO, for example, in ADF-STRUTS DataAction class?
    We tested the gerRemoteUser() method but is only works within the applications requering login.
    Please, anyone could guide me?
    Mike
    Thanks!

    Hi,
    Oracle AS Single Sign ON stores some of the attributes of an authenticated user in a browser cookie - the name of the Cookie is SSO_ID.
    You cannot get any information from this Cookie. The Cookie is avaliable only to the Oracle AS Single Sign ON and is meant to be used only by it. You cannot read any useful information from the Cookie as it is higly encrypted.
    If you need to know the name of the currently logged in user, your application should be a Partner Application or an External Applciation to Oracle AS Single Sign On.
    The reason is simple - you can use your browser to connect to many Websites protected by Oracle AS Single Sign ON. Thus, if your application isn't a Partner or an External Application registered with SSO, your application can't establish a context.
    Hence, your application needs to be registered as a Partner Application or an External Application with SSO.
    An application which is nto registered with SSO cannot get the User information from SSO. The getRemoteUser() method would always return a null in such cases.
    Regards,
    Sandeep

  • 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)

  • Server 2012 R2 RDS – cannot log off user session

    We have a 2 server RDS RemoteApp Farm.
    One server is constantly leaving user sessions in a disconnected state without the ability to kill the session (rebooting is the only way); this is happing 1-2 times per week.
    Servers have been configured to kill a disconnected session after 10 minutes, but some disconnected sessions have been running for days.
    Below is a screenshot of the process running for two disconnected users sessions that I could not disconnect, rebooting the server was the only way of fixing this. No error's were generated when users disconnected the session.
    Is there a known fix for this?

    Hi,
    Did you apply session disconnected policy setting in your environment?
    There are different ways for getting user log off. As you have commented that it’s happening with specific user, once check whether the user profile is not corrupted or any other related case. Also it might relates that some application or related services
    is still running under user profile so that session cannot be logged off. You can also try PowerShell command to log off the user. Also with
    Query user command you can find the related session name and ID and then with “Logoff user command” you can logoff the specific user. 
    For policy related to session setting you can check beneath article. (point 1)
    [Forum FAQ] Restrict number of Active Sessions
    in RDS 2012 and 2012 R2
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to check whether a user session is null or not

    Hi
    I am using Jdeveloper 11.1.2.2
    I have a use case of running some Junit test case, this is the problem I have :
    There are some Junit tests which are written for some VO's. While testing insert and update operation in Junit there is two mandatory columns Created by and Updated by to be entered for committing into the database.
    These values are taken from the UserName of the current UserSession .
    So for getting the these values for each user I thought of displaying a JPanel before the test is run, where the user enters the Username and password which is validated and the user is verified.
    First, I need to check whether there is a session present or not. For checking this, I wrote a createUserSession() and did like this inside it :
    if(fixture.getApplicationModule().getSession().getUserData().isEmpty())If so to show the Jpanel and get the user details and verify the user.
    But while running the test itself I found that the session is already present, now I just have to input the values based on who is the user.
    But Junit doesn't run the tests in the order in which the test are written. So I have to call this in all the test cases.
    The Question is :
    How can I check whether the session is already present or not, so that I don't have to ask the user every time while every test is running to enter the Username and Password ?
    Thanks,
    Nigel.
    Edited by: Nigel Thomas on Jul 30, 2012 10:26 AM

    Hi,
    wondering why don't you create test users and then automatically log them in as Jan Vervecken did on the threads I pointed you to. This way your test cases run without user interaction. To test if a session exists for a user, I would put a custom property into user data. If this property exists, the user session is an existing one. However, make sure the information you save into the user data survives passivation as otherwise the information you get out of this is not accurate. See: http://tompeez.wordpress.com/2011/07/08/jdev-always-test-your-app-with-applicationmodule-pooling-turned-off/
    Frank

Maybe you are looking for

  • Can't drag image into widgets using ibooks author

    i have ibooks author 2.0 and i'm running on 10.8.2. i was working on ibooks author and suddenly i couldn't drag any pictures into the widgets, not the Interactive Image, not the Gallery. In the Gallery widget i could get around it by manually inserti

  • Blue screen (Yes Apples posted fixes don't work for me)

    I am tired tired... I can't get rid of the blue screen delay at startup in 10.5.2 or 10.5.3. I've tried the fixes. No go... I even tried wiping a drive and doing a Clean Leopard install. After adding the .5.3 update the long delay returns. My delay i

  • Preparing new PC.  Best way to migrate over Creative Cloud on new PC and decomission/uninstall on the old PC?

    Hello. I'm prepping a new motherboard, memory, SSD's and GPU.  I subscribe to Creative Cloud and want to install the apps on my new PC, while removing them from my older PC. I dont plan on running both systems with Creative Cloud concurrently as I am

  • Group file already exists

    Can someone please explain what causes this error: OCA-30023: error fetching result set [POL-3253] group file already exists I am using Oracle Lite 8. I have created a view that returns all records from a table with the related data from other tables

  • When there is a u0091payment reversalu0092 on a statement,

    When there is a ‘payment reversal’ , on the  statement, both entries (ie the payment & also the cancellation of it) are debiting the bank (5920050) & crediting the suspense a/c (5920055). This is incorrect as the 2 items balance off to zero.