Unable to use dataitem action

Hi Forum,
I am building xMII's XML format document and in that I am using data item action to add data in a row. When i tried mentioning the document name,data item name and value in the 'configure object' option(data is mentioned at design time),  data is getting inserted properly in to the document.
But if i try to set the document name,item name and value name in the 'configure links' option(data to be fetched at runtime), data is not getting inserted.
Can any one tell how to work out when data is to be fetched at runtime or is it supposed to work only when the data item name is mentioned at design time ?
Thanks a lot,
Mike

Hi Samuel,
Document will make a empty Document Structure,
=> lets call it myDOC.
Column will add a Column to this if it points to myDOC.
- to add more than one Column you need either N Column Actions or put one Column Action in a Loop.
=> We add one Column called myCol1 in the Link Editor.
Now we need a ROW Action because we want to Add a row for our values - it points to myDOC.
- to add more than one Row you shoud use a Loop.
Now we use the DATAITEM - it points to myDOC. It will put the values in the empty Row we just created.
- to data in more than one Column you need N DataItem or a Loop over your Columns (where ever you take them from).
- name of the Column has to be myCol1 as we added this before.
Should work. By the way I'm on xMII 12.0.1 but this shouldn't play a role.
Ciao
Martin
PS: I think you have forgotten the ROW.

Similar Messages

  • Unable to use action blocks in xMII 12.0.2

    Hi,
    We recently started working on MII 12.0.2 and migrated our xMII 11.5 transactions using the migration tool provided by SAP with MII 12.0 version. In MII 12.0.2, when i open the migrated transactions all the action block images are shown as yellow boxes.
    If i double click on any action block of that transaction i am getting a message saying that "Action is not enabled for this version". When i press OK button of this message, the properties window is shown up.
    Also, i am unable to use the actions blocks in new transactions. When i double click the action or drag and drop the action, no action is performed. When i launched xMII workbench, i got an error messages in a popup saying "java.lang.nullpointerexception"
    It seems we missed out some installation or some configuration files.  Can anyone ever faced such problems ?
    Thanks,
    Prasad.

    Prasad,
    Custom Action written for SAP xMII 11.5 will not running under SAP xMII 12.0. The package names for the XMII code have changed in 12.0.  You must update the references to the com.lighthammer packages to com.sap.xmii. More information
    you will find under the link below:
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/801e9072-ae80-2a10-5e90-8ee2e4f703ca
    BR
    Pedro Iglesias

  • CS2 InDesign/Photoshop/Illustrator unable to use Save As Version this action is greyed out.

    Unable to use Save As Version in CS2 running a MAC G5 10.4.6 2GB DDR SDRM. Attempting use Version Cue and Bridge but unable to do a Save As Version because it is greyed out. Have reloaded ran updates etc. etc. I don't normal use bridge to work on a project but recently watched the video training and felt it offered several features of use, but need to be able to save as version. Sherry C

    You must first create a version cue project. In bridge Tools>Version Cue>New Project...
    Create a file and save it (or make a copy) in the folder you saved in the Version Cue workspace(The version cue workspace must be ON), which is default c:\program files\adobe\adobe version cue cs2\data
    now you can save versions of this document.
    Andreas TS

  • Unable to load webservice using webservice action block

    Hi,
    I am trying to call a webservice using xMII 11.5 .My webservice url is http://machinename/Test/Service1.asmx?wsdl.This webservice is invoked using internetexplorer.When I try to configure this using webservice action block I am getting the error message stating "SOAP service could not be loaded.White spaces are required between public id and system id".
    Can anyone help me on this issue.

    Hi,
    You go through the following threads:
    https://forums.sdn.sap.com/click.jspa?searchID=14545521&messageID=5310227
    https://forums.sdn.sap.com/click.jspa?searchID=14545521&messageID=5765282
    https://forums.sdn.sap.com/click.jspa?searchID=14545521&messageID=5803591
    Hope this will help you.
    Thanks,
    Manisha

  • Help! Using "Create" action in insert jsp page vs in submission page.

    This is regarding creating a new record using data TAGS:
    I'm in a dilemma as to whether I should use the data source tag <jbo:Row id="myrow" datasource="iss_vo1" action="Create">
    in my first jsp page ( which accepts input from a user) or in the 2nd jsp page (which does the actual commit).
    If I actually create the view record n the first page itself then I get into all kinds of problems if the user decides against saving the record and backs out.[because there is a null hanging record out there]
    But if I don't use it, then I am unable to use my LOVs in the html form.
    Can anyone help me resolve this issue?
    Currently I have used the data source tag
    <jbo:Row id="myrow" datasource="iss_vo1" action="Create">
    in my first JSP page.
    Below is my complete source code for both the JSP pages:
    Source Code for iss_add.jsp:
    ======================
    Please note that in this JSP , it creates a new record and then the user has to click on the "SAVE" button (which calls another jsp "iss_add_post.jsp") to save the changes. But what if the user does not click on the save BUTTON and instead click on the "back" tab. This is where all the problem occurs. How do I get rid of this problem?
    If I try to just use an HTML form without creating a record in this page then how will I use the LOVs?
    <%@ page contentType="text/html;charset=WINDOWS-1252"%>
    <HTML>
    <base target="contentsframe">
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=WINDOWS-1252">
    <META NAME="GENERATOR" CONTENT="Oracle JDeveloper">
    <TITLE>
    </TITLE>
    </HEAD>
    <BODY>
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <jbo:ApplicationModule id="NewBC4J.NewBC4JModule" configname="NewBC4J.NewBC4JModule.NewBC4JModuleLocal" />
    <jbo:DataSource id="pri_vo" appid="NewBC4J.NewBC4JModule" viewobject="PrioritiesView" />
    <jbo:DataSource id="app_vo" appid="NewBC4J.NewBC4JModule" viewobject="ApplicationsView" />
    <jbo:DataSource id="per_vo" appid="NewBC4J.NewBC4JModule" viewobject="PersonView" >
    <jbo:DataSource id="iss_vo1" appid="NewBC4J.NewBC4JModule" viewobject="IssuesView5" /></jbo:DataSource>
    <jbo:Row id="myrow" datasource="iss_vo1" action="Create">
    </jbo:Row>
    <table width="100%" bgcolor="skyblue" border="0" align="center">
    <tr>
    <td>
    <table width="100%" bgcolor="tan" border="0" align="center" cellpadding="3" cellspacing="0">
    <form NAME="iForm" action="iss_add_post.jsp">
    <tr>
    <th colspan="2">
    "Add New Issues"
    </th>
    </tr>
    <jsp:include page="Message.jsp" flush="true">
    <jsp:param name="colspan" value="2"/>
    </jsp:include>
    <tr>
    <td align="Right"><b><font color="red">Priority:</font></b></td>
    <td> <jbo:InputSelect datasource="iss_vo1" dataitem="PriCd"
    displaydatasource="pri_vo" displaydataitem="Descr" displayvaluedataitem="Cd" />
    </td>
    </tr>
    <tr>
    <td align="right"><b><font color="red"> Description:</font></b></td>
    <td> <jbo:InputTextArea datasource="iss_vo1" dataitem="IssDesc" rows="3" cols="50" />
    </td>
    </tr>
    <tr>
    <td align="right"><b><font color="red"> Application:</font></b></td>
    <td> <jbo:InputSelect datasource="iss_vo1" dataitem="AppCode"
    displaydatasource="app_vo" displaydataitem="Name" displayvaluedataitem="Code" />
    </td>
    </tr>
    <tr>
    <td align="right"><b><font color="red"> Assigned To: </font></b></td>
    <td> <jbo:InputSelect datasource="iss_vo1" dataitem="AssignedToPerId"
    displaydatasource="per_vo" displaydataitem="FirstName" displayvaluedataitem="PerId" />
    </td>
    </tr>
    <tr>
    <td align="right"><b><font color="red"> Raised By: </font></b></td>
    <td> <jbo:InputSelect dataso urce="iss_vo1" dataitem="RaisedByPerId"
    displaydatasource="per_vo" displaydataitem="FirstName" displayvaluedataitem="PerId" />
    </td>
    </tr>
    <tr>
    <td align="Right"><b><font color="red"> Resolution: </font></b></td>
    <td> <jbo:InputTextArea datasource="iss_vo1" dataitem="Resolution" cols="50" rows="3" />
    </td>
    </tr>
    </table>
    <!-- Create a table for the save Button -->
    <table width="100%" bgcolor="skyblue" align="center" cellpadding="10" cellspacing="0" >
    <tr>
    <input name="RowKeyValue" type="hidden" value="<jbo:ShowValue datasource="iss_vo1" dataitem="RowKey"/>" />
    <td>
    <input type = "submit" name="submit" value="Save">
    </td>
    </form>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>
    <jbo:ReleasePageResources releasemode="Stateful" />
    Source Code for iss_add_post.jsp:
    ============================
    This is where the actual commit occurs. But user may decide not to come here at all by not clicking the save button. What happens to the record created ? How Can I rollback that information?
    <%@ page language="java" contentType="text/html;charset=WINDOWS-1252" %>
    <html xmlns:jbo="foo">
    <body>
    <center>
    <br>
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <br>
    <jbo:ApplicationModule id="NewBC4J.NewBC4JModule" configname="NewBC4J.NewBC4JModule.NewBC4JModuleLocal" username="issue" password="issue"/>
    <br>
    <jbo:DataSource id="iss_vo1" appid="NewBC4J.NewBC4JModule" viewobject="IssuesView5"/>
    <jbo:Row id="row3" datasource="iss_vo1" action="Current" >
    <jbo:SetAttribute dataitem="*" />
    </jbo:Row>
    <%
    try
    %>
    <jbo:Commit appid="NewBC4J.NewBC4JModule"/>
    <p><font face="Arial, Helvetica, sans-serif"><b><font color="006699">Issue Record Inserted Successfully! Issue# Assigned: <jbo:ShowValue datasource="iss_vo1" dataitem="Id" /></b></font></font> </p>
    <%
    catch(Exception exc)
    out.println("<pre>");
    exc.printStackTrace(new java.io.PrintWriter(out));
    out.println("</pre>");
    %>
    <br>
    <br>
    <form action="iss_ListIssues.jsp" method="post"><input type="submit" value="Click to Continue"></form>
    </center>
    </body>
    <jbo:ReleasePageResources releasemode="Stateful"/>
    </html>
    null

    [email protected]
    I can't actually see any LOV's on your first page so I am not completely sure that I understand your situation. However if you are talking about using the InputSelectLOV datatag, there is no reason why you cannot use that within a html form, without having to create a record in the RowSet.
    The Insert page is by default created without any datasources - just a standard HTML form. The form is submitted and the InsertSubmit page reads the values from the request object, matches the parameter names with your VO attribute names and does your create.
    Your LOV data will be coming from another table so doing a Row tag Create on your Insert page won't make any difference to it. Have I misunderstood something here? I have used LOV's on my Insert pages and I definitely have not created a row in the Rowset anywhere but the Submit pages.
    There is a problem on both Edit and Insert pages whereby if there are no rows in the table for which you have a datasource defined you can get problems, but it doesn't sound as though that is your problem. Maybe I need some more information from you?
    Simon

  • "Unable to load workflow actions from server. Please contact your server."

    I get the following error message when I want to create or open a workflow in SharePoint Designer 2007
    "unable to load workflow actions from server. Please contact your server
    administrator."
    I don't receive this error as a site collection administrator, but one of my contributors gets the error.

    What Chris mentioned is kind of abnormal situation described in
    http://office.microsoft.com/en-us/sharepointdesigner/HA102379121033.aspx#20.
    However, normally, you won’t be able to create SPD workflow if you only have Contribute permission level. I give the user Design permission level then he can
    create SPD workflow.
    There are other factors affecting permission to create SPD workflow:
    1.     
    According to
    http://office.microsoft.com/en-us/sharepointdesigner/HA101005871033.aspx#4
    , the SPD workflows are stored in a site-level hidden document library called Workflows. You should make sure that user have permission in this document library so that the created workflow can be saved successfully.
     http://blogs.msdn.com/sharepointdesigner/archive/2008/11/25/locking-down-sharepoint-designer.aspx
    describe the method to manage permission for this hidden Workflows document library: open the site in SharePoint Designer >> right-click the Workflows library >> click Properties >> click the Security tab >> click the link “Manage
    permissions using the browser”
    2.     
    SharePoint Designer contributor setting (http://office.microsoft.com/en-us/sharepointdesigner/HA101174691033.aspx
    ) can also block the user from being able to create workflows.

  • [SOLVED] Gnome 3.8: Unable to use Nokia N9 as a Bluetooth modem

    Hi,
    I'm unable to use my Nokia N9 mobile phone as a bluetooth modem. Phone and Gnome get paired OK, and I have even managed to get my phone recognized as a modem. However, Networkmanager complains that it can't find the modem.
    Any ideas on how to fix this?
    Here are some log files:
    Bluetooth startup from everything.log:
    Jun 17 00:44:26 localhost bluetoothd[382]: Bluetooth daemon 4.101
    Jun 17 00:44:30 localhost bluetoothd[382]: Starting SDP server
    Jun 17 00:44:31 localhost bluetoothd[382]: DIS cannot start: GATT is disabled
    Jun 17 00:44:31 localhost bluetoothd[382]: Failed to init deviceinfo plugin
    Jun 17 00:44:32 localhost bluetoothd[382]: Failed to init gatt_example plugin
    Jun 17 00:44:32 localhost bluetoothd[382]: Bluetooth Management interface initialized
    Jun 17 00:44:32 localhost bluetoothd[382]: bluetoothd[382]: Bluetooth Management interface initialized
    Jun 17 00:44:32 localhost bluetoothd[382]: bluetoothd[382]: Unknown command complete for opcode 1J
    Jun 17 00:44:32 localhost bluetoothd[382]: Unknown command complete for opcode 19
    Jun 17 00:44:933 localhost bluetoothd[382]: bluetoothd[382]: Adapter /org/bluez/382/hci0 has been enabled
    Jun 17 00:44:33 localhost bluetoothd[382]: Adapter /org/bluez/382/hci0 has been enabled
    Bluetooth modem fails, log entries from everything.log:
    Jun 17 01:03:38 localhost /etc/gdm/Xsession[612]: Ikkunointiohjelman varoitus:Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2800003 (Uuden Blue)
    Jun 17 01:03:38 localhost /etc/gdm/Xsession[612]: Ikkunointiohjelman varoitus:meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Jun 17 01:03:38 localhost bluetoothd[382]: bluetoothd[382]: Discovery session 0x7f5d47491d10 with :1.58 activated
    Jun 17 01:03:38 localhost bluetoothd[382]: Discovery session 0x7f5d47491d10 with :1.58 activated
    Jun 17 01:03:50 localhost bluetoothd[382]: bluetoothd[382]: Stopping discovery
    Jun 17 01:03:50 localhost bluetoothd[382]: Stopping discovery
    Jun 17 01:03:54 localhost kernel: [ 1179.820342] usb 2-1: reset high-speed USB device number 2 using ehci-pci
    Jun 17 01:04:00 localhost dbus-daemon[396]: dbus[396]: [system] Rejected send message, 3 matched rules; type="method_return", sender=":1.58" (uid=1000 pid=1082 comm="bluetooth-wizard ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.4" (uid=0 pid=382 comm="/usr/lib/bluetooth/bluetoothd -n ")
    Jun 17 01:04:01 localhost bluetoothd[382]: bluetoothd[382]: input-headset driver probe failed for device 40:98:4E:65:A1:00
    Jun 17 01:04:01 localhost bluetoothd[382]: input-headset driver probe failed for device 40:98:4E:65:A1:00
    Jun 17 01:04:01 localhost pulseaudio[678]: [pulseaudio] bluetooth-util.c: org.bluez.AudioSource.GetProperties() failed: org.freedesktop.DBus.Error.UnknownMethod: Method "GetProperties" with signature "" on interface "org.bluez.AudioSource" doesn't exist
    Jun 17 01:04:01 localhost pulseaudio[678]: [pulseaudio] bluetooth-util.c: org.bluez.HandsfreeGateway.GetProperties() failed: org.freedesktop.DBus.Error.UnknownMethod: Method "GetProperties" with signature "" on interface "org.bluez.HandsfreeGateway" doesn't exist
    Jun 17 01:04:01 localhost pulseaudio[678]: [pulseaudio] bluetooth-util.c: org.bluez.HandsfreeGateway.GetProperties() failed: org.freedesktop.DBus.Error.UnknownMethod: Method "GetProperties" with signature "" on interface "org.bluez.HandsfreeGateway" doesn't exist
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 SyncMLClient
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 DialupNetworking
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXObjectPush
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXFileTransfer
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 AudioSource
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControlTarget
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControl
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Headset_-_AG
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 HandsfreeAudioGateway
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Phonebook_Access_-_PSE
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 SyncMLClient
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 DialupNetworking
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXObjectPush
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 OBEXFileTransfer
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 AudioSource
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControlTarget
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 A/V_RemoteControl
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Headset_-_AG
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 HandsfreeAudioGateway
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: has_config_widget 40:98:4E:65:A1:00 Phonebook_Access_-_PSE
    Jun 17 01:04:01 localhost /etc/gdm/Xsession[612]: ** Message: Default Bluetooth adapter is powered
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: dun_start: starting DUN device discovery...
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: Tutkitaan puhelimen asetuksia…
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: dun_start: calling Connect...
    Jun 17 01:04:25 localhost /etc/gdm/Xsession[612]: ** Message: dun_start: waiting for Connect success...
    Jun 17 01:04:27 localhost /etc/gdm/Xsession[612]: ** Message: dun_connect_cb: processing Connect reply
    Jun 17 01:04:27 localhost /etc/gdm/Xsession[612]: ** Message: dun_connect_cb: new rfcomm interface '/dev/rfcomm0'
    Jun 17 01:04:27 localhost /etc/gdm/Xsession[612]: ** Message: dun_connect_cb: finished
    Jun 17 01:04:27 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.0/bluetooth/hci0/hci0:21/rfcomm0
    Jun 17 01:04:27 localhost kernel: [ 1212.925984] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:29 localhost kernel: [ 1214.790844] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:29 localhost kernel: [ 1214.791357] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:30 localhost ModemManager[457]: <info> Creating modem with plugin 'Nokia' and '1' ports
    Jun 17 01:04:30 localhost kernel: [ 1215.816882] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:30 localhost ModemManager[457]: <info> Modem for device at '/sys/devices/pci0000:00/0000:00:13.1/usb6/6-3' successfully created
    Jun 17 01:04:30 localhost kernel: [ 1215.820679] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:31 localhost ModemManager[457]: <info> Modem: state changed (unknown -> disabled)
    Jun 17 01:04:31 localhost kernel: [ 1216.873341] Bluetooth: TIOCGSERIAL is not supported
    Jun 17 01:04:31 localhost /etc/gdm/Xsession[612]: ** Message: modem_object_added: (/org/freedesktop/ModemManager1/Modem/0) modem found
    Jun 17 01:04:31 localhost /etc/gdm/Xsession[612]: ** Message: start_wizard: (/org/freedesktop/ModemManager1/Modem/0) starting the mobile wizard
    Jun 17 01:04:31 localhost NetworkManager[387]: <info> ignoring modem 'rfcomm0' (no associated Bluetooth device)
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: wizard_done_cb: mobile wizard done
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: wizard_done_cb: adding new setting
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: wizard_done_cb: waiting for add connection result...
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> BT device Nokia N9 (40:98:4E:65:A1:00) added (DUN)
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): new Bluetooth device (driver: 'bluez' ifindex: 0)
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): exported as /org/freedesktop/NetworkManager/Devices/1
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): deactivating device (reason 'managed') [2]
    Jun 17 01:06:17 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
    Jun 17 01:06:17 localhost /etc/gdm/Xsession[612]: ** Message: Puhelimesi on nyt valmis käyttöön.
    Jun 17 01:06:17 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/virtual/tty/rfcomm0
    Jun 17 01:06:17 localhost dbus-daemon[396]: dbus[396]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.4" (uid=0 pid=382 comm="/usr/lib/bluetooth/bluetoothd -n ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.59" (uid=1000 pid=1082 comm="bluetooth-wizard ")
    Jun 17 01:12:24 localhost NetworkManager[387]: <info> (eth0): device state change: activated -> disconnected (reason 'user-requested') [100 30 39]
    Jun 17 01:12:24 localhost NetworkManager[387]: <info> (eth0): deactivating device (reason 'user-requested') [39]
    Jun 17 01:12:24 localhost avahi-daemon[392]: Withdrawing address record for 192.168.0.222 on eth0.
    Jun 17 01:12:24 localhost avahi-daemon[392]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.0.222.
    Jun 17 01:12:24 localhost avahi-daemon[392]: Interface eth0.IPv4 no longer relevant for mDNS.
    Jun 17 01:12:24 localhost dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Jun 17 01:12:24 localhost dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Jun 17 01:12:24 localhost systemd[1]: Starting Network Manager Script Dispatcher Service...
    Jun 17 01:12:24 localhost dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    Jun 17 01:12:24 localhost dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    Jun 17 01:12:24 localhost systemd[1]: Started Network Manager Script Dispatcher Service.
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) starting connection 'Dna connection'
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) scheduled...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) started...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) scheduled...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) complete.
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) starting...
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: prepare -> config (reason 'none') [40 50 0]
    Jun 17 01:12:33 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) complete.
    Jun 17 01:12:35 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00 40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) successful. Will connect via DUN.
    Jun 17 01:12:35 localhost NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) waiting for modem to appear.
    Jun 17 01:12:35 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.0/bluetooth/hci0/hci0:21/rfcomm0
    Jun 17 01:13:05 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: config -> failed (reason 'modem-not-found') [50 120 43]
    Jun 17 01:13:05 localhost NetworkManager[387]: <warn> Activation (40:98:4E:65:A1:00) failed for connection 'Dna connection'
    Jun 17 01:13:05 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: failed -> disconnected (reason 'none') [120 30 0]
    Jun 17 01:13:05 localhost NetworkManager[387]: <info> (40:98:4E:65:A1:00): deactivating device (reason 'none') [0]
    Jun 17 01:13:05 localhost upowerd[506]: (upowerd:506): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/virtual/tty/rfcomm0
    Jun 17 01:13:05 localhost dbus-daemon[396]: dbus[396]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.4" (uid=0 pid=382 comm="/usr/lib/bluetooth/bluetoothd -n ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.8" (uid=0 pid=387 comm="/usr/bin/NetworkManager --no-daemon ")
    And finally a complete everything.log
    Jun 17 00:44:20 localhost systemd[1]: Mounting Arbitrary Executable File Formats File System...
    Jun 17 00:44:20 localhost systemd-sysctl[132]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    Jun 17 00:44:20 localhost systemd[1]: Started Apply Kernel Variables.
    Jun 17 00:44:20 localhost systemd[1]: Started udev Coldplug all Devices.
    Jun 17 00:44:20 localhost systemd-modules-load[138]: Inserted module 'fuse'
    Jun 17 00:44:20 localhost systemd[1]: Started Create static device nodes in /dev.
    Jun 17 00:44:20 localhost systemd[1]: Starting udev Kernel Device Manager...
    Jun 17 00:44:20 localhost systemd[1]: Started udev Kernel Device Manager.
    Jun 17 00:44:20 localhost systemd[1]: Mounted Arbitrary Executable File Formats File System.
    Jun 17 00:44:20 localhost systemd[1]: Mounted Debug File System.
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Linux version 3.9.5-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 (GCC) ) #1 SMP PREEMPT Sat Jun 8 09:22:45 CEST 2013
    Jun 17 00:44:29 localhost kernel: [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=90b0c2df-9b19-4c19-91ce-5479b086da4d ro quiet
    Jun 17 00:44:29 localhost kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfdeffff] usable
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000cfdf0000-0x00000000cfdf2fff] ACPI NVS
    Jun 17 00:44:29 localhost syslog-ng[390]: syslog-ng starting up; version='3.4.1'
    Jun 17 00:44:20 localhost systemd[1]: Mounted Huge Pages File System.
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000cfdf3000-0x00000000cfdfffff] ACPI data
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000cfe00000-0x00000000cfefffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000032fffffff] usable
    Jun 17 00:44:29 localhost kernel: [ 0.000000] NX (Execute Disable) protection: active
    Jun 17 00:44:29 localhost kernel: [ 0.000000] SMBIOS 2.4 present.
    Jun 17 00:44:29 localhost kernel: [ 0.000000] DMI: Gigabyte Technology Co., Ltd. GA-MA790XT-UD4P/GA-MA790XT-UD4P, BIOS F8g 07/12/2010
    Jun 17 00:44:29 localhost kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jun 17 00:44:29 localhost kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] No AGP bridge found
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: last_pfn = 0x330000 max_arch_pfn = 0x400000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] MTRR default type: uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] MTRR fixed ranges enabled:
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 00000-9FFFF write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] A0000-BFFFF uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] C0000-C7FFF write-protect
    Jun 17 00:44:30 localhost kernel: [ 0.000000] C8000-FFFFF uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] MTRR variable ranges enabled:
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 2 base 0000C0000000 mask FFFFF0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 3 base 0000CFE00000 mask FFFFFFE00000 uncachable
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 4 base 000100000000 mask FFFF00000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 5 base 000200000000 mask FFFF00000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 6 base 000300000000 mask FFFFE0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] 7 base 000320000000 mask FFFFF0000000 write-back
    Jun 17 00:44:30 localhost kernel: [ 0.000000] TOM2: 0000000330000000 aka 13056M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: update [mem 0xcfe00000-0xffffffff] usable ==> reserved
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: last_pfn = 0xcfdf0 max_arch_pfn = 0x400000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] found SMP MP-table at [mem 0x000f5440-0x000f544f] mapped at [ffff8800000f5440]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Scanning 1 areas for low memory corruption
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Using GB pages for direct mapping
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b31000, 0x01b31fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x32fe00000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x32fe00000-0x32fffffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x32c000000-0x32fdfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x32c000000-0x32fdfffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x300000000-0x32bffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x300000000-0x32bffffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x00100000-0xcfdeffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x40000000-0xbfffffff] page 1G
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0xc0000000-0xcfbfffff] page 2M
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0xcfc00000-0xcfdeffff] page 4k
    Jun 17 00:44:30 localhost kernel: [ 0.000000] init_memory_mapping: [mem 0x100000000-0x2ffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [mem 0x100000000-0x2ffffffff] page 1G
    Jun 17 00:44:30 localhost kernel: [ 0.000000] RAMDISK: [mem 0x378a4000-0x37c49fff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: RSDP 00000000000f6e70 00014 (v00 GBT )
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: RSDT 00000000cfdf3000 00038 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: FACP 00000000cfdf3040 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: DSDT 00000000cfdf30c0 0725F (v01 GBT GBTUACPI 00001000 MSFT 03000000)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: FACS 00000000cfdf0000 00040
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: SSDT 00000000cfdfa400 008F5 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: HPET 00000000cfdfad00 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: MCFG 00000000cfdfad40 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: APIC 00000000cfdfa340 000BC (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Scanning NUMA topology in Northbridge 24
    Jun 17 00:44:30 localhost kernel: [ 0.000000] No NUMA configuration found
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000032fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] NODE_DATA [mem 0x32fff9000-0x32fffdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] [ffffea0000000000-ffffea000cbfffff] PMD -> [ffff880323600000-ffff88032f5fffff] on node 0
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Zone ranges:
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Normal [mem 0x100000000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Movable zone start for each node
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Early memory node ranges
    Jun 17 00:44:30 localhost kernel: [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] node 0: [mem 0x00100000-0xcfdeffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] node 0: [mem 0x100000000-0x32fffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.000000] On node 0 totalpages: 3145102
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA zone: 64 pages used for memmap
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA zone: 21 pages reserved
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA32 zone: 13240 pages used for memmap
    Jun 17 00:44:30 localhost kernel: [ 0.000000] DMA32 zone: 847344 pages, LIFO batch:31
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Normal zone: 35840 pages used for memmap
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Normal zone: 2293760 pages, LIFO batch:31
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] disabled)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] dfl dfl lint[0x1])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jun 17 00:44:30 localhost kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IRQ0 used by override.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IRQ2 used by override.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: IRQ9 used by override.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Jun 17 00:44:30 localhost kernel: [ 0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] smpboot: Allowing 8 CPUs, 5 hotplug CPUs
    Jun 17 00:44:30 localhost kernel: [ 0.000000] nr_irqs_gsi: 40
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cfdf0000 - 00000000cfdf3000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cfdf3000 - 00000000cfe00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cfe00000 - 00000000cff00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] e820: [mem 0xcff00000-0xdfffffff] available for PCI devices
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Jun 17 00:44:30 localhost kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88032fc00000 s85824 r8192 d20672 u262144
    Jun 17 00:44:30 localhost kernel: [ 0.000000] pcpu-alloc: s85824 r8192 d20672 u262144 alloc=1*2097152
    Jun 17 00:44:30 localhost kernel: [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 3095937
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Policy zone: Normal
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=90b0c2df-9b19-4c19-91ce-5479b086da4d ro quiet
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] __ex_table already sorted, skipping sort
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Checking aperture...
    Jun 17 00:44:30 localhost kernel: [ 0.000000] No AGP bridge found
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Node 0: aperture @ c4000000 size 32 MB
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Aperture pointing to e820 RAM. Ignoring.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Please enable the IOMMU option in the BIOS setup
    Jun 17 00:44:30 localhost kernel: [ 0.000000] This costs you 64 MB of RAM
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Mapping aperture over 65536 KB of RAM @ c4000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000c4000000 - 00000000c8000000
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Memory: 12235744k/13369344k available (4984k kernel code, 788936k absent, 344664k reserved, 3966k data, 1092k init)
    Jun 17 00:44:30 localhost kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:744 16
    Jun 17 00:44:30 localhost kernel: [ 0.000000] spurious 8259A interrupt: IRQ7.
    Jun 17 00:44:30 localhost kernel: [ 0.000000] Console: colour dummy device 80x25
    Jun 17 00:44:30 localhost kernel: [ 0.000000] console [tty0] enabled
    Jun 17 00:44:30 localhost kernel: [ 0.000000] allocated 50331648 bytes of page_cgroup
    Jun 17 00:44:30 localhost kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jun 17 00:44:30 localhost kernel: [ 0.000000] hpet clockevent registered
    Jun 17 00:44:30 localhost kernel: [ 0.003333] tsc: Fast TSC calibration using PIT
    Jun 17 00:44:30 localhost kernel: [ 0.006666] tsc: Detected 2812.672 MHz processor
    Jun 17 00:44:30 localhost kernel: [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5627.73 BogoMIPS (lpj=9375573)
    Jun 17 00:44:30 localhost kernel: [ 0.000006] pid_max: default: 32768 minimum: 301
    Jun 17 00:44:30 localhost kernel: [ 0.000035] Security Framework initialized
    Jun 17 00:44:30 localhost kernel: [ 0.000041] AppArmor: AppArmor disabled by boot time parameter
    Jun 17 00:44:30 localhost kernel: [ 0.000892] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.005505] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.007582] Mount-cache hash table entries: 256
    Jun 17 00:44:30 localhost kernel: [ 0.007774] Initializing cgroup subsys cpuacct
    Jun 17 00:44:30 localhost kernel: [ 0.007776] Initializing cgroup subsys memory
    Jun 17 00:44:30 localhost kernel: [ 0.007786] Initializing cgroup subsys devices
    Jun 17 00:44:30 localhost kernel: [ 0.007787] Initializing cgroup subsys freezer
    Jun 17 00:44:30 localhost kernel: [ 0.007789] Initializing cgroup subsys net_cls
    Jun 17 00:44:30 localhost kernel: [ 0.007790] Initializing cgroup subsys blkio
    Jun 17 00:44:30 localhost kernel: [ 0.007813] tseg: 00cff00000
    Jun 17 00:44:30 localhost kernel: [ 0.007816] CPU: Physical Processor ID: 0
    Jun 17 00:44:30 localhost kernel: [ 0.007817] CPU: Processor Core ID: 0
    Jun 17 00:44:30 localhost kernel: [ 0.007818] mce: CPU supports 6 MCE banks
    Jun 17 00:44:30 localhost kernel: [ 0.007823] LVT offset 0 assigned for vector 0xf9
    Jun 17 00:44:30 localhost kernel: [ 0.007828] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Jun 17 00:44:30 localhost kernel: [ 0.007828] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64
    Jun 17 00:44:30 localhost kernel: [ 0.007828] tlb_flushall_shift: 4
    Jun 17 00:44:30 localhost kernel: [ 0.007908] Freeing SMP alternatives: 20k freed
    Jun 17 00:44:30 localhost kernel: [ 0.008523] ACPI: Core revision 20130117
    Jun 17 00:44:30 localhost kernel: [ 0.010353] ACPI: All ACPI Tables successfully acquired
    Jun 17 00:44:30 localhost kernel: [ 0.042664] ftrace: allocating 19546 entries in 77 pages
    Jun 17 00:44:30 localhost kernel: [ 0.399338] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jun 17 00:44:30 localhost kernel: [ 0.432338] smpboot: CPU0: AMD Phenom(tm) II X3 720 Processor (fam: 10, model: 04, stepping: 02)
    Jun 17 00:44:30 localhost kernel: [ 0.535738] Performance Events: AMD PMU driver.
    Jun 17 00:44:30 localhost kernel: [ 0.535742] ... version: 0
    Jun 17 00:44:30 localhost kernel: [ 0.535743] ... bit width: 48
    Jun 17 00:44:30 localhost kernel: [ 0.535744] ... generic registers: 4
    Jun 17 00:44:30 localhost kernel: [ 0.535745] ... value mask: 0000ffffffffffff
    Jun 17 00:44:30 localhost kernel: [ 0.535746] ... max period: 00007fffffffffff
    Jun 17 00:44:30 localhost kernel: [ 0.535746] ... fixed-purpose events: 0
    Jun 17 00:44:30 localhost kernel: [ 0.535747] ... event mask: 000000000000000f
    Jun 17 00:44:30 localhost kernel: [ 0.565797] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jun 17 00:44:30 localhost kernel: [ 0.572465] smpboot: Booting Node 0, Processors #1 #2
    Jun 17 00:44:30 localhost kernel: [ 0.602275] Brought up 3 CPUs
    Jun 17 00:44:30 localhost kernel: [ 0.602279] smpboot: Total of 3 processors activated (16882.19 BogoMIPS)
    Jun 17 00:44:30 localhost kernel: [ 0.605948] devtmpfs: initialized
    Jun 17 00:44:30 localhost kernel: [ 0.608503] PM: Registering ACPI NVS region [mem 0xcfdf0000-0xcfdf2fff] (12288 bytes)
    Jun 17 00:44:30 localhost kernel: [ 0.609303] RTC time: 21:44:15, date: 06/16/13
    Jun 17 00:44:30 localhost kernel: [ 0.609349] NET: Registered protocol family 16
    Jun 17 00:44:30 localhost kernel: [ 0.609448] node 0 link 0: io port [b000, ffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609451] TOM: 00000000d0000000 aka 3328M
    Jun 17 00:44:30 localhost kernel: [ 0.609453] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609455] node 0 link 0: mmio [a0000, bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609457] node 0 link 0: mmio [d0000000, dfffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609459] node 0 link 0: mmio [f0000000, fe02ffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609460] node 0 link 0: mmio [e0000000, e04fffff] ==> [e0100000, e04fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609462] TOM2: 0000000330000000 aka 13056M
    Jun 17 00:44:30 localhost kernel: [ 0.609464] bus: [bus 00-04] on node 0 link 0
    Jun 17 00:44:30 localhost kernel: [ 0.609466] bus: 00 [io 0x0000-0xffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609467] bus: 00 [mem 0x000a0000-0x000bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609468] bus: 00 [mem 0xd0000000-0xdfffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609469] bus: 00 [mem 0xe0500000-0xffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609470] bus: 00 [mem 0xe0100000-0xe04fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609471] bus: 00 [mem 0x330000000-0xfcffffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.609498] ACPI: bus type PCI registered
    Jun 17 00:44:30 localhost kernel: [ 0.609552] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jun 17 00:44:30 localhost kernel: [ 0.609554] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jun 17 00:44:30 localhost kernel: [ 0.617921] PCI: Using configuration type 1 for base access
    Jun 17 00:44:30 localhost kernel: [ 0.618123] mtrr: your CPUs had inconsistent variable MTRR settings
    Jun 17 00:44:30 localhost kernel: [ 0.618124] mtrr: probably your BIOS does not setup all CPUs.
    Jun 17 00:44:30 localhost kernel: [ 0.618125] mtrr: corrected configuration.
    Jun 17 00:44:30 localhost kernel: [ 0.618516] bio: create slab <bio-0> at 0
    Jun 17 00:44:30 localhost kernel: [ 0.618576] ACPI: Added _OSI(Module Device)
    Jun 17 00:44:30 localhost kernel: [ 0.618577] ACPI: Added _OSI(Processor Device)
    Jun 17 00:44:30 localhost kernel: [ 0.618578] ACPI: Added _OSI(3.0 _SCP Extensions)
    Jun 17 00:44:30 localhost kernel: [ 0.618580] ACPI: Added _OSI(Processor Aggregator Device)
    Jun 17 00:44:30 localhost kernel: [ 0.619096] ACPI: EC: Look up EC in DSDT
    Jun 17 00:44:30 localhost kernel: [ 0.623380] ACPI: Interpreter enabled
    Jun 17 00:44:30 localhost kernel: [ 0.623389] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130117/hwxface-568)
    Jun 17 00:44:30 localhost kernel: [ 0.623394] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
    Jun 17 00:44:30 localhost kernel: [ 0.623403] ACPI: (supports S0 S3 S4 S5)
    Jun 17 00:44:30 localhost kernel: [ 0.623405] ACPI: Using IOAPIC for interrupt routing
    Jun 17 00:44:30 localhost kernel: [ 0.623473] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jun 17 00:44:30 localhost kernel: [ 0.637118] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jun 17 00:44:30 localhost kernel: [ 0.637201] PCI host bridge to bus 0000:00
    Jun 17 00:44:30 localhost kernel: [ 0.637204] pci_bus 0000:00: root bus resource [bus 00-ff]
    Jun 17 00:44:30 localhost kernel: [ 0.637207] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jun 17 00:44:30 localhost kernel: [ 0.637209] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637210] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637212] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637214] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.637223] pci 0000:00:00.0: [1002:5958] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.637234] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.637312] pci 0000:00:02.0: [1002:5978] type 01 class 0x060400
    Jun 17 00:44:30 localhost kernel: [ 0.637342] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.637366] pci 0000:00:02.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637399] pci 0000:00:04.0: [1002:597a] type 01 class 0x060400
    Jun 17 00:44:30 localhost kernel: [ 0.637428] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.637453] pci 0000:00:04.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637485] pci 0000:00:0a.0: [1002:597f] type 01 class 0x060400
    Jun 17 00:44:30 localhost kernel: [ 0.637514] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.637542] pci 0000:00:0a.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637581] pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    Jun 17 00:44:30 localhost kernel: [ 0.637600] pci 0000:00:11.0: reg 10: [io 0xff00-0xff07]
    Jun 17 00:44:30 localhost kernel: [ 0.637609] pci 0000:00:11.0: reg 14: [io 0xfe00-0xfe03]
    Jun 17 00:44:30 localhost kernel: [ 0.637618] pci 0000:00:11.0: reg 18: [io 0xfd00-0xfd07]
    Jun 17 00:44:30 localhost kernel: [ 0.637627] pci 0000:00:11.0: reg 1c: [io 0xfc00-0xfc03]
    Jun 17 00:44:30 localhost kernel: [ 0.637636] pci 0000:00:11.0: reg 20: [io 0xfb00-0xfb0f]
    Jun 17 00:44:30 localhost kernel: [ 0.637645] pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
    Jun 17 00:44:30 localhost kernel: [ 0.637664] pci 0000:00:11.0: set SATA to AHCI mode
    Jun 17 00:44:30 localhost kernel: [ 0.637736] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.637749] pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
    Jun 17 00:44:30 localhost kernel: [ 0.637811] pci 0000:00:12.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637840] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.637853] pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
    Jun 17 00:44:30 localhost kernel: [ 0.637916] pci 0000:00:12.1: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.637948] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    Jun 17 00:44:30 localhost kernel: [ 0.637966] pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
    Jun 17 00:44:30 localhost kernel: [ 0.638046] pci 0000:00:12.2: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.638047] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.638065] pci 0000:00:12.2: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638099] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.638112] pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
    Jun 17 00:44:30 localhost kernel: [ 0.638178] pci 0000:00:13.0: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638205] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.638217] pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
    Jun 17 00:44:30 localhost kernel: [ 0.638282] pci 0000:00:13.1: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638316] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    Jun 17 00:44:30 localhost kernel: [ 0.638334] pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
    Jun 17 00:44:30 localhost kernel: [ 0.638414] pci 0000:00:13.2: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.638415] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.638436] pci 0000:00:13.2: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638472] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    Jun 17 00:44:30 localhost kernel: [ 0.638587] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    Jun 17 00:44:30 localhost kernel: [ 0.638602] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    Jun 17 00:44:30 localhost kernel: [ 0.638611] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    Jun 17 00:44:30 localhost kernel: [ 0.638620] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    Jun 17 00:44:30 localhost kernel: [ 0.638629] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    Jun 17 00:44:30 localhost kernel: [ 0.638638] pci 0000:00:14.1: reg 20: [io 0xfa00-0xfa0f]
    Jun 17 00:44:30 localhost kernel: [ 0.638722] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    Jun 17 00:44:30 localhost kernel: [ 0.638743] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.638806] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.638830] pci 0000:00:14.2: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.638857] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    Jun 17 00:44:30 localhost kernel: [ 0.638963] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    Jun 17 00:44:30 localhost kernel: [ 0.639012] pci 0000:00:14.4: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.639040] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    Jun 17 00:44:30 localhost kernel: [ 0.639053] pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
    Jun 17 00:44:30 localhost kernel: [ 0.639119] pci 0000:00:14.5: System wakeup disabled by ACPI
    Jun 17 00:44:30 localhost kernel: [ 0.639151] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639203] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639254] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639305] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639358] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    Jun 17 00:44:30 localhost kernel: [ 0.639454] pci 0000:01:00.0: [1002:94b3] type 00 class 0x030000
    Jun 17 00:44:30 localhost kernel: [ 0.639466] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.639475] pci 0000:01:00.0: reg 18: [mem 0xfdee0000-0xfdeeffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.639482] pci 0000:01:00.0: reg 20: [io 0xee00-0xeeff]
    Jun 17 00:44:30 localhost kernel: [ 0.639493] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.639520] pci 0000:01:00.0: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.639554] pci 0000:01:00.1: [1002:aa38] type 00 class 0x040300
    Jun 17 00:44:30 localhost kernel: [ 0.639566] pci 0000:01:00.1: reg 10: [mem 0xfdefc000-0xfdefffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.639616] pci 0000:01:00.1: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.648955] pci 0000:00:02.0: PCI bridge to [bus 01]
    Jun 17 00:44:30 localhost kernel: [ 0.648960] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jun 17 00:44:30 localhost kernel: [ 0.648963] pci 0000:00:02.0: bridge window [mem 0xfde00000-0xfdefffff]
    Jun 17 00:44:30 localhost kernel: [ 0.648966] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649016] pci 0000:02:00.0: [197b:2363] type 00 class 0x010185
    Jun 17 00:44:30 localhost kernel: [ 0.649081] pci 0000:02:00.0: reg 24: [mem 0xfddfe000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.649130] pci 0000:02:00.0: PME# supported from D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.649179] pci 0000:02:00.1: [197b:2363] type 00 class 0x010185
    Jun 17 00:44:30 localhost kernel: [ 0.649197] pci 0000:02:00.1: reg 10: [io 0xdf00-0xdf07]
    Jun 17 00:44:30 localhost kernel: [ 0.649207] pci 0000:02:00.1: reg 14: [io 0xde00-0xde03]
    Jun 17 00:44:30 localhost kernel: [ 0.649217] pci 0000:02:00.1: reg 18: [io 0xdd00-0xdd07]
    Jun 17 00:44:30 localhost kernel: [ 0.649227] pci 0000:02:00.1: reg 1c: [io 0xdc00-0xdc03]
    Jun 17 00:44:30 localhost kernel: [ 0.649237] pci 0000:02:00.1: reg 20: [io 0xdb00-0xdb0f]
    Jun 17 00:44:30 localhost kernel: [ 0.649319] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Jun 17 00:44:30 localhost kernel: [ 0.649326] pci 0000:00:04.0: PCI bridge to [bus 02]
    Jun 17 00:44:30 localhost kernel: [ 0.649329] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.649331] pci 0000:00:04.0: bridge window [mem 0xfdd00000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.649334] pci 0000:00:04.0: bridge window [mem 0xfdc00000-0xfdcfffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649377] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    Jun 17 00:44:30 localhost kernel: [ 0.649389] pci 0000:03:00.0: reg 10: [io 0xce00-0xceff]
    Jun 17 00:44:30 localhost kernel: [ 0.649408] pci 0000:03:00.0: reg 18: [mem 0xfdfff000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649421] pci 0000:03:00.0: reg 20: [mem 0xfdfe0000-0xfdfeffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649430] pci 0000:03:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.649474] pci 0000:03:00.0: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.649475] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jun 17 00:44:30 localhost kernel: [ 0.658954] pci 0000:00:0a.0: PCI bridge to [bus 03]
    Jun 17 00:44:30 localhost kernel: [ 0.658959] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    Jun 17 00:44:30 localhost kernel: [ 0.658961] pci 0000:00:0a.0: bridge window [mem 0xfd900000-0xfd9fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.658964] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.659008] pci 0000:04:06.0: [1131:7146] type 00 class 0x048000
    Jun 17 00:44:30 localhost kernel: [ 0.659025] pci 0000:04:06.0: reg 10: [mem 0xfdbff000-0xfdbff1ff]
    Jun 17 00:44:30 localhost kernel: [ 0.659127] pci 0000:04:07.0: [9710:9805] type 00 class 0x078000
    Jun 17 00:44:30 localhost kernel: [ 0.659143] pci 0000:04:07.0: reg 10: [io 0xbf00-0xbf07]
    Jun 17 00:44:30 localhost kernel: [ 0.659155] pci 0000:04:07.0: reg 14: [io 0xbe00-0xbe07]
    Jun 17 00:44:30 localhost kernel: [ 0.659167] pci 0000:04:07.0: reg 18: [io 0xbd00-0xbd07]
    Jun 17 00:44:30 localhost kernel: [ 0.659179] pci 0000:04:07.0: reg 1c: [io 0xbc00-0xbc07]
    Jun 17 00:44:30 localhost kernel: [ 0.659190] pci 0000:04:07.0: reg 20: [io 0xbb00-0xbb07]
    Jun 17 00:44:30 localhost kernel: [ 0.659202] pci 0000:04:07.0: reg 24: [io 0xba00-0xba0f]
    Jun 17 00:44:30 localhost kernel: [ 0.659264] pci 0000:04:0e.0: [104c:8024] type 00 class 0x0c0010
    Jun 17 00:44:30 localhost kernel: [ 0.659286] pci 0000:04:0e.0: reg 10: [mem 0xfdbfe000-0xfdbfe7ff]
    Jun 17 00:44:30 localhost kernel: [ 0.659298] pci 0000:04:0e.0: reg 14: [mem 0xfdbf8000-0xfdbfbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.659387] pci 0000:04:0e.0: supports D1 D2
    Jun 17 00:44:30 localhost kernel: [ 0.659389] pci 0000:04:0e.0: PME# supported from D0 D1 D2 D3hot
    Jun 17 00:44:30 localhost kernel: [ 0.659445] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659449] pci 0000:00:14.4: bridge window [io 0xb000-0xbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.659453] pci 0000:00:14.4: bridge window [mem 0xfdb00000-0xfdbfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.659457] pci 0000:00:14.4: bridge window [mem 0xfda00000-0xfdafffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.659458] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659460] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659462] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659463] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659465] pci 0000:00:14.4: bridge window [mem 0xd0000000-0xfebfffff] (subtractive decode)
    Jun 17 00:44:30 localhost kernel: [ 0.659479] acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jun 17 00:44:30 localhost kernel: [ 0.659481] acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jun 17 00:44:30 localhost kernel: [ 0.659908] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.659945] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.659979] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660012] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660045] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660078] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660111] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660144] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
    Jun 17 00:44:30 localhost kernel: [ 0.660468] acpi root: \_SB_.PCI0 notify handler is installed
    Jun 17 00:44:30 localhost kernel: [ 0.660494] Found 1 acpi root devices
    Jun 17 00:44:30 localhost kernel: [ 0.660564] ACPI: No dock devices found.
    Jun 17 00:44:30 localhost kernel: [ 0.660640] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jun 17 00:44:30 localhost kernel: [ 0.660643] vgaarb: loaded
    Jun 17 00:44:30 localhost kernel: [ 0.660644] vgaarb: bridge control possible 0000:01:00.0
    Jun 17 00:44:30 localhost kernel: [ 0.660676] PCI: Using ACPI for IRQ routing
    Jun 17 00:44:30 localhost kernel: [ 0.668997] PCI: pci_cache_line_size set to 64 bytes
    Jun 17 00:44:30 localhost kernel: [ 0.669004] pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.669070] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    Jun 17 00:44:30 localhost kernel: [ 0.669071] e820: reserve RAM buffer [mem 0xcfdf0000-0xcfffffff]
    Jun 17 00:44:30 localhost kernel: [ 0.669150] NetLabel: Initializing
    Jun 17 00:44:30 localhost kernel: [ 0.669151] NetLabel: domain hash size = 128
    Jun 17 00:44:30 localhost kernel: [ 0.669152] NetLabel: protocols = UNLABELED CIPSOv4
    Jun 17 00:44:30 localhost kernel: [ 0.669161] NetLabel: unlabeled traffic allowed by default
    Jun 17 00:44:30 localhost kernel: [ 0.669177] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Jun 17 00:44:30 localhost kernel: [ 0.669180] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    Jun 17 00:44:30 localhost kernel: [ 0.671205] Switching to clocksource hpet
    Jun 17 00:44:30 localhost kernel: [ 0.674983] pnp: PnP ACPI init
    Jun 17 00:44:30 localhost kernel: [ 0.674994] ACPI: bus type PNP registered
    Jun 17 00:44:30 localhost kernel: [ 0.675058] system 00:00: [io 0x04d0-0x04d1] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675060] system 00:00: [io 0x0220-0x0225] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675062] system 00:00: [io 0x0290-0x0294] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675065] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675512] pnp 00:01: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.675535] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.675543] pnp 00:01: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:03:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.675575] system 00:01: [io 0x4100-0x411f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675578] system 00:01: [io 0x0228-0x022f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675580] system 00:01: [io 0x040b] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675581] system 00:01: [io 0x04d6] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675583] system 00:01: [io 0x0c00-0x0c01] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675585] system 00:01: [io 0x0c14] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675586] system 00:01: [io 0x0c50-0x0c52] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675588] system 00:01: [io 0x0c6c-0x0c6d] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675589] system 00:01: [io 0x0c6f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675591] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675593] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675594] system 00:01: [io 0x0cd4-0x0cdf] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675596] system 00:01: [io 0x4000-0x40fe] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675597] system 00:01: [io 0x4210-0x4217] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675599] system 00:01: [io 0x0b00-0x0b0f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675601] system 00:01: [io 0x0b10-0x0b1f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675602] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675604] system 00:01: [mem 0xfee00400-0xfee00fff window] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.675608] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675676] pnp 00:02: [dma 4]
    Jun 17 00:44:30 localhost kernel: [ 0.675693] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675740] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675772] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675791] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.675815] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.676004] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676006] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.676106] pnp 00:08: disabling [mem 0x000cfe00-0x000cffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676108] pnp 00:08: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676110] pnp 00:08: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676112] pnp 00:08: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676114] pnp 00:08: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676117] pnp 00:08: disabling [mem 0x00100000-0xcfdeffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
    Jun 17 00:44:30 localhost kernel: [ 0.676153] system 00:08: [mem 0xcfdf0000-0xcfdfffff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676155] system 00:08: [mem 0xffff0000-0xffffffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676157] system 00:08: [mem 0xcfe00000-0xcfefffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676159] system 00:08: [mem 0xcff00000-0xcfffffff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676161] system 00:08: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676162] system 00:08: [mem 0xfee00000-0xfee00fff] could not be reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676164] system 00:08: [mem 0xfff80000-0xfffeffff] has been reserved
    Jun 17 00:44:30 localhost kernel: [ 0.676166] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jun 17 00:44:30 localhost kernel: [ 0.676180] pnp: PnP ACPI: found 9 devices
    Jun 17 00:44:30 localhost kernel: [ 0.676182] ACPI: bus type PNP unregistered
    Jun 17 00:44:30 localhost kernel: [ 0.682550] pci 0000:01:00.0: BAR 6: assigned [mem 0xfde00000-0xfde1ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682553] pci 0000:00:02.0: PCI bridge to [bus 01]
    Jun 17 00:44:30 localhost kernel: [ 0.682556] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jun 17 00:44:30 localhost kernel: [ 0.682558] pci 0000:00:02.0: bridge window [mem 0xfde00000-0xfdefffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682561] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682564] pci 0000:00:04.0: PCI bridge to [bus 02]
    Jun 17 00:44:30 localhost kernel: [ 0.682566] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682568] pci 0000:00:04.0: bridge window [mem 0xfdd00000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682570] pci 0000:00:04.0: bridge window [mem 0xfdc00000-0xfdcfffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682574] pci 0000:03:00.0: BAR 6: assigned [mem 0xfdf00000-0xfdf0ffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682575] pci 0000:00:0a.0: PCI bridge to [bus 03]
    Jun 17 00:44:30 localhost kernel: [ 0.682577] pci 0000:00:0a.0: bridge window [io 0xc000-0xcfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682579] pci 0000:00:0a.0: bridge window [mem 0xfd900000-0xfd9fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682582] pci 0000:00:0a.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682585] pci 0000:00:14.4: PCI bridge to [bus 04]
    Jun 17 00:44:30 localhost kernel: [ 0.682587] pci 0000:00:14.4: bridge window [io 0xb000-0xbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682592] pci 0000:00:14.4: bridge window [mem 0xfdb00000-0xfdbfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682595] pci 0000:00:14.4: bridge window [mem 0xfda00000-0xfdafffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682771] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jun 17 00:44:30 localhost kernel: [ 0.682772] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682774] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682775] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682777] pci_bus 0000:00: resource 8 [mem 0xd0000000-0xfebfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682779] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    Jun 17 00:44:30 localhost kernel: [ 0.682780] pci_bus 0000:01: resource 1 [mem 0xfde00000-0xfdefffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682782] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682784] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682785] pci_bus 0000:02: resource 1 [mem 0xfdd00000-0xfddfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682787] pci_bus 0000:02: resource 2 [mem 0xfdc00000-0xfdcfffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682788] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682790] pci_bus 0000:03: resource 1 [mem 0xfd900000-0xfd9fffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682791] pci_bus 0000:03: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682793] pci_bus 0000:04: resource 0 [io 0xb000-0xbfff]
    Jun 17 00:44:30 localhost kernel: [ 0.682795] pci_bus 0000:04: resource 1 [mem 0xfdb00000-0xfdbfffff]
    Jun 17 00:44:30 localhost kernel: [ 0.682796] pci_bus 0000:04: resource 2 [mem 0xfda00000-0xfdafffff pref]
    Jun 17 00:44:30 localhost kernel: [ 0.682798] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Jun 17 00:44:30 localhost kernel: [ 0.682799] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Jun 17 00:44:30 localhost kernel: [

    I managed to get my wired connection back and updated my system. After that (and a reboot), NetworkManager started to mysteriously work.
    Here are the relevant parts from journald's log:
    kesä 17 17:47:40 sunnydale dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:47:40 sunnydale dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:47:40 sunnydale systemd[1]: Starting Network Manager Script Dispatcher Service...
    kesä 17 17:47:40 sunnydale dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:47:40 sunnydale dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:47:40 sunnydale systemd[1]: Started Network Manager Script Dispatcher Service.
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) starting connection 'dna internet connection'
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <debug> [1371480469.388835] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) scheduled...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) started...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) scheduled...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 1 of 5 (Device Prepare) complete.
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) starting...
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: prepare -> config (reason 'none') [40 50 0]
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <debug> [1371480469.390823] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <debug> [1371480469.398034] [nm-device-bt.c:947] act_stage2_config(): (40:98:4E:65:A1:00): requesting connection to the device
    kesä 17 17:47:49 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 2 of 5 (Device Configure) complete.
    kesä 17 17:47:52 sunnydale NetworkManager[387]: <debug> [1371480472.813677] [nm-device-bt.c:836] bluez_property_changed(): (40:98:4E:65:A1:00): bluez property 'Connected' changed to 'true'
    kesä 17 17:47:52 sunnydale NetworkManager[387]: <debug> [1371480472.813775] [nm-device-bt.c:846] bluez_property_changed(): (40:98:4E:65:A1:00): connected to the device
    kesä 17 17:47:53 sunnydale NetworkManager[387]: <debug> [1371480473.67585] [nm-device-bt.c:808] bluez_connect_cb(): (40:98:4E:65:A1:00): connect request successful
    kesä 17 17:47:53 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00 40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) successful. Will connect via DUN.
    kesä 17 17:47:53 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) waiting for modem to appear.
    kesä 17 17:47:53 sunnydale upowerd[518]: (upowerd:518): UPower-Linux-WARNING **: unhandled action 'move' on /sys/devices/pci0000:00/0000:00:13.1/usb4/4-3/4-3:1.0/bluetooth/hci0/hci0:21/rfcomm0
    kesä 17 17:47:53 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:54 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:54 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:56 sunnydale ModemManager[390]: <info> Creating modem with plugin 'Nokia' and '1' ports
    kesä 17 17:47:56 sunnydale ModemManager[390]: <info> Modem for device at '/sys/devices/pci0000:00/0000:00:13.1/usb4/4-3' successfully created
    kesä 17 17:47:56 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:56 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem: state changed (unknown -> disabled)
    kesä 17 17:47:57 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00/bluetooth) Stage 2 of 5 (Device Configure) modem found.
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect started...
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (3/8): Enable
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (disabled -> enabling)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'disabled' --> 'enabling' (reason: user-requested)
    kesä 17 17:47:57 sunnydale kernel: Bluetooth: TIOCGSERIAL is not supported
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (unknown -> registering)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> enabled)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (4/8): Wait to get fully enabled
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (5/8): Register
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (6/8): Bearer
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'enabling' --> 'enabled' (reason: user-requested)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (7/8): Connect
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabled -> connecting)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'enabled' --> 'connecting' (reason: user-requested)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <warn> Couldn't load Operator Name: 'Unknown error'
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (registering -> home)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP location updated (MCC: '0', MNC: '0', Location area code: 'A1', Cell ID: '10C654')
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Modem /org/freedesktop/ModemManager1/Modem/0: state changed (connecting -> connected)
    kesä 17 17:47:57 sunnydale ModemManager[390]: <info> Simple connect state (8/8): All done
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (rfcomm0) modem state changed, 'connecting' --> 'connected' (reason: user-requested)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <warn> (rfcomm0): failed to look up interface index
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.987235] [nm-device.c:3066] nm_device_activate_schedule_stage3_ip_config_start(): Activation (40:98:4E:65:A1:00) setting firewall zone 'default'
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.987260] [nm-firewall-manager.c:107] nm_firewall_manager_add_or_change_zone(): (rfcomm0) firewall zone add/change skipped (not running)
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 3 of 5 (IP Configure Start) scheduled.
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 3 of 5 (IP Configure Start) started...
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: config -> ip-config (reason 'none') [50 70 0]
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.987628] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> using modem-specified IP timeout: 20 seconds
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <info> starting PPP connection
    kesä 17 17:47:57 sunnydale NetworkManager[387]: <debug> [1371480477.988323] [nm-ppp-manager.c:1068] nm_ppp_manager_start(): command line: /usr/sbin/pppd nodetach lock nodefaultroute ipv6 , debug rfcomm0 noipdefault noauth usepeerdns lcp-echo-failure 0 lcp-echo-interval 0 ipparam /org/freedesktop/NetworkManager/PPP/0 plugin /usr/lib/pppd/2.4.5/nm-pppd-plugin.so
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> pppd started with pid 914
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 3 of 5 (IP Configure Start) complete.
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 4 of 5 (IPv6 Configure Timeout) started...
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    kesä 17 17:47:58 sunnydale pppd[914]: Plugin /usr/lib/pppd/2.4.5/nm-pppd-plugin.so loaded.
    kesä 17 17:47:58 sunnydale NetworkManager[387]: Plugin /usr/lib/pppd/2.4.5/nm-pppd-plugin.so loaded.
    kesä 17 17:47:58 sunnydale kernel: PPP generic driver version 2.4.2
    kesä 17 17:47:58 sunnydale pppd[914]: pppd 2.4.5 started by root, uid 0
    kesä 17 17:47:58 sunnydale pppd[914]: using channel 1
    kesä 17 17:47:58 sunnydale pppd[914]: Using interface ppp0
    kesä 17 17:47:58 sunnydale pppd[914]: Connect: ppp0 <--> /dev/rfcomm0
    kesä 17 17:47:58 sunnydale pppd[914]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <debug> [1371480478.113258] [nm-netlink-monitor.c:164] link_msg_handler(): netlink link message: iface idx 3 flags 0x1090
    kesä 17 17:47:58 sunnydale NetworkManager[387]: using channel 1
    kesä 17 17:47:58 sunnydale NetworkManager[387]: Using interface ppp0
    kesä 17 17:47:58 sunnydale NetworkManager[387]: Connect: ppp0 <--> /dev/rfcomm0
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [LCP ConfReq id=0x1 <asyncmap 0x0> <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale systemd-sysctl[922]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <debug> [1371480478.116359] [nm-udev-manager.c:568] handle_uevent(): UDEV event: action 'add' subsys 'net' device 'ppp0'
    kesä 17 17:47:58 sunnydale NetworkManager[387]: <warn> /sys/devices/virtual/net/ppp0: couldn't determine device driver; ignoring...
    kesä 17 17:47:58 sunnydale pppd[914]: rcvd [LCP ConfRej id=0x1 <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale pppd[914]: sent [LCP ConfReq id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: rcvd [LCP ConfRej id=0x1 <magic 0x2ae21925> <pcomp> <accomp>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [LCP ConfReq id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale pppd[914]: rcvd [LCP ConfAck id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: rcvd [LCP ConfAck id=0x2 <asyncmap 0x0>]
    kesä 17 17:47:58 sunnydale pppd[914]: rcvd [LCP ConfReq id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale pppd[914]: sent [LCP ConfAck id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: rcvd [LCP ConfReq id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [LCP ConfAck id=0x0 <auth pap> <mru 1500> <asyncmap 0xa0000>]
    kesä 17 17:47:58 sunnydale pppd[914]: sent [PAP AuthReq id=0x1 user="" password=<hidden>]
    kesä 17 17:47:58 sunnydale NetworkManager[387]: sent [PAP AuthReq id=0x1 user="" password=<hidden>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [PAP AuthReq id=0x2 user="" password=<hidden>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [PAP AuthReq id=0x2 user="" password=<hidden>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [PAP AuthAck id=0x2 ""]
    kesä 17 17:48:01 sunnydale pppd[914]: PAP authentication succeeded
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [PAP AuthAck id=0x2 ""]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: PAP authentication succeeded
    kesä 17 17:48:01 sunnydale kernel: PPP BSD Compression module registered
    kesä 17 17:48:01 sunnydale pppd[914]: sent [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPCP ConfReq id=0x1 <compress VJ 0f 01> <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [CCP ConfReq id=0x1 <deflate 15> <deflate(old#) 15> <bsd v1 15>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPCP ConfReq id=0x1 <compress VJ 0f 01> <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:01 sunnydale kernel: PPP Deflate Compression module registered
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [LCP ProtRej id=0x0 80 fd 01 01 00 0f 1a 04 78 00 18 04 78 00 15 03 2f]
    kesä 17 17:48:01 sunnydale pppd[914]: Protocol-Reject for 'Compression Control Protocol' (0x80fd) received
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [LCP ProtRej id=0x0 80 fd 01 01 00 0f 1a 04 78 00 18 04 78 00 15 03 2f]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: Protocol-Reject for 'Compression Control Protocol' (0x80fd) received
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x0 <addr fe80::0000:0000:0000:0000>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfNak id=0x0 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x0 <addr fe80::0000:0000:0000:0000>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfNak id=0x0 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:01 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale pppd[914]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale pppd[914]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale NetworkManager[387]: rcvd [IPV6CP ConfReq id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:02 sunnydale NetworkManager[387]: sent [IPV6CP ConfAck id=0x1 <addr fe80::f042:f734:907e:22b9>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfRej id=0x1 <compress VJ 0f 01>]
    kesä 17 17:48:03 sunnydale pppd[914]: sent [IPCP ConfReq id=0x2 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfRej id=0x1 <compress VJ 0f 01>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: sent [IPCP ConfReq id=0x2 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-dns2 0.0.0.0>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfNak id=0x2 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale pppd[914]: sent [IPCP ConfReq id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfNak id=0x2 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: sent [IPCP ConfReq id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale pppd[914]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfReq id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: sent [IPCP ConfAck id=0x0 <addr 10.6.6.6>]
    kesä 17 17:48:03 sunnydale pppd[914]: rcvd [IPCP ConfAck id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale pppd[914]: Cannot determine ethernet address for proxy ARP
    kesä 17 17:48:03 sunnydale pppd[914]: local IP address 10.241.96.30
    kesä 17 17:48:03 sunnydale pppd[914]: remote IP address 10.6.6.6
    kesä 17 17:48:03 sunnydale pppd[914]: primary DNS address 62.241.198.245
    kesä 17 17:48:03 sunnydale pppd[914]: secondary DNS address 62.241.198.246
    kesä 17 17:48:03 sunnydale pppd[914]: Script /etc/ppp/ip-up started (pid 928)
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.851617] [nm-netlink-monitor.c:164] link_msg_handler(): netlink link message: iface idx 3 flags 0x110D1
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <info> PPP manager(IP Config Get) reply received.
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 5 of 5 (IPv4 Commit) started...
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.852986] [nm-system.c:194] sync_addresses(): (ppp0): syncing addresses (family 2)
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.853021] [nm-system.c:247] sync_addresses(): (ppp0): removing address '10.241.96.30/32'
    kesä 17 17:48:03 sunnydale NetworkManager[387]: rcvd [IPCP ConfAck id=0x3 <addr 10.241.96.30> <ms-dns1 62.241.198.245> <ms-dns2 62.241.198.246>]
    kesä 17 17:48:03 sunnydale NetworkManager[387]: Cannot determine ethernet address for proxy ARP
    kesä 17 17:48:03 sunnydale NetworkManager[387]: local IP address 10.241.96.30
    kesä 17 17:48:03 sunnydale NetworkManager[387]: remote IP address 10.6.6.6
    kesä 17 17:48:03 sunnydale NetworkManager[387]: primary DNS address 62.241.198.245
    kesä 17 17:48:03 sunnydale NetworkManager[387]: secondary DNS address 62.241.198.246
    kesä 17 17:48:03 sunnydale NetworkManager[387]: Script /etc/ppp/ip-up started (pid 928)
    kesä 17 17:48:03 sunnydale NetworkManager[387]: <debug> [1371480483.853775] [nm-system.c:280] sync_addresses(): (ppp0): adding address '10.241.96.30/0'
    kesä 17 17:48:03 sunnydale pppd[914]: Script /etc/ppp/ip-up finished (pid 928), status = 0x2
    kesä 17 17:48:03 sunnydale NetworkManager[387]: Script /etc/ppp/ip-up finished (pid 928), status = 0x2
    kesä 17 17:48:04 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855173] [nm-netlink-utils.c:356] dump_route(): route idx 3 family INET (2) addr 10.6.6.6/32
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855250] [nm-netlink-utils.c:356] dump_route(): route idx 3 family INET (2) addr 10.241.96.30/32
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855608] [nm-dns-manager.c:995] nm_dns_manager_begin_updates(): (device_ip4_config_changed): queueing DNS updates (1)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855649] [nm-dns-manager.c:1013] nm_dns_manager_end_updates(): (nm_dns_manager_end_updates): DNS configuration did not change
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855666] [nm-dns-manager.c:1017] nm_dns_manager_end_updates(): (device_ip4_config_changed): no DNS changes to commit (0)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.855795] [nm-manager.c:596] manager_device_state_changed(): stopping connectivity checks
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.858147] [nm-device.c:5244] nm_device_queue_state(): (40:98:4E:65:A1:00): queued state change to activated (id 252)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.858200] [nm-device.c:5174] nm_device_state_changed(): (40:98:4E:65:A1:00): device entered SECONDARIES state
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) Stage 5 of 5 (IPv4 Commit) complete.
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.870449] [nm-device.c:5202] queued_set_state(): (40:98:4E:65:A1:00): running queued state change to activated (id 252)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> (40:98:4E:65:A1:00): device state change: secondaries -> activated (reason 'none') [90 100 0]
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.872130] [nm-manager.c:591] manager_device_state_changed(): (40:98:4E:65:A1:00): triggered connectivity check due to state change
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.873625] [nm-dns-manager.c:995] nm_dns_manager_begin_updates(): (device_state_changed): queueing DNS updates (1)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.873683] [nm-dns-manager.c:995] nm_dns_manager_begin_updates(): (update_routing_and_dns): queueing DNS updates (2)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> Policy set 'dna internet connection' (ppp0) as default for IPv4 routing and DNS.
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874320] [nm-dns-manager.c:1013] nm_dns_manager_end_updates(): (nm_dns_manager_end_updates): DNS configuration changed
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874341] [nm-dns-manager.c:1017] nm_dns_manager_end_updates(): (update_routing_and_dns): no DNS changes to commit (1)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874368] [nm-dns-manager.c:1013] nm_dns_manager_end_updates(): (nm_dns_manager_end_updates): DNS configuration changed
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874383] [nm-dns-manager.c:1022] nm_dns_manager_end_updates(): (device_state_changed): committing DNS changes (0)
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <debug> [1371480484.874399] [nm-dns-manager.c:591] update_dns(): updating resolv.conf
    kesä 17 17:48:04 sunnydale NetworkManager[387]: <info> Activation (40:98:4E:65:A1:00) successful, device activated.
    kesä 17 17:48:04 sunnydale dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:48:04 sunnydale dbus[396]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    kesä 17 17:48:04 sunnydale systemd[1]: Starting Network Manager Script Dispatcher Service...
    kesä 17 17:48:04 sunnydale dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:48:04 sunnydale dbus[396]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    kesä 17 17:48:04 sunnydale systemd[1]: Started Network Manager Script Dispatcher Service.
    kesä 17 17:48:07 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:07 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:10 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:10 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:13 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:13 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:16 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:16 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:19 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:19 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:21 sunnydale /etc/gdm/Xsession[622]: (process:953): GLib-CRITICAL **: g_slice_set_config: assertion `sys_page_size == 0' failed
    kesä 17 17:48:22 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:22 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:CurrentTime used to choose focus window; focus window may not be correct.
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Got a request to focus 0x2200006 (jussi@sunn) with a timestamp of 0. This shouldn't happen!
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:CurrentTime used to choose focus window; focus window may not be correct.
    kesä 17 17:48:25 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    kesä 17 17:48:25 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:25 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:28 sunnydale pppd[914]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:28 sunnydale NetworkManager[387]: sent [IPV6CP ConfReq id=0x1 <addr fe80::e85e:dbed:209d:cf47>]
    kesä 17 17:48:31 sunnydale pppd[914]: IPV6CP: timeout sending Config-Requests
    kesä 17 17:48:31 sunnydale NetworkManager[387]: IPV6CP: timeout sending Config-Requests
    kesä 17 17:49:41 sunnydale dbus-daemon[396]: dbus[396]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
    kesä 17 17:49:41 sunnydale dbus[396]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
    kesä 17 17:49:41 sunnydale systemd[1]: Starting Hostname Service...
    kesä 17 17:49:41 sunnydale dbus-daemon[396]: dbus[396]: [system] Successfully activated service 'org.freedesktop.hostname1'
    kesä 17 17:49:41 sunnydale dbus[396]: [system] Successfully activated service 'org.freedesktop.hostname1'
    kesä 17 17:49:41 sunnydale systemd[1]: Started Hostname Service.
    kesä 17 17:49:43 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Log level 8: meta_window_raise: assertion `!window->override_redirect' failed
    kesä 17 17:49:44 sunnydale /etc/gdm/Xsession[622]: Ikkunointiohjelman varoitus:Log level 8: meta_window_lower: assertion `!window->override_redirect' failed
    And here is log about the updates I made:
    [2013-06-17 17:01] [PACMAN] Running 'pacman -Syu'
    [2013-06-17 17:01] [PACMAN] synchronizing package lists
    [2013-06-17 17:01] [PACMAN] starting full system upgrade
    [2013-06-17 17:04] [PACMAN] Running 'pacman -S --asdeps polkit'
    [2013-06-17 17:04] [PACMAN] upgraded polkit (0.110-2 -> 0.111-1)
    [2013-06-17 17:24] [PACMAN] Running 'pacman -U --asdeps lib32-polkit-0.111-1-x86_64.pkg.tar.xz'
    [2013-06-17 17:24] [PACMAN] upgraded lib32-polkit (0.110-2 -> 0.111-1)
    [2013-06-17 17:27] [PACMAN] Running 'pacman -S --asdeps libxkbcommon'
    [2013-06-17 17:27] [PACMAN] upgraded libxkbcommon (0.3.0-1 -> 0.3.1-1)
    [2013-06-17 17:28] [PACMAN] Running 'pacman -U --asdeps lib32-libxkbcommon-0.3.1-1-x86_64.pkg.tar.xz'
    [2013-06-17 17:28] [PACMAN] upgraded lib32-libxkbcommon (0.3.0-1 -> 0.3.1-1)
    [2013-06-17 17:28] [PACMAN] Running 'pacman -Syu'
    [2013-06-17 17:28] [PACMAN] synchronizing package lists
    [2013-06-17 17:28] [PACMAN] starting full system upgrade
    [2013-06-17 17:33] [PACMAN] removed lib32-dbus-core (1.6.10-1)
    [2013-06-17 17:33] [PACMAN] upgraded attr (2.4.46-2 -> 2.4.47-1)
    [2013-06-17 17:33] [PACMAN] upgraded acl (2.2.51-3 -> 2.2.52-1)
    [2013-06-17 17:33] [PACMAN] upgraded attica (0.4.1-2 -> 0.4.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded cups-pk-helper (0.2.4-1 -> 0.2.5-1)
    [2013-06-17 17:33] [PACMAN] upgraded dbus (1.6.10-1 -> 1.6.12-1)
    [2013-06-17 17:33] [PACMAN] upgraded dosfstools (3.0.17-1 -> 3.0.20-1)
    [2013-06-17 17:33] [PACMAN] upgraded gtk-update-icon-cache (2.24.18-1 -> 2.24.19-1)
    [2013-06-17 17:33] [PACMAN] upgraded gtk2 (2.24.18-1 -> 2.24.19-1)
    [2013-06-17 17:33] [PACMAN] upgraded flashplugin (11.2.202.285-1 -> 11.2.202.291-1)
    [2013-06-17 17:33] [PACMAN] upgraded libgdm (3.8.1.1-2 -> 3.8.3-1)
    [2013-06-17 17:33] [ALPM] warning: directory permissions differ on /var/log/gdm/
    filesystem: 711 package: 1770
    [2013-06-17 17:33] [PACMAN] upgraded gdm (3.8.1.1-2 -> 3.8.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded geoip-database (20130514-1 -> 20130607-1)
    [2013-06-17 17:33] [PACMAN] upgraded git (1.8.3-1 -> 1.8.3.1-1)
    [2013-06-17 17:33] [PACMAN] upgraded glib2 (2.36.2-1 -> 2.36.3-2)
    [2013-06-17 17:33] [PACMAN] upgraded xkeyboard-config (2.9-1 -> 2.9-2)
    [2013-06-17 17:33] [PACMAN] upgraded iso-codes (3.41-1 -> 3.43-1)
    [2013-06-17 17:33] [PACMAN] upgraded gnome-desktop (1:3.8.3-1 -> 1:3.8.3-2)
    [2013-06-17 17:33] [PACMAN] upgraded gnome-user-docs (3.8.1-1 -> 3.8.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded graphite (1:1.2.2-1 -> 1:1.2.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-afc (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-goa (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [ALPM-SCRIPTLET] Users no longer need to be in the 'camera' group to use camera devices
    [2013-06-17 17:33] [PACMAN] upgraded libgphoto2 (2.5.1-1 -> 2.5.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-gphoto2 (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-mtp (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-obexftp (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded gvfs-smb (1.16.2-2 -> 1.16.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded hwids (20130512-1 -> 20130607-1)
    [2013-06-17 17:33] [PACMAN] upgraded jre7-openjdk-headless (7.u21_2.3.9-4 -> 7.u40_2.4.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded jre7-openjdk (7.u21_2.3.9-4 -> 7.u40_2.4.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded jdk7-openjdk (7.u21_2.3.9-4 -> 7.u40_2.4.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded json-c (0.10-2 -> 0.11-1)
    [2013-06-17 17:33] [PACMAN] upgraded krb5 (1.11.2-4 -> 1.11.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-attr (2.4.46-2 -> 2.4.47-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-acl (2.2.51-2 -> 2.2.52-1)
    [2013-06-17 17:33] [PACMAN] installed lib32-dbus (1.6.12-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-gtk2 (2.24.18-1 -> 2.24.19-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-json-c (0.10-2 -> 0.11-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-krb5 (1.11.2-1 -> 1.11.3-1)
    [2013-06-17 17:33] [PACMAN] upgraded libpulse (4.0-1 -> 4.0-2)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-libpulse (4.0-1 -> 4.0-2)
    [2013-06-17 17:33] [PACMAN] upgraded libxrender (0.9.7-1 -> 0.9.8-1)
    [2013-06-17 17:33] [PACMAN] upgraded lib32-libxrender (0.9.7-1 -> 0.9.8-1)
    [2013-06-17 17:33] [PACMAN] upgraded libbsd (0.4.2-1 -> 0.5.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded libmbim (1.0.0-1 -> 1.2.0-1)
    [2013-06-17 17:33] [PACMAN] upgraded libnautilus-extension (3.8.1-1 -> 3.8.2-1)
    [2013-06-17 17:33] [PACMAN] upgraded libpipeline (1.2.3-1 -> 1.2.4-1)
    [2013-06-17 17:33] [PACMAN] upgraded libquvi-scripts (0.4.14-1 -> 0.4.15-1)
    [2013-06-17 17:33] [PACMAN] upgraded libusb-compat (0.1.4-2 -> 0.1.5-1)
    [2013-06-17 17:33] [PACMAN] upgraded libxvmc (1.0.7-1 -> 1.0.8-1)
    [2013-06-17 17:33] [PACMAN] upgraded link-grammar (4.7.11-1 -> 4.7.12-1)
    [2013-06-17 17:33] [PACMAN] upgraded linux-firmware (20130528-1 -> 20130610-1)
    [2013-06-17 17:33] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-06-17 17:33] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Starting build: 3.9.6-1-ARCH
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Starting build: 3.9.6-1-ARCH
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2013-06-17 17:33] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-06-17 17:33] [PACMAN] upgraded linux (3.9.5-1 -> 3.9.6-1)
    [2013-06-17 17:33] [PACMAN] upgraded linux-headers (3.9.5-1 -> 3.9.6-1)
    [2013-06-17 17:33] [PACMAN] upgraded lirc-utils (1:0.9.0-46 -> 1:0.9.0-47)
    [2013-06-17 17:33] [PACMAN] upgraded mime-types (8-1 -> 9-1)
    [2013-06-17 17:33] [ALPM] warning: extracting /usr/share/applications/nautilus.desktop as /usr/share/applications/nautilus.desktop.pacnew
    [2013-06-17 17:33] [ALPM] warning: extracting /usr/share/applications/nautilus-autorun-software.desktop as /usr/share/applications/nautilus-autorun-software.desktop.pacnew
    [2013-06-17 17:34] [PACMAN] upgraded nautilus (3.8.1-1 -> 3.8.2-1)
    [2013-06-17 17:34] [PACMAN] upgraded p7zip (9.20.1-6 -> 9.20.1-7)
    [2013-06-17 17:34] [ALPM] warning: /etc/ppp/ip-down.d/00-dns.sh installed as /etc/ppp/ip-down.d/00-dns.sh.pacnew
    [2013-06-17 17:34] [ALPM] warning: /etc/ppp/ip-up.d/00-dns.sh installed as /etc/ppp/ip-up.d/00-dns.sh.pacnew
    [2013-06-17 17:34] [PACMAN] upgraded ppp (2.4.5-6 -> 2.4.5-7)
    [2013-06-17 17:34] [ALPM-SCRIPTLET] >>> If you have per-user copies of configuration files (such as client.conf,
    [2013-06-17 17:34] [ALPM-SCRIPTLET] daemon.conf or default.pa) in ~/.pulse/, make sure you keep them in sync
    [2013-06-17 17:34] [ALPM-SCRIPTLET] with changes to the packaged files in /etc/pulse/. Otherwise, PulseAudio
    [2013-06-17 17:34] [ALPM-SCRIPTLET] may refuse to start due to configuration errors.
    [2013-06-17 17:34] [PACMAN] upgraded pulseaudio (4.0-1 -> 4.0-2)
    [2013-06-17 17:34] [PACMAN] upgraded python-dbus-common (1.1.1-2 -> 1.2.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded python-dbus (1.1.1-2 -> 1.2.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded python2-dbus (1.1.1-2 -> 1.2.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded sdparm (1.07-1 -> 1.08-1)
    [2013-06-17 17:34] [PACMAN] upgraded sg3_utils (1.35-1 -> 1.36-1)
    [2013-06-17 17:34] [PACMAN] upgraded shared-desktop-ontologies (0.10.0-1 -> 0.11.0-1)
    [2013-06-17 17:34] [PACMAN] upgraded subversion (1.7.9-6 -> 1.7.10-1)
    [2013-06-17 17:34] [PACMAN] upgraded sudo (1.8.6.p8-2 -> 1.8.7-1)
    [2013-06-17 17:34] [PACMAN] upgraded syslog-ng (3.4.1-3 -> 3.4.2-1)
    [2013-06-17 17:34] [PACMAN] upgraded usbutils (006-1 -> 007-1)
    [2013-06-17 17:34] [PACMAN] upgraded webkitgtk (2.0.2-3 -> 2.0.3-1)
    [2013-06-17 17:34] [PACMAN] upgraded wine (1.6rc1-1 -> 1.6rc2-1)
    I'm marking this thread solved for now. If the problem arises again, I'll reopen it.

  • How to make a default value by using dynamic actions

    Hi,
           I want to default a field nationality in infotype 0002 as a great britan, using dynamic actions but unable to go ahead. Any help regarding this really appreciate.
    Regards
    Niranjan

    Hi,
    I need some guidance around creating dynamic action with default value, Please guide me through.
    I am aware I can set default values for new infotype, but I need to set default value for same infotype, let me explain the scenario.
    Currently employee is on one pension scheme which is called NE1 and now we are moving this employee to CRESP Pension Scheme.
    When employee is in NE1, his IT0071 has got a opt in field with a flag on, when the same employee is moved from NE1 pension scheme to CRESP Pension scheme, his new IT0071 record should have the same opt in field with a flag on, I want it to set this flag automatically using dynamic action. I dont want to update this field manually, while moving from NE1 to CRESP.
    Currently the below dynamic  action is coded when employees are being moved form NE1 to CRESP, but now they will have a opt in flag which should appear automatically, What needs to be done to make this happen?
    Please let me know if I set default value for the Opt in field for the same infotype.
    . When employees are being moved from NE1 to CRESP pension scheme we currently use a dynamic action as show below:
    0071                      04      10      I        INS,0069
    0071                      04      20      W       P0069-BEGDA=P0071-BEGDA
    0071                      04      30      W       P0069-ENDDA=P0071-ENDDA
    0071                      06      1        F        DYNACT_PAE031(ZHRPROG016)
    Also if it is not possible via dynamic action could you please explain how to create it using user exit, I am not an ABAPer.
    Your help is very much appreciated.
    Kind Regards,
    SK

  • Unable to use place command in photoshop

    I am unable to use the place command in photoshop cs5.5 since upgrading to mavericks. The window pops open briefly then shuts immediately. Photoshop hangs as it is still awaiting the action to complets. The same behavior exists when attempting to add attachments to emails. Any idea what may be causing this? This only began to occur after the upgrade to mavericks.

    If should work.  If I read  this correctly your last driver is a year old.  Visit ATI site and download latest.

  • I am unable to use my external CD player. I am told that the player is being used by another application, and that is not true. I have quit everything and restarted. I've unplugged the unit. I have a fairly new mac mini 10.8. What can I do?

    I am unable to use my external CD player. I have a fairly new mac mini 10.8. I am told that the player is being used by another application, but it's not true. I've forced everything to quit and restarted. I've even unplugged the unit and let it rest. I've turned off and unplugged the mac too. I cannot make a CD. Why?

    I misread your message. I thought it said I did not have burn support with the Samsung hardware.
    When the CD goes in it says You inserted a bland CD. choose an action from the popup menu or click ignore
    open finder
    open itunes
    open disk utility
    make this action the default
    eject         ignore           ok
    However, when I am making CDs. I am in itunes. That is where my recordings areI haven't tried to do it from this vantage point.
    I don't know how to make a screen shot on a mac.
    I go to my playlist and click on the little gear icon at the bottom left and I leave things as they are - preferred speed - maximum. I leave it on audio CD - and then I select BURN.
    When I tried this the other day, I could not get it to burn, no matter how hard I tried - everything I could think of, using a different CD, force quitting everything I was not using, restarting the computer, unplugging the CD hardware and plugging it back in after a little while, nothing worked. I got that message that said my player was being used by another application every time I tried to make the CD.  This took over an hour. I don't know of another way to make a CD on the mac; I was not using another program or application. Now it seems to be working fine. I am burning another copy of something I gave away.
    I wish I knew what caused this. It was a real problem Saturday morning.

  • Unable to Use Star Rating With JPG

    I have been unable to use the star rating with a certain batch of jpgs. I am able to use the star rating with dng files, and other jpgs, but there is a batch that I got off of my friends computer that I am unable to use the star rating with. I have tried clicking on the stars, and also through the label tab, but nothing is working.  Its really annoying because rating the pics is part of my workflow and I want to get these picture done.
    I'm using CS5 on a Mac running 10.6.8

    but there is a batch that I got off of my friends computer that I am unable to use the star rating with.
    Still strange things going on in the digital world...
    Recently I had the same with jpeg from other (to me unknown) sources. I managed with opening in PS and again save as max quality (not ideal but it worked). Those were only a few files.
    You might first try a few files to open and close in PS, if no luck make a duplicate (select some files for testing and with right mouse click choose duplicate) try those first. If still out of luck try the open and save as option. If this is the only solution the you can create a temporarily  action for this in PS (don't change the filename when in save as but leave it untouched and choose a new folder for destination so you won't loose the originals). When in Bridge select the files for the action, choose tools/photoshop/batch and run the action, piece of cake.

  • I locked myself out of my ipod touch for 60 mins then actually typed the wrong password in again.  Now it is telling me to "connect to itunes".  I am unsure how to do this.  I am unable to use my ipod at all now. Please help.

    Hi,
    Due to my brother locking me out of my ipod touch I had to wait an hour to log in again.  Unfortunately when I did this, I, again put in the wrong password twice more, each time locking me out for a further 60 minutes.  On my 3rd attempt to log in the wrong password was entered again.  This time though instead of logging me out for another 60mins it now tells me to "connect to itunes" but I have no idea how to do this and I am now unable to use my ipod.  Please help.

    See Here  >  http://support.apple.com/kb/HT1212

  • Unable to use ASDM on 5510 and 5520 ASA

    Hello,
    I have been working with ASA's for about 8 months now.  I have a 5520 that is brand new out of the box and a 5510 that I blew up last week (read as format disk, start from scratch).
    I have generated RSA keys, loaded license keys, loaded IOS's and configs in the last few days.  Luckily these boxes are table top at the moment and nothingto do with production.  However, I have tried to load production configurations on to these boxes, and have determined that not all the lines of the configs will load.
    To be specific at the moment, I am unable to load "asdm location 192.168.50.0 255.255.255.0 inside" on either box.  I am also unable to use my broswer and HTTPS://192.168.50.1              to access the ASA, even though I have HTTP serve enabled and HTTP 192.168.50.0 listed in the config.
    Because I blew up one of the boxes and started from scratch and the other box is brand new, is/are there any other special things that need to be done to these boxes?  Like I could put in some of the "crypto" config lines in the boxes until I did the license keys, once they were lin, I could configure the crypto lines.
    I am open to any suggestions as this point as I can't current get the VPN's to come up (different issue here) nor see what's going on with the VPN's without ASDM.
    Thank you!
    Tracey

    Hi,
    please configure the ASDM-permitted subnets as following:
    http
    and make sure that you have overlapping ciphers between the client and the ASA:
    show run ssl
    ssl encryption
    if it persists, get the SSL captures at the ASA as .pcap
    hope this helps
    Mashal Alshboul

  • Unable to use iCloud on my iPhone 4S

    I'm unable to use iCloud on my iPhone 4S.  I click on Settings, Scroll to iCloud, Click on iCloud, and then it prompts me to enter my Apple ID and Password.  After I do I click on Sign in and it says User name or password is incorrect and I know they're not.  I try signing in with the same Apple ID and Password and I have no problem signing in.  I don't know what's going on.  Can someone please help?? 

    You need an Internet connection to use Facetime. As not all carriers support Facetime you may need a WiFi connection.

  • Why does iTunes/iPhone 4S insist it can't find a song on my PC or my phone when it is on both? This is resulting in me being unable to use the ringtones I created from these songs, but I can still play the songs.

    OK, so I'm clearly a newb. I thought if I asked a question, it would post, and now I'm being told to post a comment, so I'm asking the same question again. Sorry I sound like an idiot. I'm new to this apple/mac stuff.
    Why does iTunes/iPhone 4S insist it can't find a song on my PC or my phone when it is on both? This is resulting in me being unable to use the ringtones I created from these songs, but I can still play the songs.

    If you have added the ringtone file correctly to iTunes, it will appear under iTunes 'Tones' library.
    If you don't find Tones library in iTunes, go to iTunes menu EDIT/PRFERENCES under GENERAL tab, check the Tones Box under Library source to display Tones library in iTunes.
    iTunes accepts only m4r file as ringtone and has to be less than 40secs.

Maybe you are looking for