Model Binding doesn't work (MVC - BSP)

Hi
My application uses Business Server Pages with MVC.
My Model class has several Attributes and I want to use the Model Binding Concept for automatic data transfer between model an view:
1. MODEL
The attribute i want to use is an internal table: T_REP_TOP     Static Attribute     Private     Type
2. VIEW
2.1 Page Attributes (BSP)
How do i have to declare the page attribute in order to "bind" the model attribute T_REP_TOP to my view???
2.2 Layout: Table View
                                        <htmlb:tableView
                                                    id="topkennzahl"
                                                    selectionMode= "singleselect"
                                                    table="<%=???????????????%>"
                                                    width="80%"
                                                    onRowSelection="row_top"
                                                    footerVisible="FALSE">
                                        </htmlb:tableView>
How do i have to fill the table tag of my table View????
Thankx for your help!!!
greetings
Michael
Edited by: Michael Hornung on May 15, 2008 8:42 AM

Hallo Michael!
1. MODEL
Make the attribute T_REP_TOP as Instance Attribute Public Type
Create an instance of the model in your controller:
METHOD do_init.
  create_model( class_name = 'ZCL_MODEL_MIKE  model_id = 'MOD1' ).
2. VIEW
2.0 Create the View
METHOD do_request.
  DATA: l_view TYPE REF TO if_bsp_page,
        l_model TYPE REF TO zcl_model_mike.
  l_model ?= get_model( 'MOD1' ).
  l_view = create_view( view_name = 'view1.htm' ).
  l_view->set_attribute( name = 'model'  value = l_model ).
  call_view( l_view ).
2.1 Page Attributes (BSP)
Type in a page attribute named model TYPE REF TO zcl_model_mike.
2.2 Layout: Table View
<htmlb:tableView
id="topkennzahl"
selectionMode= "singleselect"
table="//model/t_rep_top"
width="80%"
Regards
Thilo

Similar Messages

  • USER Exit variable doesn't work in BSP

    Hi gurus
    I made a characteristic variable with user-exit replacement type.
    It get the user id from sy-uname. It works well in Gui version. But when I execute the layout in BSP (WI), it doesn't work.
    But If i do the hard-coding the line from (l_eto_charsel-low   = uid.) to (l_eto_charsel-low   = '4012121'.) it works well.
    The following is my coding.
    Please give me any comment.
      CLEAR eto_charsel.
      DATA l_eto_charsel TYPE upc_ys_charsel.
      DATA  uid type c. "(also I have tried 'data uid type sy-uname')
      uid = sy-uname.
      l_eto_charsel-chanm = i_chanm.
      l_eto_charsel-seqno = '0001'.
      l_eto_charsel-sign  = 'I'.
      l_eto_charsel-opt   = 'EQ'.
      l_eto_charsel-low   = uid.  ++++>
      INSERT l_eto_charsel INTO TABLE eto_charsel.
    ENDFUNCTION.
    Message was edited by: Bryan Lee

    Hi,
    Your patch level seems to be OK.
    pls. try the declaration as 'Data: uid like syst-uname' or you could try directly assigning the sy-uname.
    Try to debug and see the content of the sy-uname, when it hits this code.
    HTH,
    Regards,
    Nataraj.

  • Protocol binding doesn't work for OVPN clients.

    As title, it seems protocol binding doesn't apply to users remote connecting via OVPN, meaning that even though I have a rule covering 172.0.0.1 - 172.0.0.254 for all traffic to wan2 the remote users outgoing traffic is still getting loadbalanced.
    This causes a problem for SSL sites as it's not hitting the rules to pin to wan2.

    I will have to verify this since the LRT OpenVPN Server shouldn't be using outgoing Load Balancing and get back to you.
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • TwoWay binding doesn't work using StringFormat={}{#:#.####}, why and how to fix it?

    <TextBox Text="{Binding doResult,UpdateSourceTrigger=PropertyChanged,StringFormat={}{#:#.####},Mode=TwoWay}" Grid.Row="8" Grid.Column="1" Visibility="{Binding ODvisbility,Converter={StaticResource BooleanToVisibilityConverter}}" Style="{Binding ODStyle}"/>
    After changing the stringFormat from 0:0.#### to #:#.#### twoWay binding has stop responding.  
    I fixed one problem and end up with another!

    It is hard to say without having seen all of your code. The information in your last post says nothing but there seems to be nothing wrong with the StringFormat as the property gets set as expected using the sample code I posted. You can try it for yourself
    if you don't believe.
    Please upload a reproducable sample of your issue to OneDrive and post the link to it here if you want anyone to be able to be able to get a clue on what is going on in your application.
    Edit:
    Now I see, it is the target property doesn't get set correcty. Please describe your issue in a bit more detail in the future :)
    Well, StringFormat and UpdateSourceTrigger=PropertyChanged is not a really good combination all the time. You should probably remove the StringFormat and try to handle the formatting logic yourself by for example using a converter. Something like this:
    class DoubleConverter : IValueConverter
    bool addDecimalPoint;
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
    double d = (double)value;
    string s = d.ToString("#.##", System.Globalization.CultureInfo.InvariantCulture);
    if (addDecimalPoint) {
    s += ".";
    addDecimalPoint = false;
    return s;
    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
    string s = value.ToString();
    if (s.EndsWith(".")) {
    s += "0";
    addDecimalPoint = true;
    double d;
    if (double.TryParse(s, System.Globalization.NumberStyles.AllowDecimalPoint, System.Globalization.CultureInfo.InvariantCulture, out d))
    return d;
    return value;
    <TextBox Text="{Binding doResult,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay, Converter={StaticResource doubleConverter}}" />
    Please refer to the following page for more information about converters:
    https://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter(v=vs.110).aspx
    Using StringFormat and UpdateSourceTrigger=PropertyChanged  will probably not work anyway.
    Please remember to mark helpful posts as answer and/or helpful.

  • SDDM 3.1 EA3 relational model generation doesn't work

    Hi,
    nothing happens whenever i tried to generate relational model from logical model with ">>" button ?
    Do you have any explanation?
    thanks in advance
    André

    Hi Philip,
    here comes the complete log.
    Ciao
    André
    2012-01-12 16:40:45,997 [AWT-EventQueue-0] ERROR DesignObject - Listener caused exception:
    java.lang.StringIndexOutOfBoundsException: String index out of range: 1
         at java.lang.String.substring(String.java:1934)
         at oracle.dbtools.crest.model.datatype.MDExplicitSized.setSize(Unknown Source)
         at oracle.dbtools.crest.model.datatype.oracle.MDDataTypeFactoryOracle.createType(Unknown Source)
         at oracle.dbtools.crest.model.datatype.oracle.v9i.MDDataTypeFactoryOraclev9i.createType(Unknown Source)
         at oracle.dbtools.crest.model.datatype.MDDataTypeFactory.createStringEncodedType(Unknown Source)
         at oracle.dbtools.crest.model.design.LogicalDatatype.createDataType(Unknown Source)
         at oracle.dbtools.crest.model.design.Domain.getDataType(Unknown Source)
         at oracle.dbtools.crest.model.design.Domain.getDataType(Unknown Source)
         at oracle.dbtools.crest.model.design.ContainedObjectWithDomain.getDataType(Unknown Source)
         at oracle.dbtools.crest.model.design.logical.Attribute.getDataType(Unknown Source)
         at oracle.dbtools.crest.model.design.ContainerObject.changed(Unknown Source)
         at oracle.dbtools.crest.model.design.logical.CandidateKey.changed(Unknown Source)
         at oracle.dbtools.crest.model.design.DesignObject.fireChange(Unknown Source)
         at oracle.dbtools.crest.model.design.ContainedObjectWithDomain.setDomain(Unknown Source)
         at oracle.dbtools.crest.model.design.logical.Attribute.setDomain(Unknown Source)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx.setPreviousSelectedAttribute(Unknown Source)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx.initSelectedAttributeOptions(Unknown Source)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx.setAttributeSelected(Unknown Source)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx.access$2900(Unknown Source)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx$5.valueChanged(Unknown Source)
         at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:167)
         at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:147)
         at javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:194)
         at javax.swing.DefaultListSelectionModel.changeSelection(DefaultListSelectionModel.java:388)
         at javax.swing.DefaultListSelectionModel.changeSelection(DefaultListSelectionModel.java:398)
         at javax.swing.DefaultListSelectionModel.setSelectionInterval(DefaultListSelectionModel.java:442)
         at javax.swing.JTable.changeSelectionModel(JTable.java:2352)
         at javax.swing.JTable.changeSelection(JTable.java:2421)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx.addAttribute(Unknown Source)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx.access$2500(Unknown Source)
         at oracle.dbtools.crest.swingui.editor.logical.EntityPropertiesDialogEx$COAddAction.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:273)
         at java.awt.Component.processMouseEvent(Component.java:6290)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6055)
         at java.awt.Container.processEvent(Container.java:2039)
         at java.awt.Component.dispatchEventImpl(Component.java:4653)
         at java.awt.Container.dispatchEventImpl(Container.java:2097)
         at java.awt.Component.dispatchEvent(Component.java:4481)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4575)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4236)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4166)
         at java.awt.Container.dispatchEventImpl(Container.java:2083)
         at java.awt.Window.dispatchEventImpl(Window.java:2482)
         at java.awt.Component.dispatchEvent(Component.java:4481)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:648)
         at java.awt.EventQueue.access$000(EventQueue.java:84)
         at java.awt.EventQueue$1.run(EventQueue.java:607)
         at java.awt.EventQueue$1.run(EventQueue.java:605)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:621)
         at java.awt.EventQueue$2.run(EventQueue.java:619)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:618)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
         at java.awt.Dialog$1.run(Dialog.java:1044)
         at java.awt.Dialog$3.run(Dialog.java:1096)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Dialog.java:1094)
         at oracle.dbtools.crest.swingui.editor.AbstractPropertiesDialog.show(Unknown Source)
         at oracle.dbtools.crest.model.design.logical.Entity.showPropertyDialog(Unknown Source)
         at oracle.dbtools.crest.model.ModelIDObject.showPropertyDialogOnNew(Unknown Source)
         at oracle.dbtools.crest.swingui.diagram.graph.MarqueeHandler.addEntity(Unknown Source)
         at oracle.dbtools.crest.swingui.diagram.graph.MarqueeHandler.createObject(Unknown Source)
         at oracle.dbtools.crest.swingui.diagram.graph.MarqueeHandler.mouseReleased(Unknown Source)
         at oracle.dbtools.crest.swingui.diagram.ui.def.DefaultDiagramUI$MouseHandler.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272)
         at java.awt.Component.processMouseEvent(Component.java:6290)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6055)
         at java.awt.Container.processEvent(Container.java:2039)
         at java.awt.Component.dispatchEventImpl(Component.java:4653)
         at java.awt.Container.dispatchEventImpl(Container.java:2097)
         at java.awt.Component.dispatchEvent(Component.java:4481)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4575)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4236)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4166)
         at java.awt.Container.dispatchEventImpl(Container.java:2083)
         at java.awt.Window.dispatchEventImpl(Window.java:2482)
         at java.awt.Component.dispatchEvent(Component.java:4481)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:648)
         at java.awt.EventQueue.access$000(EventQueue.java:84)
         at java.awt.EventQueue$1.run(EventQueue.java:607)
         at java.awt.EventQueue$1.run(EventQueue.java:605)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:621)
         at java.awt.EventQueue$2.run(EventQueue.java:619)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:618)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    2012-01-12 16:41:20,288 [AWT-EventQueue-0] WARN SVNClientHelper - doInfo
    org.tigris.subversion.svnclientadapter.SVNClientException: org.tigris.subversion.javahl.ClientException: svn: 'D:\home\sa54rel\sddm\draft' is not a working copy
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.getInfoFromWorkingCopy(AbstractJhlClientAdapter.java:1792)
         at oracle.dbtools.crest.fcp.vcs.svn.SVNClientHelper.doInfo(Unknown Source)
         at oracle.dbtools.crest.fcp.vcs.svn.SVNHistoryWindow.init(Unknown Source)
         at oracle.dbtools.crest.fcp.vcs.VCSHistoryWindow.setStorableObjectStatus(Unknown Source)
         at oracle.dbtools.crest.fcp.vcs.svn.commands.SVNVersionHistoryCommand.init(Unknown Source)
         at oracle.dbtools.crest.fcp.vcs.svn.commands.SVNVersionHistoryCommand.showSVNHistoryWindow(Unknown Source)
         at oracle.dbtools.crest.fcp.vcs.svn.commands.SVNVersionHistoryCommand.doitImpl(Unknown Source)
         at oracle.jdeveloper.vcs.spi.VCSCommand.doit3(VCSCommand.java:588)
         at oracle.jdeveloper.vcs.spi.VCSCommand.doit(VCSCommand.java:136)
         at oracle.ide.controller.CommandProcessor.invoke(CommandProcessor.java:317)
         at oracle.jdeveloper.vcs.spi.VCSController.invokeCommand(VCSController.java:201)
         at oracle.jdeveloper.vcs.spi.VCSController.handleEventImpl(VCSController.java:156)
         at oracle.jdeveloper.vcs.spi.VCSController$1.run(VCSController.java:84)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:646)
         at java.awt.EventQueue.access$000(EventQueue.java:84)
         at java.awt.EventQueue$1.run(EventQueue.java:607)
         at java.awt.EventQueue$1.run(EventQueue.java:605)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:616)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: org.tigris.subversion.javahl.ClientException: svn: 'D:\home\sa54rel\sddm\draft' is not a working copy
         at org.tigris.subversion.javahl.JavaHLObjectFactory.throwException(JavaHLObjectFactory.java:777)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.throwException(SVNClientImpl.java:1850)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.info(SVNClientImpl.java:1598)
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.getInfoFromWorkingCopy(AbstractJhlClientAdapter.java:1785)
         ... 26 more
    Caused by: org.tmatesoft.svn.core.SVNException: svn: 'D:\home\sa54rel\sddm\draft' is not a working copy
         at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:64)
         at org.tmatesoft.svn.core.internal.wc.admin.SVNAdminAreaFactory.open(SVNAdminAreaFactory.java:163)
         at org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess.doOpen(SVNWCAccess.java:364)
         at org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess.open(SVNWCAccess.java:272)
         at org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess.probeOpen(SVNWCAccess.java:299)
         at org.tmatesoft.svn.core.internal.wc.admin.SVNWCAccess.probeOpen(SVNWCAccess.java:284)
         at org.tmatesoft.svn.core.wc.SVNWCClient.crawlEntries(SVNWCClient.java:3275)
         at org.tmatesoft.svn.core.wc.SVNWCClient.doInfo(SVNWCClient.java:2495)
         at org.tmatesoft.svn.core.wc.SVNWCClient.doInfo(SVNWCClient.java:2871)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.info(SVNClientImpl.java:1593)
         ... 27 more
    2012-01-12 16:44:44,107 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:05,220 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:07,030 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:07,529 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:07,763 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:08,012 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:08,246 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:08,449 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:08,652 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:08,839 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:09,619 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:09,900 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:10,337 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:41,701 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:45:44,088 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:24,788 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:30,693 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:31,286 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:31,551 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:31,785 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:32,019 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:46,132 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:46,751 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:47,025 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:47,256 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:46:47,528 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-12 16:54:53,885 [AWT-EventQueue-0] ERROR MDBAction - java.lang.StringIndexOutOfBoundsException: String index out of range: 1
    2012-01-16 09:53:54,112 [main] INFO ApplicationView - Oracle SQL Developer Data Modeler 3.1.0.691

  • Older Remote Model A1018 doesn't work on 4th Gen Ipod

    Hello, I have a 4th Gen iPod and use a wired remote (model # A1018) and while I can hear the ipod, none of the buttons on the remote work anymore. The iPod has version 3.1.1 on it. Has anyone run into this or have any ideas to remedy?

    Not a hardware problem at all.  The existing headphones work... the earbuds are gertting a bit ragged thus I ordered new ones... 2 pair... and both do not work:
    http://www.ebay.com/itm/261053896227?ssPageName=STRK:MEWNX:IT&_trksid=p3984.m149 7.l2649
    They do however work in the iPhone 4s which indicates a compatibility issue.
    Didn't mean to infer anything nefarious... just to point out that emillang must be experiencing the same problem as I am.
    The only other solution I see is to buy a dongle or a case with integrated controls:
    http://www.amazon.com/iLuv-iEA15BLK-3rd-Party-Headphone-VoiceOver/dp/B002RL9WDQ/ ref=sr_1_1?ie=UTF8&qid=1344964837&sr=8-1&keywords=ipod+shuffle+remote
    http://www.amazon.com/Scosche-tapSTICK-Polycarbonate-Integrated-Controls/dp/B002 CVTU5Q/ref=sr_1_3?ie=UTF8&qid=1344964837&sr=8-3&keywords=ipod+shuffle+remote

  • DataTable binding doesn't work dependably

    hi all,
    i'm observing a strange behaviour on my JSF page. i use a dynamic datatable for displaying data. unfortunately the getter of the table isn't called (after the method call / rerender of the page) so the table stays emtpy. the bean providing the collection+design of the datatable works as expected as other pages also reffer to it and show the table correctly...
    Any hints welcome.

    Are you talking about the binding attribute or the value attribute of the table? Which getter isn't called? Some code would help, as noted above.

  • Mail sender adapter with Variable Transport Binding doesn't work

    Hi,
    we have PI/700 SP7.
    An external partner sends an email with one attachment (a simple csv file).
    I take "PayloadSwapBean" (with swap.keyName = payload-name) to get the attachment.
    Both, the Adapter-Specific Message Attributes indicator and the Variable Transport Binding indicator are set.
    I set the mail package format indicator too.
    What I need is the sender, receiver and subject of the mail plus the attachment.
    Unfortunately it is not possible to read in the email with this configuration - I get an error.
    If I unset the Variable Transport Binding indicator - I get the email but without "sender, receiver and subject" in "SHeaderFROM, SHeaderTO, SHeaderSubject". The "mail package" is overwritten by the attachment.
    Is it a problem of the namespace "http://sap.com/xi/XI/System/Mail"?
    Do I have to define this namespace or do I have to import a content (SAP BASE 700, SP7 is imported)?
    Please help...
    Regards
    Wolfgang

    Hi Wolfgang,
    I hope it is not due to the namespace.
    This might help you.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9e6c7911-0d01-0010-1aa3-8e1bb1551f05
    Need some Guide regarding Configuration of Sender Mail Adapters....
    Regards
    Agasthuri Doss
    Message was edited by: Agasthuri Doss Baladandapani

  • I have a iSight iMac model which doesn't work but it is not the HD.  How can I transfer the data on the HD to another computer or external HD after taking it out of the non-working computer?

    If I take the HD out of the computer, is there any hardware/software combination that will allow me to transfer the information on the HD to another computer or to another external HD?

    If it is not the HD, what part is not working?
    You can put the HD into an exclosure and transfer data via either Firewire or USB2

  • Why bind doesn' work?

    Hi, please help me to understand why bind doesn't work.
    Here is my code:
    /** Simple enum used in bean. */
    public enum CommandType {
        NOP, CREATE, UPDATE, DELETE, MOVE;
    /** just simple bean. */
    public class Command {
        private CommandType commandType;
        private Integer objectId;
        /** Getters and setters are here*/
        @Override
        public String toString(){
            return "Command{commandType=>"+commandType.name()+",objectId=>"+objectId+"}";
    * Enum for singleton pattern realization.
    * The idea: currentCommand is changed in single threaded environment. JavaFX is binded on this filed.
    public enum CommandPublisher {
        PUBLISHER;
        /** For generating random Integers. */
        private Random random = new Random();
        /** Trying to bind JavaFX on this field value. */
        public Command currentCommand = new Command(CommandType.NOP, -1);
        /** Getter... */
        public Command currentCommand(){
            return currentCommand;
        /** Set new value. */
        public void setCommand(Command newCommand){
            currentCommand = newCommand;
        /** Utility method. Just set new command to currentCommand. */
        public Command generateRandomCommand(){
            return new Command(CommandType.CREATE, random.nextInt());
        public void setNewRandomObjectId(){
            currentCommand.setObjectId(random.nextInt());
    /** JavaFX code*/
    /** on replace works only one: when CommandPublisher is initialized, javaFXcurrentCommand  gets new value,
    *   was: null, became: Command{commandType=>NOP,objectId=>-1}
    var javaFXcurrentCommand = bind CommandPublisher.PUBLISHER.currentCommand on replace oldValue{
       println("Bind? oldValue={oldValue}, newValue={javaFXcurrentCommand}");
    Stage {
        title: "JavaFX bind on Java object field. "
        scene: Scene {
            width: 250
            height: 80
            content: [
                Text {
                    font : Font {
                        size : 16
                    x: 10
                    y: 30
                    content: "Application content"
                Button {
                     text: "Change currentCommand through CommandPublisher"
                    onMouseClicked:
                    function(e: MouseEvent) {
                        println("Mouse clicked -> Change currentCommand through CommandPublisher");
                        /** JavaFX var realy gets new objectId though java object field. But "on replace"  doesn't work. */
                        //CommandPublisher.PUBLISHER.setNewRandomObjectId();
                        /** Tried to use these methods: nothing happens. */
                        //CommandPublisher.PUBLISHER.currentCommand = CommandPublisher.PUBLISHER.generateRandomCommand();
                        //CommandPublisher.PUBLISHER.setCommand(CommandPublisher.PUBLISHER.generateRandomCommand());
                        println("currentCommand -> {javaFXcurrentCommand}");
                        println("Mouse clicked ##");
    }Sample output:
    init:
    deps-jar:
    compile:
    jar:
    standard-run:
    Bind? oldValue=null, newValue=Command{commandType=>NOP,objectId=>-1}
    Mouse clicked -> Change currentCommand through CommandPublisher
    currentCommand -> Command{commandType=>NOP,objectId=>-1}
    javaFXcommand -> Command{commandType=>NOP,objectId=>-1}
    Mouse clicked ##
    Mouse clicked -> Change currentCommand through CommandPublisher
    currentCommand -> Command{commandType=>NOP,objectId=>-1}
    javaFXcommand -> Command{commandType=>NOP,objectId=>-1}
    Mouse clicked ##
    As you can see, "on replace" is fired only once: when Enum became initialized.
    mouse clicking doesn't force "on replace" to work.
    What do I do wrong?

    Hi, please help me to understand why bind doesn't work.
    Here is my code:
    /** Simple enum used in bean. */
    public enum CommandType {
        NOP, CREATE, UPDATE, DELETE, MOVE;
    /** just simple bean. */
    public class Command {
        private CommandType commandType;
        private Integer objectId;
        /** Getters and setters are here*/
        @Override
        public String toString(){
            return "Command{commandType=>"+commandType.name()+",objectId=>"+objectId+"}";
    * Enum for singleton pattern realization.
    * The idea: currentCommand is changed in single threaded environment. JavaFX is binded on this filed.
    public enum CommandPublisher {
        PUBLISHER;
        /** For generating random Integers. */
        private Random random = new Random();
        /** Trying to bind JavaFX on this field value. */
        public Command currentCommand = new Command(CommandType.NOP, -1);
        /** Getter... */
        public Command currentCommand(){
            return currentCommand;
        /** Set new value. */
        public void setCommand(Command newCommand){
            currentCommand = newCommand;
        /** Utility method. Just set new command to currentCommand. */
        public Command generateRandomCommand(){
            return new Command(CommandType.CREATE, random.nextInt());
        public void setNewRandomObjectId(){
            currentCommand.setObjectId(random.nextInt());
    /** JavaFX code*/
    /** on replace works only one: when CommandPublisher is initialized, javaFXcurrentCommand  gets new value,
    *   was: null, became: Command{commandType=>NOP,objectId=>-1}
    var javaFXcurrentCommand = bind CommandPublisher.PUBLISHER.currentCommand on replace oldValue{
       println("Bind? oldValue={oldValue}, newValue={javaFXcurrentCommand}");
    Stage {
        title: "JavaFX bind on Java object field. "
        scene: Scene {
            width: 250
            height: 80
            content: [
                Text {
                    font : Font {
                        size : 16
                    x: 10
                    y: 30
                    content: "Application content"
                Button {
                     text: "Change currentCommand through CommandPublisher"
                    onMouseClicked:
                    function(e: MouseEvent) {
                        println("Mouse clicked -> Change currentCommand through CommandPublisher");
                        /** JavaFX var realy gets new objectId though java object field. But "on replace"  doesn't work. */
                        //CommandPublisher.PUBLISHER.setNewRandomObjectId();
                        /** Tried to use these methods: nothing happens. */
                        //CommandPublisher.PUBLISHER.currentCommand = CommandPublisher.PUBLISHER.generateRandomCommand();
                        //CommandPublisher.PUBLISHER.setCommand(CommandPublisher.PUBLISHER.generateRandomCommand());
                        println("currentCommand -> {javaFXcurrentCommand}");
                        println("Mouse clicked ##");
    }Sample output:
    init:
    deps-jar:
    compile:
    jar:
    standard-run:
    Bind? oldValue=null, newValue=Command{commandType=>NOP,objectId=>-1}
    Mouse clicked -> Change currentCommand through CommandPublisher
    currentCommand -> Command{commandType=>NOP,objectId=>-1}
    javaFXcommand -> Command{commandType=>NOP,objectId=>-1}
    Mouse clicked ##
    Mouse clicked -> Change currentCommand through CommandPublisher
    currentCommand -> Command{commandType=>NOP,objectId=>-1}
    javaFXcommand -> Command{commandType=>NOP,objectId=>-1}
    Mouse clicked ##
    As you can see, "on replace" is fired only once: when Enum became initialized.
    mouse clicking doesn't force "on replace" to work.
    What do I do wrong?

  • Oracle.jbo.uicli.binding.JUCtrlActionBinding for method doesn't work

    I have a data control method called as listForums(). When i dropped this method on to a region it renders the data fine in af:selectOneChoice. But when the same method is dropped on to a simple jspx page it doesn't render the data.
    The difference in the console logs i see is that:
    In the case where it renders data it says:
    FINE: [103] DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding, for listForums
    But in the case where it doesn't render the data it says:
    FINE: [106] DCUtil, returning:oracle.jbo.uicli.binding.JUCtrlActionBinding, for listForums
    Can some one give me any tips on how to make this work on a simple jspx page?

    I have a test case with me.But I found out the issue. The problem is, in the old projects which we have created long time back, we never have migrated the web.xml file. Hence it was failing. I have migrated the web.xml now. So it started working fine. (Build JDEVADF_MAIN_GENERIC_070416.1022.4501).
    Thanx for the response.

  • I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.  I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion.

    I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.
    I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion. I now want to fix the underlying problem.
    I'm not running any weird background processes and in my energy saver settings I've tagged "put the hard disk to sleep when possible:, "allow power button to put computer to sleep" and "automatically reduce brigthness". All pretty standard.
    Is there anyone who can give me some pointers ?

    Today I solved the same problem for my iMac running Snow Leopard. See https://discussions.apple.com/thread/3008791#15947706. The method may help you, too.
    For me it was the DynDNS Updater preventing my iMac from automatically entering sleep mode.
    To my knowledge the cause of this sleep problem can only be a peripheral device or a process. So I suggest to first unplug all peripherals and test whether that's the cause. If not, I suggest to terminate one process after another and to test automatic entering of sleep mode after each. Start with user processes; continue with system process if necessary.
    At least that's the way I found the offending process. Fortunately, I was able to change the configuration of that process to allow again automatic entering of sleep mode.
    Good luck!

  • Access deep structures from tableView model binding

    Hi,
    I have a problem with accessing a deep structure component from a tableView control.
    The structure is defined like this:
    structure project_data
        main_data type structure
        data_table1 type table
        data_table2 type table
    end structure
    The deep structure project_data is an attribute of my model class.
    When I have a table attribute, it can directly be accessed by using table="//model/table_data" in the tableView.
    What do I have to write in my table attribute to access the deep structure directly via model binding.
    table="//model/project_data.table_data" doesn't work, it throws a bsp exception.
    Thanks in advance!

    So there is no direct way of doing this?
    But why does it work for textEdits like this: value="//model/project_data.main_data-description"
    What would I have to do in the interface methods to get it work, or is it simpler to just add the elements of the deep structure directly to my model class?

  • USB2 doesn't work. Only USB3 work.

    Hello,
    I've a new DELL vostro 3350 with 2 usb2 and one usb3/e-sata connector but only the last seem working, the other 2 port doesn't work like they doesn't exist.
    i post my dmesg and lsmod output
    dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (tobias@T-POWA-LX) (gcc version 4.6.0 20110603 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011
    [ 0.000000] Command line: root=/dev/sda3 ro i915.modeset=1
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d400 (usable)
    [ 0.000000] BIOS-e820: 000000000009d400 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
    [ 0.000000] BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
    [ 0.000000] BIOS-e820: 0000000020200000 - 0000000040000000 (usable)
    [ 0.000000] BIOS-e820: 0000000040000000 - 0000000040200000 (reserved)
    [ 0.000000] BIOS-e820: 0000000040200000 - 00000000ca4e4000 (usable)
    [ 0.000000] BIOS-e820: 00000000ca4e4000 - 00000000ca527000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000ca527000 - 00000000ca793000 (usable)
    [ 0.000000] BIOS-e820: 00000000ca793000 - 00000000ca967000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ca967000 - 00000000caba7000 (usable)
    [ 0.000000] BIOS-e820: 00000000caba7000 - 00000000cad68000 (reserved)
    [ 0.000000] BIOS-e820: 00000000cad68000 - 00000000cafad000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000cafad000 - 00000000cafbb000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000cafbb000 - 00000000cafe8000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000cafe8000 - 00000000cb000000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000cb800000 - 00000000cfa00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed04000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000012fe00000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.6 present.
    [ 0.000000] DMI: Dell Inc. Vostro 3350/0M516T, BIOS A03 03/31/2011
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x12fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F00000000 write-back
    [ 0.000000] 1 base 100000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0CB800000 mask FFF800000 uncachable
    [ 0.000000] 3 base 0CC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0D0000000 mask FF0000000 uncachable
    [ 0.000000] 5 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 6 base 12FE00000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 130000000 mask FF0000000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000cb800000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xcaba7 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fd220] fd220
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000caba7000
    [ 0.000000] 0000000000 - 00caa00000 page 2M
    [ 0.000000] 00caa00000 - 00caba7000 page 4k
    [ 0.000000] kernel direct mapping tables up to caba7000 @ caba1000-caba7000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000012fe00000
    [ 0.000000] 0100000000 - 012fe00000 page 2M
    [ 0.000000] kernel direct mapping tables up to 12fe00000 @ 12fdfa000-12fe00000
    [ 0.000000] RAMDISK: 1fdd9000 - 1fff0000
    [ 0.000000] ACPI: RSDP 00000000000f0410 00024 (v02 DELL)
    [ 0.000000] ACPI: XSDT 00000000cafad080 0007C (v01 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000cafb6cb8 000F4 (v04 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000cafad188 09B2D (v02 DELL WN09 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000cafe3f80 00040
    [ 0.000000] ACPI: APIC 00000000cafb6db0 00072 (v03 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000cafb6e28 0003C (v01 DELL WN09 01072009 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000cafb6e68 004B0 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
    [ 0.000000] ACPI: SLIC 00000000cafb7318 00176 (v01 DELL WN09 01072009 AMI 00010013)
    [ 0.000000] ACPI: HPET 00000000cafb7490 00038 (v01 DELL WN09 01072009 AMI. 00000004)
    [ 0.000000] ACPI: SSDT 00000000cafb74c8 00780 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000cafb7c48 00996 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000cafb85e0 00D80 (v01 SgRef SgTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000cafb9360 00DEC (v01 AmdRef AmdTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: OSFR 00000000cafba150 00086 (v01 DELL M08 07DB031F ASL 00000061)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000012fe00000
    [ 0.000000] NUMA: Using 63 for the hash shift.
    [ 0.000000] Initmem setup node 0 0000000000000000-000000012fe00000
    [ 0.000000] NODE_DATA [000000012fdfb000 - 000000012fdfffff]
    [ 0.000000] [ffffea0000000000-ffffea00043fffff] PMD -> [ffff88012b400000-ffff88012edfffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0012fe00
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[7] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009d
    [ 0.000000] 0: 0x00000100 -> 0x00020000
    [ 0.000000] 0: 0x00020200 -> 0x00040000
    [ 0.000000] 0: 0x00040200 -> 0x000ca4e4
    [ 0.000000] 0: 0x000ca527 -> 0x000ca793
    [ 0.000000] 0: 0x000ca967 -> 0x000caba7
    [ 0.000000] 0: 0x00100000 -> 0x0012fe00
    [ 0.000000] On node 0 totalpages: 1024797
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3920 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 810440 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2681 pages used for memmap
    [ 0.000000] Normal zone: 193415 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000ca4e4000 - 00000000ca527000
    [ 0.000000] PM: Registered nosave memory: 00000000ca793000 - 00000000ca967000
    [ 0.000000] PM: Registered nosave memory: 00000000caba7000 - 00000000cad68000
    [ 0.000000] PM: Registered nosave memory: 00000000cad68000 - 00000000cafad000
    [ 0.000000] PM: Registered nosave memory: 00000000cafad000 - 00000000cafbb000
    [ 0.000000] PM: Registered nosave memory: 00000000cafbb000 - 00000000cafe8000
    [ 0.000000] PM: Registered nosave memory: 00000000cafe8000 - 00000000cb000000
    [ 0.000000] PM: Registered nosave memory: 00000000cb000000 - 00000000cb800000
    [ 0.000000] PM: Registered nosave memory: 00000000cb800000 - 00000000cfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000cfa00000 - 00000000f8000000
    [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
    [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at cfa00000 (gap: cfa00000:28600000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88012fa00000 s83136 r8192 d23360 u524288
    [ 0.000000] pcpu-alloc: s83136 r8192 d23360 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1007775
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda3 ro i915.modeset=1
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3961444k/4978688k available (4022k kernel code, 879500k absent, 137744k reserved, 3332k data, 724k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 2294.660 MHz processor.
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4591.54 BogoMIPS (lpj=7648866)
    [ 0.000127] pid_max: default: 32768 minimum: 301
    [ 0.000293] Security Framework initialized
    [ 0.000355] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000789] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001939] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.002450] Mount-cache hash table entries: 256
    [ 0.002819] Initializing cgroup subsys ns
    [ 0.002880] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.002961] Initializing cgroup subsys cpuacct
    [ 0.003045] Initializing cgroup subsys memory
    [ 0.003117] Initializing cgroup subsys devices
    [ 0.003176] Initializing cgroup subsys freezer
    [ 0.003236] Initializing cgroup subsys net_cls
    [ 0.003296] Initializing cgroup subsys blkio
    [ 0.003400] CPU: Physical Processor ID: 0
    [ 0.003459] CPU: Processor Core ID: 0
    [ 0.003519] mce: CPU supports 7 MCE banks
    [ 0.003589] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003657] using mwait in idle threads.
    [ 0.004857] ACPI: Core revision 20110316
    [ 0.024638] ftrace: allocating 15966 entries in 63 pages
    [ 0.031279] Setting APIC routing to flat
    [ 0.031683] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.064728] CPU0: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz stepping 07
    [ 0.171080] Performance Events: PEBS fmt1+, SandyBridge events, Intel PMU driver.
    [ 0.171280] ... version: 3
    [ 0.171338] ... bit width: 48
    [ 0.171396] ... generic registers: 4
    [ 0.171455] ... value mask: 0000ffffffffffff
    [ 0.172009] ... max period: 000000007fffffff
    [ 0.172070] ... fixed-purpose events: 3
    [ 0.172129] ... event mask: 000000070000000f
    [ 0.191201] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.217746] Booting Node 0, Processors #1
    [ 0.217864] smpboot cpu 1: start_ip = 98000
    [ 0.331068] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.351025] #2
    [ 0.351082] smpboot cpu 2: start_ip = 98000
    [ 0.464414] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.484280] #3 Ok.
    [ 0.484367] smpboot cpu 3: start_ip = 98000
    [ 0.597618] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.604180] Brought up 4 CPUs
    [ 0.604263] Total of 4 processors activated (18364.30 BogoMIPS).
    [ 0.606823] devtmpfs: initialized
    [ 0.607640] PM: Registering ACPI NVS region at ca4e4000 (274432 bytes)
    [ 0.607709] PM: Registering ACPI NVS region at cad68000 (2379776 bytes)
    [ 0.607806] PM: Registering ACPI NVS region at cafbb000 (184320 bytes)
    [ 0.608599] print_constraints: dummy:
    [ 0.608720] NET: Registered protocol family 16
    [ 0.608864] ACPI: bus type pci registered
    [ 0.609044] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.609125] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.625218] PCI: Using configuration type 1 for base access
    [ 0.625687] bio: create slab <bio-0> at 0
    [ 0.627372] ACPI: EC: Look up EC in DSDT
    [ 0.628909] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.633287] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.648342] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.648773] ACPI: SSDT 00000000cad51698 0064F (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.649322] ACPI: Dynamic OEM Table Load:
    [ 0.649460] ACPI: SSDT (null) 0064F (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.664427] ACPI: SSDT 00000000cad52a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.665002] ACPI: Dynamic OEM Table Load:
    [ 0.665142] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.674299] ACPI: SSDT 00000000cad50d98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.674841] ACPI: Dynamic OEM Table Load:
    [ 0.674979] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.684679] ACPI: Interpreter enabled
    [ 0.684739] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.685017] ACPI: Using IOAPIC for interrupt routing
    [ 0.724350] ACPI: No dock devices found.
    [ 0.724410] HEST: Table not found.
    [ 0.724469] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.724811] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.725249] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.725314] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.725377] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.725455] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [ 0.725531] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [ 0.725607] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [ 0.725684] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    [ 0.725761] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    [ 0.725838] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    [ 0.725915] pci_root PNP0A08:00: host bridge window [mem 0xcfa00000-0xfeafffff]
    [ 0.725991] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
    [ 0.726076] pci 0000:00:00.0: [8086:0104] type 0 class 0x000600
    [ 0.726109] pci 0000:00:01.0: [8086:0101] type 1 class 0x000604
    [ 0.726133] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.726135] pci 0000:00:01.0: PME# disabled
    [ 0.726153] pci 0000:00:02.0: [8086:0116] type 0 class 0x000300
    [ 0.726163] pci 0000:00:02.0: reg 10: [mem 0xf6400000-0xf67fffff 64bit]
    [ 0.726169] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.726174] pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f]
    [ 0.726223] pci 0000:00:16.0: [8086:1c3a] type 0 class 0x000780
    [ 0.726248] pci 0000:00:16.0: reg 10: [mem 0xf7c0a000-0xf7c0a00f 64bit]
    [ 0.726310] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.726314] pci 0000:00:16.0: PME# disabled
    [ 0.726348] pci 0000:00:1a.0: [8086:1c2d] type 0 class 0x000c03
    [ 0.726369] pci 0000:00:1a.0: reg 10: [mem 0xf7c08000-0xf7c083ff]
    [ 0.726443] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.726447] pci 0000:00:1a.0: PME# disabled
    [ 0.726472] pci 0000:00:1b.0: [8086:1c20] type 0 class 0x000403
    [ 0.726487] pci 0000:00:1b.0: reg 10: [mem 0xf7c00000-0xf7c03fff 64bit]
    [ 0.726542] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.726546] pci 0000:00:1b.0: PME# disabled
    [ 0.726567] pci 0000:00:1c.0: [8086:1c10] type 1 class 0x000604
    [ 0.726630] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.726634] pci 0000:00:1c.0: PME# disabled
    [ 0.726657] pci 0000:00:1c.1: [8086:1c12] type 1 class 0x000604
    [ 0.726720] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.726724] pci 0000:00:1c.1: PME# disabled
    [ 0.726748] pci 0000:00:1c.3: [8086:1c16] type 1 class 0x000604
    [ 0.726810] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.726814] pci 0000:00:1c.3: PME# disabled
    [ 0.726837] pci 0000:00:1c.4: [8086:1c18] type 1 class 0x000604
    [ 0.726899] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.726904] pci 0000:00:1c.4: PME# disabled
    [ 0.726928] pci 0000:00:1c.7: [8086:1c1e] type 1 class 0x000604
    [ 0.726990] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
    [ 0.726994] pci 0000:00:1c.7: PME# disabled
    [ 0.727021] pci 0000:00:1d.0: [8086:1c26] type 0 class 0x000c03
    [ 0.727043] pci 0000:00:1d.0: reg 10: [mem 0xf7c07000-0xf7c073ff]
    [ 0.727116] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.727120] pci 0000:00:1d.0: PME# disabled
    [ 0.727146] pci 0000:00:1f.0: [8086:1c4b] type 0 class 0x000601
    [ 0.727261] pci 0000:00:1f.2: [8086:1c03] type 0 class 0x000106
    [ 0.727280] pci 0000:00:1f.2: reg 10: [io 0xf0b0-0xf0b7]
    [ 0.727288] pci 0000:00:1f.2: reg 14: [io 0xf0a0-0xf0a3]
    [ 0.727297] pci 0000:00:1f.2: reg 18: [io 0xf090-0xf097]
    [ 0.727305] pci 0000:00:1f.2: reg 1c: [io 0xf080-0xf083]
    [ 0.727313] pci 0000:00:1f.2: reg 20: [io 0xf060-0xf07f]
    [ 0.727322] pci 0000:00:1f.2: reg 24: [mem 0xf7c06000-0xf7c067ff]
    [ 0.727355] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.727359] pci 0000:00:1f.2: PME# disabled
    [ 0.727377] pci 0000:00:1f.3: [8086:1c22] type 0 class 0x000c05
    [ 0.727394] pci 0000:00:1f.3: reg 10: [mem 0xf7c05000-0xf7c050ff 64bit]
    [ 0.727416] pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f]
    [ 0.727477] pci 0000:01:00.0: [1002:6760] type 0 class 0x000300
    [ 0.727489] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.727499] pci 0000:01:00.0: reg 18: [mem 0xf7b20000-0xf7b3ffff 64bit]
    [ 0.727506] pci 0000:01:00.0: reg 20: [io 0xe000-0xe0ff]
    [ 0.727518] pci 0000:01:00.0: reg 30: [mem 0xf7b00000-0xf7b1ffff pref]
    [ 0.727534] pci 0000:01:00.0: supports D1 D2
    [ 0.734119] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.734209] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.734225] pci 0000:00:01.0: bridge window [mem 0xf7b00000-0xf7bfffff]
    [ 0.734228] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.734275] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
    [ 0.734338] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.734343] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.734350] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.734416] pci 0000:05:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.734436] pci 0000:05:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 0.734471] pci 0000:05:00.0: reg 18: [mem 0xf1104000-0xf1104fff 64bit pref]
    [ 0.734493] pci 0000:05:00.0: reg 20: [mem 0xf1100000-0xf1103fff 64bit pref]
    [ 0.734554] pci 0000:05:00.0: supports D1 D2
    [ 0.734556] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.734562] pci 0000:05:00.0: PME# disabled
    [ 0.740790] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
    [ 0.740889] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
    [ 0.740894] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.740900] pci 0000:00:1c.1: bridge window [mem 0xf1100000-0xf11fffff 64bit pref]
    [ 0.740969] pci 0000:09:00.0: [168c:002b] type 0 class 0x000280
    [ 0.740996] pci 0000:09:00.0: reg 10: [mem 0xf7a00000-0xf7a0ffff 64bit]
    [ 0.741100] pci 0000:09:00.0: supports D1
    [ 0.741102] pci 0000:09:00.0: PME# supported from D0 D1 D3hot
    [ 0.741107] pci 0000:09:00.0: PME# disabled
    [ 0.747449] pci 0000:00:1c.3: PCI bridge to [bus 09-0a]
    [ 0.747550] pci 0000:00:1c.3: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.747555] pci 0000:00:1c.3: bridge window [mem 0xf7a00000-0xf7afffff]
    [ 0.747561] pci 0000:00:1c.3: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.747631] pci 0000:0b:00.0: [1033:0194] type 0 class 0x000c03
    [ 0.747658] pci 0000:0b:00.0: reg 10: [mem 0xf7900000-0xf7901fff 64bit]
    [ 0.747765] pci 0000:0b:00.0: PME# supported from D0 D3hot D3cold
    [ 0.747771] pci 0000:0b:00.0: PME# disabled
    [ 0.754114] pci 0000:00:1c.4: PCI bridge to [bus 0b-0c]
    [ 0.754215] pci 0000:00:1c.4: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.754219] pci 0000:00:1c.4: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.754226] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.754273] pci 0000:00:1c.7: PCI bridge to [bus 11-1f]
    [ 0.754334] pci 0000:00:1c.7: bridge window [io 0xb000-0xcfff]
    [ 0.754338] pci 0000:00:1c.7: bridge window [mem 0xf6800000-0xf78fffff]
    [ 0.754345] pci 0000:00:1c.7: bridge window [mem 0xf0000000-0xf10fffff 64bit pref]
    [ 0.754373] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.754485] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.754515] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.754544] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    [ 0.754572] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    [ 0.754603] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP08._PRT]
    [ 0.754630] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
    [ 0.754745] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.754970] pci0000:00: ACPI _OSC control (0x19) granted
    [ 0.758671] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.759208] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.759739] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.760272] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.760810] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.761438] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.762065] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.762595] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 0.763156] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.763241] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.763320] vgaarb: loaded
    [ 0.763439] PCI: Using ACPI for IRQ routing
    [ 0.763498] PCI: pci_cache_line_size set to 64 bytes
    [ 0.763581] reserve RAM buffer: 000000000009d400 - 000000000009ffff
    [ 0.763583] reserve RAM buffer: 00000000ca4e4000 - 00000000cbffffff
    [ 0.763586] reserve RAM buffer: 00000000ca793000 - 00000000cbffffff
    [ 0.763588] reserve RAM buffer: 00000000caba7000 - 00000000cbffffff
    [ 0.763591] reserve RAM buffer: 000000012fe00000 - 000000012fffffff
    [ 0.763684] NetLabel: Initializing
    [ 0.763742] NetLabel: domain hash size = 128
    [ 0.763801] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.763872] NetLabel: unlabeled traffic allowed by default
    [ 0.763950] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.764373] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.766445] Switching to clocksource hpet
    [ 0.767420] Switched to NOHz mode on CPU #0
    [ 0.767480] Switched to NOHz mode on CPU #1
    [ 0.767515] Switched to NOHz mode on CPU #3
    [ 0.767570] Switched to NOHz mode on CPU #2
    [ 0.771493] pnp: PnP ACPI init
    [ 0.771565] ACPI: bus type pnp registered
    [ 0.771848] pnp 00:00: [bus 00-3e]
    [ 0.771850] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.771852] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.771854] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.771856] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.771857] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.771859] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.771861] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.771862] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.771864] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.771866] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.771867] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.771869] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.771871] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.771872] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.771874] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.771876] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.771877] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.771879] pnp 00:00: [mem 0xcfa00000-0xfeafffff window]
    [ 0.771881] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 0.771949] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.771960] pnp 00:01: [io 0x0000-0x001f]
    [ 0.771964] pnp 00:01: [io 0x0081-0x0091]
    [ 0.771965] pnp 00:01: [io 0x0093-0x009f]
    [ 0.771966] pnp 00:01: [io 0x00c0-0x00df]
    [ 0.771968] pnp 00:01: [dma 4]
    [ 0.771988] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.771995] pnp 00:02: [mem 0xff000000-0xffffffff]
    [ 0.772013] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.772081] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.772101] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.772112] pnp 00:04: [io 0x002e-0x002f]
    [ 0.772113] pnp 00:04: [io 0x004e-0x004f]
    [ 0.772114] pnp 00:04: [io 0x0061]
    [ 0.772116] pnp 00:04: [io 0x0063]
    [ 0.772117] pnp 00:04: [io 0x0065]
    [ 0.772118] pnp 00:04: [io 0x0067]
    [ 0.772120] pnp 00:04: [io 0x0070]
    [ 0.772121] pnp 00:04: [io 0x0080]
    [ 0.772122] pnp 00:04: [io 0x0092]
    [ 0.772124] pnp 00:04: [io 0x00b2-0x00b3]
    [ 0.772125] pnp 00:04: [io 0x0680-0x069f]
    [ 0.772126] pnp 00:04: [io 0x1000-0x100f]
    [ 0.772128] pnp 00:04: [io 0xffff]
    [ 0.772129] pnp 00:04: [io 0xffff]
    [ 0.772130] pnp 00:04: [io 0x0400-0x0453]
    [ 0.772132] pnp 00:04: [io 0x0458-0x047f]
    [ 0.772133] pnp 00:04: [io 0x0500-0x057f]
    [ 0.772135] pnp 00:04: [io 0x164e-0x164f]
    [ 0.772177] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.772240] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.772302] system 00:04: [io 0xffff] has been reserved
    [ 0.772363] system 00:04: [io 0xffff] has been reserved
    [ 0.772425] system 00:04: [io 0x0400-0x0453] has been reserved
    [ 0.772487] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.772550] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.772613] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.772676] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.772685] pnp 00:05: [io 0x0070-0x0077]
    [ 0.772694] pnp 00:05: [irq 8]
    [ 0.772711] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.772733] pnp 00:06: [io 0x0454-0x0457]
    [ 0.772764] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.772827] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.772834] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.772839] pnp 00:07: [irq 13]
    [ 0.772857] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.772870] pnp 00:08: [io 0x0010-0x001f]
    [ 0.772871] pnp 00:08: [io 0x0022-0x003f]
    [ 0.772873] pnp 00:08: [io 0x0044-0x005f]
    [ 0.772874] pnp 00:08: [io 0x0068-0x006f]
    [ 0.772875] pnp 00:08: [io 0x0072-0x007f]
    [ 0.772877] pnp 00:08: [io 0x0080]
    [ 0.772878] pnp 00:08: [io 0x0084-0x0086]
    [ 0.772880] pnp 00:08: [io 0x0088]
    [ 0.772881] pnp 00:08: [io 0x008c-0x008e]
    [ 0.772882] pnp 00:08: [io 0x0090-0x009f]
    [ 0.772884] pnp 00:08: [io 0x00a2-0x00bf]
    [ 0.772885] pnp 00:08: [io 0x00e0-0x00ef]
    [ 0.772886] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.772888] pnp 00:08: [mem 0xfe800000-0xfe802fff]
    [ 0.772924] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.772988] system 00:08: [mem 0xfe800000-0xfe802fff] has been reserved
    [ 0.773052] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.773068] pnp 00:09: [irq 12]
    [ 0.773089] pnp 00:09: Plug and Play ACPI device, IDs DLL04b2 SYN0600 SYN0002 PNP0f13 (active)
    [ 0.773101] pnp 00:0a: [io 0x0060]
    [ 0.773102] pnp 00:0a: [io 0x0064]
    [ 0.773103] pnp 00:0a: [io 0x0062]
    [ 0.773105] pnp 00:0a: [io 0x0066]
    [ 0.773109] pnp 00:0a: [irq 1]
    [ 0.773128] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.773371] pnp 00:0b: [mem 0xfed1c000-0xfed1ffff]
    [ 0.773373] pnp 00:0b: [mem 0xfed10000-0xfed17fff]
    [ 0.773374] pnp 00:0b: [mem 0xfed18000-0xfed18fff]
    [ 0.773376] pnp 00:0b: [mem 0xfed19000-0xfed19fff]
    [ 0.773377] pnp 00:0b: [mem 0xf8000000-0xfbffffff]
    [ 0.773379] pnp 00:0b: [mem 0xfed20000-0xfed3ffff]
    [ 0.773380] pnp 00:0b: [mem 0xfed90000-0xfed93fff]
    [ 0.773382] pnp 00:0b: [mem 0xfed45000-0xfed8ffff]
    [ 0.773383] pnp 00:0b: [mem 0xff000000-0xffffffff]
    [ 0.773385] pnp 00:0b: [mem 0xfee00000-0xfeefffff]
    [ 0.773386] pnp 00:0b: [mem 0xcfa00000-0xcfa00fff]
    [ 0.773435] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.773500] system 00:0b: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.773564] system 00:0b: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.773628] system 00:0b: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.773692] system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.773756] system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.773820] system 00:0b: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.773884] system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.773947] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.774011] system 00:0b: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.774076] system 00:0b: [mem 0xcfa00000-0xcfa00fff] has been reserved
    [ 0.774140] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.774195] pnp 00:0c: [irq 20]
    [ 0.774232] pnp 00:0c: Plug and Play ACPI device, IDs SMO8800 (active)
    [ 0.774325] pnp 00:0d: [mem 0x20000000-0x201fffff]
    [ 0.774327] pnp 00:0d: [mem 0x40000000-0x401fffff]
    [ 0.774375] system 00:0d: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.774440] system 00:0d: [mem 0x40000000-0x401fffff] has been reserved
    [ 0.774504] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.774546] pnp: PnP ACPI: found 14 devices
    [ 0.774604] ACPI: ACPI bus type pnp unregistered
    [ 0.780392] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.780455] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.780519] pci 0000:00:01.0: bridge window [mem 0xf7b00000-0xf7bfffff]
    [ 0.780584] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.780663] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
    [ 0.780724] pci 0000:00:1c.0: bridge window [io disabled]
    [ 0.780790] pci 0000:00:1c.0: bridge window [mem disabled]
    [ 0.780854] pci 0000:00:1c.0: bridge window [mem pref disabled]
    [ 0.780921] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
    [ 0.780983] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
    [ 0.781049] pci 0000:00:1c.1: bridge window [mem disabled]
    [ 0.781112] pci 0000:00:1c.1: bridge window [mem 0xf1100000-0xf11fffff 64bit pref]
    [ 0.781193] pci 0000:00:1c.3: PCI bridge to [bus 09-0a]
    [ 0.781254] pci 0000:00:1c.3: bridge window [io disabled]
    [ 0.781318] pci 0000:00:1c.3: bridge window [mem 0xf7a00000-0xf7afffff]
    [ 0.781383] pci 0000:00:1c.3: bridge window [mem pref disabled]
    [ 0.781450] pci 0000:00:1c.4: PCI bridge to [bus 0b-0c]
    [ 0.781511] pci 0000:00:1c.4: bridge window [io disabled]
    [ 0.781575] pci 0000:00:1c.4: bridge window [mem 0xf7900000-0xf79fffff]
    [ 0.781641] pci 0000:00:1c.4: bridge window [mem pref disabled]
    [ 0.781707] pci 0000:00:1c.7: PCI bridge to [bus 11-1f]
    [ 0.781770] pci 0000:00:1c.7: bridge window [io 0xb000-0xcfff]
    [ 0.781836] pci 0000:00:1c.7: bridge window [mem 0xf6800000-0xf78fffff]
    [ 0.781902] pci 0000:00:1c.7: bridge window [mem 0xf0000000-0xf10fffff 64bit pref]
    [ 0.781990] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.782056] pci 0000:00:01.0: setting latency timer to 64
    [ 0.782062] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.782129] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.782138] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.782205] pci 0000:00:1c.1: setting latency timer to 64
    [ 0.782213] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 0.782280] pci 0000:00:1c.3: setting latency timer to 64
    [ 0.782287] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.782353] pci 0000:00:1c.4: setting latency timer to 64
    [ 0.782360] pci 0000:00:1c.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 0.782427] pci 0000:00:1c.7: setting latency timer to 64
    [ 0.782431] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.782433] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.782435] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.782437] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.782438] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.782440] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.782442] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.782444] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.782446] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.782447] pci_bus 0000:00: resource 13 [mem 0xcfa00000-0xfeafffff]
    [ 0.782449] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
    [ 0.782451] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.782453] pci_bus 0000:01: resource 1 [mem 0xf7b00000-0xf7bfffff]
    [ 0.782455] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.782457] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff]
    [ 0.782459] pci_bus 0000:05: resource 2 [mem 0xf1100000-0xf11fffff 64bit pref]
    [ 0.782461] pci_bus 0000:09: resource 1 [mem 0xf7a00000-0xf7afffff]
    [ 0.782463] pci_bus 0000:0b: resource 1 [mem 0xf7900000-0xf79fffff]
    [ 0.782464] pci_bus 0000:11: resource 0 [io 0xb000-0xcfff]
    [ 0.782466] pci_bus 0000:11: resource 1 [mem 0xf6800000-0xf78fffff]
    [ 0.782468] pci_bus 0000:11: resource 2 [mem 0xf0000000-0xf10fffff 64bit pref]
    [ 0.782519] NET: Registered protocol family 2
    [ 0.782742] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.783721] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.785537] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.785819] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.785882] TCP reno registered
    [ 0.785948] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.786030] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.786293] NET: Registered protocol family 1
    [ 0.786364] pci 0000:00:02.0: Boot video device
    [ 1.026530] PCI: CLS 64 bytes, default 64
    [ 1.026583] Unpacking initramfs...
    [ 1.052516] Freeing initrd memory: 2140k freed
    [ 1.052823] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.053405] Placing 64MB software IO TLB between ffff8800c64e4000 - ffff8800ca4e4000
    [ 1.053483] software IO TLB at phys 0xc64e4000 - 0xca4e4000
    [ 1.053931] audit: initializing netlink socket (disabled)
    [ 1.054000] type=2000 audit(1308651601.879:1): initialized
    [ 1.054346] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.056030] VFS: Disk quotas dquot_6.5.2
    [ 1.056196] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.056389] msgmni has been set to 7741
    [ 1.056635] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 1.056739] io scheduler noop registered
    [ 1.056797] io scheduler deadline registered
    [ 1.056892] io scheduler cfq registered (default)
    [ 1.057032] pcieport 0000:00:01.0: setting latency timer to 64
    [ 1.057054] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 1.057268] pcieport 0000:00:1c.7: setting latency timer to 64
    [ 1.057307] pcieport 0000:00:1c.7: irq 41 for MSI/MSI-X
    [ 1.057431] intel_idle: MWAIT substates: 0x21120
    [ 1.057433] intel_idle: v0.4 model 0x2A
    [ 1.057434] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.057461] ERST: Table is not found!
    [ 1.057557] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.266719] Linux agpgart interface v0.103
    [ 1.266862] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2] at 0x60,0x64 irq 1,12
    [ 1.269212] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.269296] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.269419] mousedev: PS/2 mouse device common for all mice
    [ 1.269528] rtc_cmos 00:05: RTC can wake from S4
    [ 1.284791] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.293093] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 1.293182] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 1.293354] cpuidle: using governor ladder
    [ 1.293571] cpuidle: using governor menu
    [ 1.293785] TCP cubic registered
    [ 1.293844] NET: Registered protocol family 17
    [ 1.293908] Registering the dns_resolver key type
    [ 1.294036] PM: Hibernation image not present or could not be loaded.
    [ 1.294040] registered taskstats version 1
    [ 1.294561] rtc_cmos 00:05: setting system clock to 2011-06-21 10:20:02 UTC (1308651602)
    [ 1.294687] Initializing network drop monitor service
    [ 1.295830] Freeing unused kernel memory: 724k freed
    [ 1.295985] Write protecting the kernel read-only data: 6144k
    [ 1.296375] Freeing unused kernel memory: 56k freed
    [ 1.298607] Freeing unused kernel memory: 784k freed
    [ 1.309289] udevd[64]: starting version 171
    [ 1.317907] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 1.319573] ACPI: Lid Switch [LID0]
    [ 1.319713] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 1.319808] ACPI: Power Button [PWRB]
    [ 1.319943] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 1.320032] ACPI: Sleep Button [SBTN]
    [ 1.320141] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 1.320228] ACPI: Power Button [PWRF]
    [ 1.322302] agpgart-intel 0000:00:00.0: Intel Sandybridge Chipset
    [ 1.322543] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 1.323981] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
    [ 1.324161] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 1.338537] [drm] Initialized drm 1.1.0 20060810
    [ 1.360660] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.360730] i915 0000:00:02.0: setting latency timer to 64
    [ 1.436179] mtrr: type mismatch for d0000000,10000000 old: write-back new: write-combining
    [ 1.436265] [drm] MTRR allocation failed. Graphics performance may suffer.
    [ 1.436500] i915 0000:00:02.0: irq 42 for MSI/MSI-X
    [ 1.436506] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.436582] [drm] Driver supports precise vblank timestamp query.
    [ 1.599840] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 1.599928] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
    [ 1.663397] fbcon: inteldrmfb (fb0) is primary device
    [ 1.827767] Console: switching to colour frame buffer device 170x48
    [ 1.830045] fb0: inteldrmfb frame buffer device
    [ 1.830065] drm: registered panic notifier
    [ 1.830272] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 1.847065] acpi device:1c: registered as cooling_device0
    [ 1.847361] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:1a/LNXVIDEO:00/input/input5
    [ 1.847421] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
    [ 1.848207] acpi device:3b: registered as cooling_device1
    [ 1.848467] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input6
    [ 1.848506] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 1.848632] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.910964] SCSI subsystem initialized
    [ 1.926419] libata version 3.00 loaded.
    [ 1.932261] ahci 0000:00:1f.2: version 3.0
    [ 1.932273] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 1.932370] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 1.932400] ahci: SSS flag set, parallel bus scan disabled
    [ 1.942750] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x31 impl SATA mode
    [ 1.942802] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst
    [ 1.942841] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.956534] scsi0 : ahci
    [ 1.956646] scsi1 : ahci
    [ 1.956733] scsi2 : ahci
    [ 1.956821] scsi3 : ahci
    [ 1.956915] scsi4 : ahci
    [ 1.957050] scsi5 : ahci
    [ 1.957355] ata1: SATA max UDMA/133 abar m2048@0xf7c06000 port 0xf7c06100 irq 43
    [ 1.958295] ata2: DUMMY
    [ 1.959215] ata3: DUMMY
    [ 1.960138] ata4: DUMMY
    [ 1.961034] ata5: SATA max UDMA/133 abar m2048@0xf7c06000 port 0xf7c06300 irq 43
    [ 1.961953] ata6: SATA max UDMA/133 abar m2048@0xf7c06000 port 0xf7c06380 irq 43
    [ 2.055997] Refined TSC clocksource calibration: 2294.783 MHz.
    [ 2.056953] Switching to clocksource tsc
    [ 2.282559] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.287654] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    [ 2.326394] ata1.00: ATA-8: ST9500420AS, D005SDM1, max UDMA/133
    [ 2.327371] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 2.333430] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    [ 2.334802] ata1.00: configured for UDMA/133
    [ 2.342689] scsi 0:0:0:0: Direct-Access ATA ST9500420AS D005 PQ: 0 ANSI: 5
    [ 2.662362] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.676672] ata5.00: ATAPI: TSSTcorp DVD+/-RW TS-U633J, D400, max UDMA/100
    [ 2.691837] ata5.00: configured for UDMA/100
    [ 2.705245] scsi 4:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-U633J D400 PQ: 0 ANSI: 5
    [ 3.025502] ata6: SATA link down (SStatus 0 SControl 300)
    [ 3.034151] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 3.035218] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.036216] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.036243] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.041650] sda: sda1 sda2 sda3 sda4
    [ 3.042959] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.050652] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.051681] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.052815] sr 4:0:0:0: Attached scsi CD-ROM sr0
    [ 3.616479] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.358231] udevd[268]: starting version 171
    [ 5.694585] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 5.694704] ACPI: AC Adapter [AC] (off-line)
    [ 5.715255] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 5.758731] ACPI: acpi_idle yielding to intel_idle
    [ 5.767735] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 5.767742] ACPI: Battery Slot [BAT0] (battery present)
    [ 5.780221] wmi: Mapper loaded
    [ 5.794769] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.794772] ACPI: Thermal Zone [THM] (45 C)
    [ 5.858154] iTCO_vendor_support: vendor-support=0
    [ 5.859958] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 5.872739] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 5.872767] r8169 0000:05:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 5.872824] r8169 0000:05:00.0: setting latency timer to 64
    [ 5.872831] r8169 0000:05:00.0: (unregistered net_device): unknown MAC, using family default
    [ 5.872895] r8169 0000:05:00.0: irq 44 for MSI/MSI-X
    [ 5.873083] r8169 0000:05:00.0: eth0: RTL8168b/8111b at 0xffffc900051fc000, 18:03:73:57:1d:5f, XID 0c200000 IRQ 44
    [ 5.925164] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 5.925290] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 5.925394] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 5.998203] cfg80211: Calling CRDA to update world regulatory domain
    [ 6.069340] input: Dell WMI hotkeys as /devices/virtual/input/input7
    [ 6.069943] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 6.071237] [drm] radeon defaulting to kernel modesetting.
    [ 6.071240] [drm] radeon kernel modesetting enabled.
    [ 6.071253] VGA switcheroo: detected switching method \_SB_.PCI0.GFX0.ATPX handle
    [ 6.071290] radeon 0000:01:00.0: enabling device (0000 -> 0003)
    [ 6.071297] radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 6.071302] radeon 0000:01:00.0: setting latency timer to 64
    [ 6.071448] [drm] initializing kernel modesetting (CAICOS 0x1002:0x6760).
    [ 6.071526] [drm] register mmio base: 0xF7B20000
    [ 6.071528] [drm] register mmio size: 131072
    [ 6.071529] vga_switcheroo: enabled
    [ 6.071599] radeon atpx: version is 1
    [ 6.081723] fuse init (API version 7.16)
    [ 6.135312] usbcore: registered new interface driver usbfs
    [ 6.135338] usbcore: registered new interface driver hub
    [ 6.135406] usbcore: registered new device driver usb
    [ 6.373847] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 6.374025] sr 4:0:0:0: Attached scsi generic sg1 type 5
    [ 6.378917] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 6.378972] HDA Intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 6.378996] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 6.402772] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 6.429808] xhci_hcd 0000:0b:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 6.429840] xhci_hcd 0000:0b:00.0: setting latency timer to 64
    [ 6.429844] xhci_hcd 0000:0b:00.0: xHCI Host Controller
    [ 6.429862] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 1
    [ 6.443854] xhci_hcd 0000:0b:00.0: irq 16, io mem 0xf7900000
    [ 6.443923] xhci_hcd 0000:0b:00.0: irq 46 for MSI/MSI-X
    [ 6.443925] xhci_hcd 0000:0b:00.0: irq 47 for MSI/MSI-X
    [ 6.443928] xhci_hcd 0000:0b:00.0: irq 48 for MSI/MSI-X
    [ 6.443930] xhci_hcd 0000:0b:00.0: irq 49 for MSI/MSI-X
    [ 6.443933] xhci_hcd 0000:0b:00.0: irq 50 for MSI/MSI-X
    [ 6.444107] xHCI xhci_add_endpoint called for root hub
    [ 6.444109] xHCI xhci_check_bandwidth called for root hub
    [ 6.444133] hub 1-0:1.0: USB hub found
    [ 6.444140] hub 1-0:1.0: 2 ports detected
    [ 6.444194] xhci_hcd 0000:0b:00.0: xHCI Host Controller
    [ 6.444199] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 2
    [ 6.457136] xHCI xhci_add_endpoint called for root hub
    [ 6.457137] xHCI xhci_check_bandwidth called for root hub
    [ 6.457162] hub 2-0:1.0: USB hub found
    [ 6.457169] hub 2-0:1.0: 2 ports detected
    [ 6.550569] ath9k 0000:09:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 6.550582] ath9k 0000:09:00.0: setting latency timer to 64
    [ 6.600926] ath: EEPROM regdomain: 0x60
    [ 6.600928] ath: EEPROM indicates we should expect a direct regpair map
    [ 6.600930] ath: Country alpha2 being used: 00
    [ 6.600931] ath: Regpair used: 0x60
    [ 6.662088] acpi_call: Module loaded successfully
    [ 6.755786] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
    [ 6.755983] Registered led device: ath9k-phy0
    [ 6.755988] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90005480000, irq=19
    [ 6.966392] vboxdrv: Found 4 processor cores.
    [ 6.966438] VBoxDrv: dbg - g_abExecMemory=ffffffffa0552360
    [ 6.966472] vboxdrv: fAsync=0 offMin=0x14d offMax=0xc0f
    [ 6.966518] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 6.966521] vboxdrv: Successfully loaded version 4.0.8_OSE (interface 0x00180000).
    [ 6.969318] Synaptics Touchpad, model: 1, fw: 7.5, id: 0x1c0b1, caps: 0xd00033/0x240000/0x8a0400
    [ 7.000652] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
    [ 7.002421] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input10
    [ 7.060620] input: HDA Intel PCH Mic at Ext Right Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 7.060675] input: HDA Intel PCH HP Out at Ext Right Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 7.060852] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 7.060881] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 7.060886] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 7.060896] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 7.096845] ehci_hcd 0000:00:1a.0: debug port 2
    [ 7.100718] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 7.100729] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf7c08000
    [ 7.113384] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 7.113584] hub 3-0:1.0: USB hub found
    [ 7.113588] hub 3-0:1.0: 2 ports detected
    [ 7.113864] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 7.113895] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 7.113898] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 7.113907] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 7.146801] ehci_hcd 0000:00:1d.0: debug port 2
    [ 7.150681] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 7.150698] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf7c07000
    [ 7.163324] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 7.163522] hub 4-0:1.0: USB hub found
    [ 7.163527] hub 4-0:1.0: 2 ports detected
    [ 7.419834] usb 3-1: new high speed USB device number 2 using ehci_hcd
    [ 7.543870] hub 3-1:1.0: USB hub found
    [ 7.543925] hub 3-1:1.0: 6 ports detected
    [ 7.649782] usb 4-1: new high speed USB device number 2 using ehci_hcd
    [ 7.773731] hub 4-1:1.0: USB hub found
    [ 7.773839] hub 4-1:1.0: 8 ports detected
    [ 7.839852] usb 3-1.4: new full speed USB device number 3 using ehci_hcd
    [ 7.989777] usb 3-1.5: new high speed USB device number 4 using ehci_hcd
    [ 7.996778] Bluetooth: Atheros AR30xx firmware driver ver 1.0
    [ 8.030855] Bluetooth: Core ver 2.16
    [ 8.030872] NET: Registered protocol family 31
    [ 8.030874] Bluetooth: HCI device and connection manager initialized
    [ 8.030876] Bluetooth: HCI socket layer initialized
    [ 8.030877] Bluetooth: L2CAP socket layer initialized
    [ 8.030911] Bluetooth: SCO socket layer initialized
    [ 8.045164] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 8.184216] Linux media interface: v0.10
    [ 8.198960] Linux video capture interface: v2.00
    [ 8.199665] usb 4-1.3: new full speed USB device number 3 using ehci_hcd
    [ 8.203381] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_HD (0c45:6484)
    [ 8.301968] usbcore: registered new interface driver ath3k
    [ 8.302079] usbcore: registered new interface driver btusb
    [ 8.362829] usb 4-1.6: new high speed USB device number 4 using ehci_hcd
    [ 8.465460] usb 3-1.4: USB disconnect, device number 3
    [ 8.467817] input: Laptop_Integrated_Webcam_HD as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.5/3-1.5:1.0/input/input13
    [ 8.467893] usbcore: registered new interface driver uvcvideo
    [ 8.467902] USB Video Class driver (v1.0.0)
    [ 8.864314] Initializing USB Mass Storage driver...
    [ 8.864367] usbcore: registered new interface driver usb-storage
    [ 8.864368] USB Mass Storage support registered.
    [ 8.879836] scsi6 : usb-storage 4-1.6:1.0
    [ 8.879934] usbcore: registered new interface driver ums-realtek
    [ 8.881878] usbcore: registered new interface driver uas
    [ 9.082584] usb 3-1.4: new full speed USB device number 5 using ehci_hcd
    [ 9.632321] ATOM BIOS: Dell
    [ 9.632686] radeon 0000:01:00.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
    [ 9.632688] radeon 0000:01:00.0: GTT: 512M 0x0000000020000000 - 0x000000003FFFFFFF
    [ 9.632694] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
    [ 9.632696] [drm] Detected VRAM RAM=512M, BAR=256M
    [ 9.632697] [drm] RAM width 64bits DDR
    [ 9.632801] [TTM] Zone kernel: Available graphics memory: 1982574 kiB.
    [ 9.632810] [TTM] Initializing pool allocator.
    [ 9.632829] [drm] radeon: 512M of VRAM memory ready
    [ 9.632830] [drm] radeon: 512M of GTT memory ready.
    [ 9.632840] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 9.632842] [drm] Driver supports precise vblank timestamp query.
    [ 9.632878] radeon 0000:01:00.0: irq 51 for MSI/MSI-X
    [ 9.632882] radeon 0000:01:00.0: radeon: using MSI.
    [ 9.632935] [drm] radeon: irq initialized.
    [ 9.632938] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 9.633270] [drm] Loading CAICOS Microcode
    [ 9.655891] radeon 0000:01:00.0: WB enabled
    [ 9.672282] [drm] ring test succeeded in 3 usecs
    [ 9.672360] [drm] radeon: ib pool ready.
    [ 9.672437] [drm] ib test succeeded in 0 usecs
    [ 9.672919] [drm] Radeon Display Connectors
    [ 9.672934] [drm] Internal thermal controller with fan control
    [ 9.674100] [drm] radeon: power management initialized
    [ 9.674811] No connectors reported connected with modes
    [ 9.674813] [drm] Cannot find any crtc or sizes - going 1024x768
    [ 9.676106] [drm] fb mappable at 0xE0141000
    [ 9.676107] [drm] vram apper at 0xE0000000
    [ 9.676108] [drm] size 3145728
    [ 9.676109] [drm] fb depth is 24
    [ 9.676110] [drm] pitch is 4096
    [ 9.676155] fb1: radeondrmfb frame buffer device
    [ 9.676166] [drm] Initialized radeon 2.9.0 20080528 for 0000:01:00.0 on minor 1
    [ 9.881672] scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
    [ 9.881872] sd 6:0:0:0: Attached scsi generic sg2 type 0
    [ 10.085648] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 10.150019] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: user_xattr
    [ 12.409237] acpi_call: Calling \_SB.PCI0.PEG0.PEGP._OFF
    [ 12.409491] acpi_call: Call successful: 0x0
    [ 12.786799] coretemp coretemp.0: TjMax is 100 C.
    [ 12.786833] coretemp coretemp.1: TjMax is 100 C.
    [ 17.058520] sd 6:0:0:0: [sdb] Attached SCSI removable disk
    [ 17.059313] ------------[ cut here ]------------
    [ 17.059321] WARNING: at block/genhd.c:1556 disk_clear_events+0x111/0x120()
    [ 17.059323] Hardware name: Vostro 3350
    [ 17.059325] Modules linked in: coretemp uas ums_realtek usb_storage uvcvideo videodev media v4l2_compat_ioctl32 btusb bluetooth ath3k joydev snd_hda_codec_hdmi snd_hda_codec_idt vboxdrv arc4 acpi_call cpufreq_powersave cpufreq_conservative cpufreq_ondemand ecb ath9k mac80211 xhci_hcd ehci_hcd acpi_cpufreq snd_hda_intel sg snd_hda_codec serio_raw dell_laptop psmouse ath9k_common snd_hwdep freq_table snd_pcm usbcore snd_timer mperf fuse radeon pcspkr dell_wmi ath9k_hw ath cfg80211 snd soundcore snd_page_alloc iTCO_wdt ttm r8169 i2c_i801 iTCO_vendor_support sparse_keymap thermal wmi processor battery mii evdev rfkill dcdbas ac ext4 mbcache jbd2 crc16 sr_mod cdrom sd_mod ahci libahci libata scsi_mod i915 drm_kms_helper drm intel_agp i2c_algo_bit button intel_gtt i2c_core video
    [ 17.059387] Pid: 1414, comm: hdparm Not tainted 2.6.39-ARCH #1
    [ 17.059389] Call Trace:
    [ 17.059395] [<ffffffff8105b8ef>] warn_slowpath_common+0x7f/0xc0
    [ 17.059398] [<ffffffff8105b94a>] warn_slowpath_null+0x1a/0x20
    [ 17.059402] [<ffffffff81206f71>] disk_clear_events+0x111/0x120
    [ 17.059408] [<ffffffff81185d27>] check_disk_change+0x37/0x80
    [ 17.059414] [<ffffffffa0066178>] sd_open+0x98/0x180 [sd_mod]
    [ 17.059418] [<ffffffff81187044>] __blkdev_get+0xb4/0x410
    [ 17.059422] [<ffffffff811873f3>] blkdev_get+0x53/0x300
    [ 17.059425] [<ffffffff81187700>] blkdev_open+0x60/0x90
    [ 17.059430] [<ffffffff8114fcab>] __dentry_open+0x16b/0x390
    [ 17.059434] [<ffffffff811876a0>] ? blkdev_get+0x300/0x300
    [ 17.059438] [<ffffffff81151181>] nameidata_to_filp+0x71/0x80
    [ 17.059442] [<ffffffff8115ffec>] do_last+0x3cc/0xa80
    [ 17.059446] [<ffffffff811614ab>] path_openat+0xcb/0x3c0
    [ 17.059450] [<ffffffff81119ea6>] ? handle_mm_fault+0x1a6/0x360
    [ 17.059454] [<ffffffff811617e2>] do_filp_open+0x42/0xa0
    [ 17.059458] [<ffffffff8116dfec>] ? alloc_fd+0xec/0x140
    [ 17.059462] [<ffffffff81151287>] do_sys_open+0xf7/0x1d0
    [ 17.059466] [<ffffffff81151380>] sys_open+0x20/0x30
    [ 17.059470] [<ffffffff813e9b42>] system_call_fastpath+0x16/0x1b
    [ 17.059473] ---[ end trace 21b491eea571dbe0 ]---
    [ 18.238070] EXT4-fs (sda3): re-mounted. Opts: user_xattr,acl,barrier=1,data=ordered,commit=600
    [ 18.280052] EXT4-fs (sda4): re-mounted. Opts: user_xattr,commit=600
    [ 18.390902] r8169 0000:05:00.0: PME# enabled
    [ 18.405906] xhci_hcd 0000:0b:00.0: PME# enabled
    [ 20.059492] NET: Registered protocol family 10
    [ 20.060138] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 21.206254] r8169 0000:05:00.0: PME# disabled
    [ 21.220343] r8169 0000:05:00.0: eth0: link down
    [ 21.221108] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 22.735267] ehci_hcd 0000:00:1a.0: PCI INT A disabled
    [ 22.735314] ehci_hcd 0000:00:1a.0: PME# enabled
    [ 23.653141] EXT4-fs (sda3): re-mounted. Opts: commit=600
    [ 23.655261] EXT4-fs (sda4): re-mounted. Opts: user_xattr,commit=600
    [ 24.783437] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 24.859463] r8169 0000:05:00.0: PME# enabled
    [ 24.891097] r8169 0000:05:00.0: PME# disabled
    [ 24.898500] r8169 0000:05:00.0: eth0: link down
    [ 24.899264] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 25.024260] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 28.437415] wlan0: authenticate with 00:1a:30:67:88:f1 (try 1)
    [ 28.439488] wlan0: authenticated
    [ 28.439548] wlan0: associate with 00:1a:30:67:88:f1 (try 1)
    [ 28.446589] wlan0: RX AssocResp from 00:1a:30:67:88:f1 (capab=0x431 status=0 aid=57)
    [ 28.446598] wlan0: associated
    [ 28.447530] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 38.703759] wlan0: no IPv6 routers present
    [ 61.981783] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1411, at 1411], missed IRQ?
    [ 63.527634] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1464, at 1464], missed IRQ?
    [ 66.642672] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1534, at 1534], missed IRQ?
    [ 71.430221] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 1633, at 1633], missed IRQ?
    [ 76.816622] chromium-sandbo (2310): /proc/2308/oom_adj is deprecated, please use /proc/2308/oom_score_adj instead.
    [ 1265.088913] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 125929, at 125929], missed IRQ?
    [ 1300.743906] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 129934, at 129934], missed IRQ?
    [ 1426.928921] ehci_hcd 0000:00:1a.0: BAR 0: set to [mem 0xf7c08000-0xf7c083ff] (PCI address [0xf7c08000-0xf7c083ff])
    [ 1426.928952] ehci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
    [ 1426.928973] ehci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
    [ 1426.932062] ehci_hcd 0000:00:1a.0: PME# disabled
    [ 1426.932074] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1426.932081] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1433.822085] ehci_hcd 0000:00:1a.0: PCI INT A disabled
    [ 1433.822161] ehci_hcd 0000:00:1a.0: PME# enabled
    [ 1441.736293] process `skype' is using obsolete setsockopt SO_BSDCOMPAT
    [ 1451.399651] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 139439, at 139439], missed IRQ?
    [ 1490.366250] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 142671, at 142671], missed IRQ?
    [ 1491.892157] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 142691, at 142691], missed IRQ?
    [ 1504.535621] [drm:i915_hangcheck_ring_idle] *ERROR* Hangcheck timer elapsed... blt ring idle [waiting on 143528, at 143528], missed IRQ?
    [ 1555.955548] cfg80211: Calling CRDA for country: IT
    [ 1557.163221] wlan0: authenticate with 00:1a:30:67:88:f1 (try 1)
    [ 1557.165287] wlan0: authenticated
    [ 1557.165332] wlan0: associate with 00:1a:30:67:88:f1 (try 1)
    [ 1557.170691] wlan0: RX AssocResp from 00:1a:30:67:88:f1 (capab=0x31 status=0 aid=57)
    [ 1557.170699] wlan0: associated
    [ 1560.523624] wlan0: deauthenticating from 00:1a:30:67:88:f1 by local choice (reason=3)
    [ 1560.617243] cfg80211: Calling CRDA to update world regulatory domain
    [ 1560.738829] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 1560.875326] r8169 0000:05:00.0: PME# enabled
    [ 1560.906883] r8169 0000:05:00.0: PME# disabled
    [ 1560.914250] r8169 0000:05:00.0: eth0: link down
    [ 1560.915053] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 1565.451894] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 1566.954570] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 1567.038998] r8169 0000:05:00.0: PME#

    sure...
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 001 Device 005: ID 0cf3:3005 Atheros Communications, Inc.
    Bus 001 Device 004: ID 0c45:6484 Microdia
    Bus 002 Device 003: ID 138a:0011 Validity Sensors, Inc.
    Bus 002 Device 004: ID 0bda:0138 Realtek Semiconductor Corp.
    Bus 002 Device 005: ID 0fce:2149 Sony Ericsson Mobile Communications AB Xperia X8 (debug)

  • One reason why commandLink doesn't work in dataTable

    Ok, so I think I've got an explanation why commandLink doesn't work in dataTable when the model bean is request scoped. Maybe somebody can tell me if I'm wrong.
    I have a model bean that generates table rows based on some input criteria (request parameters).
    So, we validate the inputs, apply them to the bean and render the page. Once the inputs have been applied to the bean, a request for table rows returns rows, no problem.
    However, we put a commandLink in each row, so we can expand the details. Maybe we even get smart and repeat the input row-generating criteria as a hidden field in the page.
    Unfortunately, when the user hits the commandLink, the list page simply refreshes, maybe even w/out table rows. The user doesn't get the details page as expected.
    Why not?
    Because: in the DECODE phase (even before validation and before "immediate" values have had their valueChangeListeners called), we ask the model bean for the table rows, so we can decode the commandLinks. Unfortunately, in "decode" phase, the request-scoped model bean has not had its row-generating criteria updated (that happens in the "update model" normally, or at the END of the decode phase if we got cute by (1) setting the "immediate" attribute on the row-generating criteria to "true" AND (2) set a valueChangeListener to allow us to update the model bean early. The END of the decode phase isn't good enough -- in the middle of that phase, when we're attempting to deocde commandLinks, the model bean has no citeria, so there's no row data. No row data means no iteration over commandLinks to decode them and queue ActionEvents. So, we march through the rest of the phases, process no events, and return to the screen of origin (the list screen) with no errors.
    So, what's the solution?
    One solution is to make the model bean session-scoped. Fine, maybe we can store a tiny bit of data in it (the search criteria), so it's not such a memory drag to have it live in the session forever. How do we get that data in? A managed property in faces-config.xml with value #{param.PARENT_KEY} won't work because it's assigning request-scoped data to a session-scoped holder. JBoss balks, and rightly so. Do we write code in the model bean that pulls the request parameter out of thin air? (FacesContext.getExternalContext()....) I don't really like to code the name of a specific http request parameter into the bean, I think it's the job of the JSP or faces-config.xml to achieve that binding (request parameter to model propery). Plus, I'd be sad to introduce a dependency on Faces in what was previously just a bean.
    Is there a better way?
    In my particular situation, we're grafting some Faces pages onto an already-existing non-Faces application. I don't get the luxury of presenting the user an input field and binding it to a bean. All I've got to work with is a request parameter.
    Hmm, I guess I just answered my own question. if all I've got to work with is a request parameter, some ugliness is inevitable, I guess.
    I guess the best fix is to cheat and have the bean constructor look for a request parameter. If it finds it, it initializes the criteria field (which, in my case, is the key of an object that has a bunch of associated objects (the rows data), but could be more-general d/b search criteria).
    (I looked at the "repeater" example code in the RI, but it basically statically-generates its data and then uses 100% Faces (of course) to manage the paging (where "page number" is essentially the "criteria").
    Comments? Did I miss something obvious?
    John.

    ...or I could just break down and do the thing I was hoping to avoid (outputLink instead of commandLink):
    <h:outputLink value="/faces/Detail.jsp">
      <f:param name="PARENT_KEY" value="#{bean.parentKey}"/>
      <h:outputText value="#{bean.label}"/>
    </h:outputLink>It's still a "hardcoded" parameter name, but at least the binding is in the JSP and faces-config.xml, not the bean Java code.

Maybe you are looking for

  • Error: Not able send mail from OWA 2010. When I send mail, the mails go to Drafts Folder.

    Error: Not able to send mail from OWA 2010. When I send mail, the mails go to Drafts Folder. I have installed everything correctly but when I tried to open the OWA and trying to send mail from OWA. The mails do not deliver and mails become saved in D

  • What happens to the array built inside a subvi

    Hi My operation inside a subvi goes like this, i acquire data from a source continuously in a loop, build it in the loop and pass it out of the loop. I complete the processing of the built array in the same subvi and come out of it. I have the follow

  • Change the

    HI , I want to change the masthead inside the portal , can anyone help me doing that .I have found the par file and imported that into the NWDS.Please tel me how to change the Links in the masthead. Cheers Sara

  • Troubleshooting 6th gen ipod nano "unable to identify ipod"

    Just this evening I plugged my ipod in to my laptop and I continually recieve the message that says something along the lines of "unable to identify ipod". I ran through the trouble shooting tips on the support website, including new usb port, restar

  • How to create a container element?

    Hi, Could somebody please tell me how to create a container element and how to create a multi container element? How is this element used in the fork step? I am using a fork with 3 branches but the agent assignment is a problem.The workitem does not