Failure to enhance

I get the following error when I try to enhance this xml file. It is a bit
weird since the first two classes are OK, after that they don't work. Can
someone explain? I also have problems with the ApplicationIDTool.
Obviously the class has been compiled, it seems to work intermittently.
-----------tool--------------
Exception in thread "main"
com.solarmetric.kodo.tools.appid.ObjectIDException: The specified class
package.jdo
could not be loaded. Ensure that the class has been compiled before
running this tool.
at
com.solarmetric.kodo.tools.appid.ApplicationIDTool.main(ApplicationIDTool.java:440)
Exception in thread "main" java.lang.IllegalArgumentException: The
specified class "com.vwfs.CustomerTrackingType" could not be loaded. null
at
com.solarmetric.modules.tools.compiler.ClassArgParser.parseClasses(ClassArgParser.java:9
0)
at
com.solarmetric.kodo.impl.jdbc.ormapping.MetaDataVerifier.main(MetaDataVerifier.java:56)
Exception in thread "main" java.lang.IllegalArgumentException: The
specified class "com.vwfs.CustomerTrackingType" could not be loaded. null
at
com.solarmetric.modules.tools.compiler.ClassArgParser.parseClasses(ClassArgParser.java:9
0)
at
com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:152)
at
com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:130)
at
com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:122)
at
com.solarmetric.kodo.enhance.JDOEnhancer.main(JDOEnhancer.java:86)
<?xml version="1.0" ?>
<jdo>
     <package name="com.vwfs">
          <class name="Recording" identity-type="application"
objectid-class="RecordingKey">
               <extension vendor-name="kodo" key="table" value="recordings" />
               <extension vendor-name="kodo" key="lock-column" value="none" />
               <extension vendor-name="kodo" key="class-column" value="none" />
               <field name="iRecordingID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="recording_id" />
               </field>
               <field name="iVersion">
                    <extension vendor-name="kodo" key="data-column" value="version" />
               </field>
               <field name="dListPrice">
                    <extension vendor-name="kodo" key="data-column" value="list_price" />
               </field>
               <field name="sCatalogNumber">
                    <extension vendor-name="kodo" key="data-column" value="catalog_number"
/>
               </field>
               <field name="sRecordingArtist">
                    <extension vendor-name="kodo" key="data-column"
value="recording_artist" />
               </field>
               <field name="sRecordingTitle">
                    <extension vendor-name="kodo" key="data-column"
value="recording_title" />
               </field>
               <field name="theCustomerTrackedRecordings">
                    <collection element-type="CustomerTrackedRecording"/>
                    <extension vendor-name="kodo" key="inverse" value="Recording" />
               </field>
          </class>
          <class name="CustomerTrackedRecording" identity-type="application"
objectid-class="CustomerTrackedRecordingKey">
               <extension vendor-name="kodo" key="table"
value="customer_tracked_recordings" />
               <extension vendor-name="kodo" key="lock-column" value="none" />
               <extension vendor-name="kodo" key="class-column" value="none" />
               <field name="iCustomerID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="customer_id" />
               </field>
               <field name="iRecordingID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="recording_id" />
               </field>
               <field name="iTrackingTypeID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column"
value="tracking_type_id" />
               </field>
               <field name="iVersion">
                    <extension vendor-name="kodo" key="data-column" value="version" />
               </field>
               <field name="iDateTracked">
                    <extension vendor-name="kodo" key="data-column" value="date_tracked" />
               </field>
               <field name="theCustomer">
                    <extension vendor-name="kodo" key="inverse" value="Customer" />
               </field>
               <field name="theRecording">
                    <extension vendor-name="kodo" key="inverse" value="Recording" />
               </field>
               <field name="theTrackingType">
                    <extension vendor-name="kodo" key="inverse"
value="CustomerTrackingType" />
               </field>
          </class>
          <class name="CustomerTrackingType" identity-type="application"
objectid-class="CustomerTrackingTypeKey">
               <extension vendor-name="kodo" key="table"
value="customer_tracking_types" />
               <extension vendor-name="kodo" key="lock-column" value="none" />
               <extension vendor-name="kodo" key="class-column" value="none" />
               <field name="iTrackingTypeID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column"
value="tracking_type_id" />
               </field>
               <field name="sDescription" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="description" />
               </field>
          </class>
     </package>
</jdo>

I've got things to enhance now, by removing a few lines like this one:
public static final CustomerTrackingType CUSTOMER_PURCHASE
=     CustomerTrackingType.getByID(CUSTOMER_PURCHASE_ID);
Now, I'm hoping someone will be able to explain why removing these lines
fixes it?
Thanks
Andrew wrote:
I get the following error when I try to enhance this xml file. It is a bit
weird since the first two classes are OK, after that they don't work. Can
someone explain? I also have problems with the ApplicationIDTool.
Obviously the class has been compiled, it seems to work intermittently.
-----------tool--------------
Exception in thread "main"
com.solarmetric.kodo.tools.appid.ObjectIDException: The specified class
package.jdo
could not be loaded. Ensure that the class has been compiled before
running this tool.
at
com.solarmetric.kodo.tools.appid.ApplicationIDTool.main(ApplicationIDTool.java:440)
Exception in thread "main" java.lang.IllegalArgumentException: The
specified class "com.vwfs.CustomerTrackingType" could not be loaded. null
at
com.solarmetric.modules.tools.compiler.ClassArgParser.parseClasses(ClassArgParser.java:9
0)
at
com.solarmetric.kodo.impl.jdbc.ormapping.MetaDataVerifier.main(MetaDataVerifier.java:56)
Exception in thread "main" java.lang.IllegalArgumentException: The
specified class "com.vwfs.CustomerTrackingType" could not be loaded. null
at
com.solarmetric.modules.tools.compiler.ClassArgParser.parseClasses(ClassArgParser.java:9
0)
at
com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:152)
at
com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:130)
at
com.solarmetric.kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:122)
at
com.solarmetric.kodo.enhance.JDOEnhancer.main(JDOEnhancer.java:86)
<?xml version="1.0" ?>
<jdo>
     <package name="com.vwfs">
          <class name="Recording" identity-type="application"
objectid-class="RecordingKey">
               <extension vendor-name="kodo" key="table" value="recordings" />
               <extension vendor-name="kodo" key="lock-column" value="none" />
               <extension vendor-name="kodo" key="class-column" value="none" />
               <field name="iRecordingID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="recording_id" />
               </field>
               <field name="iVersion">
                    <extension vendor-name="kodo" key="data-column" value="version" />
               </field>
               <field name="dListPrice">
                    <extension vendor-name="kodo" key="data-column" value="list_price" />
               </field>
               <field name="sCatalogNumber">
                    <extension vendor-name="kodo" key="data-column" value="catalog_number"
/>
               </field>
               <field name="sRecordingArtist">
                    <extension vendor-name="kodo" key="data-column"
value="recording_artist" />
               </field>
               <field name="sRecordingTitle">
                    <extension vendor-name="kodo" key="data-column"
value="recording_title" />
               </field>
               <field name="theCustomerTrackedRecordings">
                    <collection element-type="CustomerTrackedRecording"/>
                    <extension vendor-name="kodo" key="inverse" value="Recording" />
               </field>
          </class>
          <class name="CustomerTrackedRecording" identity-type="application"
objectid-class="CustomerTrackedRecordingKey">
               <extension vendor-name="kodo" key="table"
value="customer_tracked_recordings" />
               <extension vendor-name="kodo" key="lock-column" value="none" />
               <extension vendor-name="kodo" key="class-column" value="none" />
               <field name="iCustomerID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="customer_id" />
               </field>
               <field name="iRecordingID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="recording_id" />
               </field>
               <field name="iTrackingTypeID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column"
value="tracking_type_id" />
               </field>
               <field name="iVersion">
                    <extension vendor-name="kodo" key="data-column" value="version" />
               </field>
               <field name="iDateTracked">
                    <extension vendor-name="kodo" key="data-column" value="date_tracked" />
               </field>
               <field name="theCustomer">
                    <extension vendor-name="kodo" key="inverse" value="Customer" />
               </field>
               <field name="theRecording">
                    <extension vendor-name="kodo" key="inverse" value="Recording" />
               </field>
               <field name="theTrackingType">
                    <extension vendor-name="kodo" key="inverse"
value="CustomerTrackingType" />
               </field>
          </class>
          <class name="CustomerTrackingType" identity-type="application"
objectid-class="CustomerTrackingTypeKey">
               <extension vendor-name="kodo" key="table"
value="customer_tracking_types" />
               <extension vendor-name="kodo" key="lock-column" value="none" />
               <extension vendor-name="kodo" key="class-column" value="none" />
               <field name="iTrackingTypeID" primary-key="true">
                    <extension vendor-name="kodo" key="data-column"
value="tracking_type_id" />
               </field>
               <field name="sDescription" primary-key="true">
                    <extension vendor-name="kodo" key="data-column" value="description" />
               </field>
          </class>
     </package>
</jdo>

Similar Messages

  • Adding field in MFBF

    Hi,
    I have to add one field under tab Make-To-Stock   in MFBF transaction
    Pls suggest me.
    Thanks in advance

    hi,
    check according to ur requirement
    Enhancement
    PTRM0001                                User Exit for Lead Column in REM Planning Table
    SAPLRMPU                                Customer Exits for Material Staging
    XMRM0001                                User exits: Backflushing in Repetitive Manufacturing
    Business Add-in
    RM_PERFORMANCE_DREQ                     Performance Improvement in New Distrib. of Dependent Reqmts
    RM_MF50_ROWS                            BAdI for Hiding Lines in the Planning Table
    RM_LIST_PRODUCTION                      BAdI for Printing Production Settings
    RM_HR_INTEGRATION                       HR Integration of REM Backflush
    RM_BFLUSH_GOODSMVT                      BAdI: Goods Movements in Backflush -Repetitive Manufacturing
    FCO_RM_FUNCTIONS                        Failure Costs: Enhancements in Repetitive Manufacturing Area
    FCO_CUSTOMER_SPECIF                     Failure Costs: Customer-Specific Enhancements
    FCO_CO_FUNCTIONS                        CO Functions for Failure Costs
    CIF_RM_PPR_DISTRIB                      Distribution of Postprocessing Records in APO
    Yogesh N

  • User exit for MFBF

    Hi all,
         I want to change the value of quantity field using exit EXIT_SAPLBARM_002 of XMRM0001 but values are not getting updated.
    is this the right exit or there exists any other exits
    pls let me know
    thanks

    Hi Uday,
    These are the exits and BAdi's available for this transaction.
    When ever you want to know which exit is going to be triggered, you just pick that exit, inside the exit you will be provided with function module exit.
    For example: EXIT_SAPLBARM_002 Here inside it you need to put a break point. then activate it.
    For Example: break username.
    If you put like this it only affects your login only. There wont be any disturbance for others who are working on the same server.
    After that you activate it and run your trnsaction.
    or give some inputs to it and save it.
    So before that you need to check all the business flow that is either creating any order or some thing like that. At that time while pressing any button the function gets triggers.
    If the exit you mentioned doesn't triggered, then go with other exits I have listed below. If it is not possible with this exit, then finally you should go with BAdi.
      Enhancement
    PTRM0001                                User Exit for Lead Column in REM Planning Table
    SAPLRMPU                                Customer Exits for Material Staging
    XMRM0001                                User exits: Backflushing in Repetitive Manufacturing
    Business Add-in
    RM_PERFORMANCE_DREQ                     Performance Improvement in New Distrib. of Dependent Reqmts
    RM_MF50_ROWS                            BAdI for Hiding Lines in the Planning Table
    RM_LIST_PRODUCTION                      BAdI for Printing Production Settings
    RM_HR_INTEGRATION                       HR Integration of REM Backflush
    RM_BFLUSH_GOODSMVT                      BAdI: Goods Movements in Backflush -Repetitive Manufacturing
    FCO_RM_FUNCTIONS                        Failure Costs: Enhancements in Repetitive Manufacturing Area
    FCO_CUSTOMER_SPECIF                     Failure Costs: Customer-Specific Enhancements
    FCO_CO_FUNCTIONS                        CO Functions for Failure Costs
    CIF_RM_PPR_DISTRIB                      Distribution of Postprocessing Records in APO
    Reward points if it helps you.
    Cheers,
    Swamy Kunche

  • User Exit or BAdI available for transaction MFBF

    Hi all,
         Is there any BAdI or User Exit available for Trasaction MFBF to change the workcentre type? if possible could anyone help me out in figuring out the the Exit.
    Answers will be rewarded
    Cheers,
    Prashanth

    check...
                                                                                    Enhancement/ Business Add-in            Description                                                                               
    Enhancement                                                                               
    PTRM0001                                User Exit for Lead Column in REM Planning Table                
    SAPLRMPU                                Customer Exits for Material Staging                            
    XMRM0001                                User exits: Backflushing in Repetitive Manufacturing                                                                               
    Business Add-in                                                                               
    CIF_RM_PPR_DISTRIB                      Distribution of Postprocessing Records in APO                  
    FCO_CO_FUNCTIONS                        CO Functions for Failure Costs                                 
    FCO_CUSTOMER_SPECIF                     Failure Costs: Customer-Specific Enhancements                  
    FCO_RM_FUNCTIONS                        Failure Costs: Enhancements in Repetitive Manufacturing Area   
    RM_HR_INTEGRATION                       HR Integration of REM Backflush                                
    RM_LIST_PRODUCTION                      BAdI for Printing Production Settings                          
    RM_MF50_ROWS                            BAdI for Hiding Lines in the Planning Table                    
    RM_PERFORMANCE_DREQ                     Performance Improvement in New Distrib. of Dependent Reqmts

  • Enhancement failure of  "0FI_AR_4 " :  No data of field "ZWBANK "

    1. Enhance Extraction Structure of "0FI_AR_4 "  with the field of "ZWBANK ". (rsa6)
    2. Deselect the "Hide field" of "ZWBANK "
    3. RSA3 -> Extract the "0FI_AR_4 " -> "ZWBANK " appears,  no data.
    4. Function Enhancement of  "0FI_AR_4 " (rsa6) -> Project "ZBW220" -> "Components" -> "EXIT_SAPLRRS0_001" ->   
        "INCLUDE ZXRSRU01"
    5.  ABAP :
    *0FI_AR_4 DATASOURCE
    DATA S_AR LIKE DTFIAR_3.
    CASE I_DATASOURCE.
      WHEN '0FI_AR_4'.
       LOOP AT C_T_DATA INTO S_AR.
         l_tabix = sy-tabix.
           SELECT SINGLE WBANK
           FROM BSED
           INTO S_AR-ZWBANK
            WHERE belnr = S_AR-BELNR
            AND   buzei = S_AR-BUZEI
            AND   bukrs = S_AR-BUKRS
            AND   gjahr = S_AR-GJAHR.
         IF SY-SUBRC = 0.
          MODIFY C_T_DATA FROM S_AR INDEX l_tabix.
         ENDIF.
         CLEAR l_tabix.
       ENDLOOP.
       CLEAR S_AR.
    ENDCASE.
    6. check ->  "No syntax errors found"
    7. RSA3 -> Extract the "0FI_AR_4 " -> "ZWBANK " appears,
        But still  no data !!
    How could this happen? and how to debug using RSA3 ?
    Thanks!
    Edited by: peteron on Sep 1, 2010 6:30 PM

    Hi there,
    For using the debug go to your code after the WHEN of the datasource and click on CtrlShiftF9.
    Then go to transaction rsa3 and execute the extractor.
    This will lead to the debug code.
    Your code seems fine, but here's how I've would done it:
    *0FI_AR_4 DATASOURCE
    DATA S_AR LIKE DTFIAR_3.
    DATA: zzwbank LIKE bsed-WBANK.
    CASE I_DATASOURCE.
    WHEN '0FI_AR_4'.
    LOOP AT C_T_DATA INTO S_AR.
    clear zzwbank.
    SELECT SINGLE WBANK
    FROM BSED
    INTO zzwbank
    WHERE belnr = S_AR-BELNR
    AND buzei = S_AR-BUZEI
    AND bukrs = S_AR-BUKRS
    AND gjahr = S_AR-GJAHR.
    IF SY-SUBRC = 0.
    s_ar-zwbank= zzwbank.
    MODIFY C_T_DATA FROM S_AR.
    ENDIF.
    ENDLOOP.
    ENDCASE.
    Regards,
    Diogo.

  • Desktop freezes and hard drives failure

    Hey i faced a recent problem with my Computer, when i log in it freezes/crash i got told its due to my sound drive failuring, i tryed to download HP assistant to upgrade my sound drive but it cames up saying " Error 1719. windows installer service could not be accessed" I went to the HP software website to see if theres any sound drive but there arnt. I cant do a system restore because an error pops up. I tryed everything, nothing seems not to work .
    Heres my computer specs
    Im in safe mod if u want to know ^ ^
    System Information
    Time of this report: 4/29/2011, 14:11:56
           Machine name: ASHDOWN-PC
       Operating System: Windows 7 Home Premium 32-bit (6.1, Build 7601) (7601.win7sp1_rtm.101119-1850)
               Language: English (Regional Setting: English)
    System Manufacturer: Compaq-Presario
           System Model: KQ318AA-ABU SR5414UK
                   BIOS: v5.03
              Processor: Intel(R) Core(TM)2 Duo CPU     E4600  @ 2.40GHz (2 CPUs), ~2.4GHz
                 Memory: 2048MB RAM
    Available OS Memory: 2046MB RAM
              Page File: 556MB used, 3536MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
     System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7600.16385 32bit Unicode
      DxDiag Previously: Crashed in system information (stage 4). Re-running DxDiag with "dontskip" command line parameter or choosing not to bypass information gathering when prompted might result in DxDiag successfully obtaining this information
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: This computer cannot play audio because the Windows Audio service is not enabled.  Use the Sounds and Devices Properties control panel to enable audio. No sound card was found.  If one is expected, you should install a sound driver provided by the hardware manufacturer.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name:
           Manufacturer:
              Chip type:
               DAC type:
             Device Key: Enum\
         Display Memory: n/a
       Dedicated Memory: n/a
          Shared Memory: n/a
           Current Mode: 1600 x 1200 (32 bit) (1Hz)
            Driver Name:
    Driver File Version:  ()
         Driver Version:
            DDI Version: unknown
           Driver Model: unknown
      Driver Attributes: Final Retail
       Driver Date/Size: , 0 bytes
            WHQL Logo'd: n/a
        WHQL Date Stamp: n/a
      Device Identifier: {D7B70EE0-4340-11CF-B123-B03DAEC2CB35}
              Vendor ID: 0x0000
              Device ID: 0x0000
              SubSys ID: 0x00000000
            Revision ID: 0x0000
     Driver Strong Name: Unknown
         Rank Of Driver: Unknown
            Video Accel:
          Deinterlace Caps: n/a
           D3D9 Overlay: n/a
                DXVA-HD: n/a
           DDraw Status: Not Available
             D3D Status: Not Available
             AGP Status: Not Available
    Sound Devices
                Description:
     Default Sound Playback: No
     Default Voice Playback: No
                Hardware ID:
            Manufacturer ID:
                 Product ID:
                       Type:
                Driver Name:
             Driver Version:
          Driver Attributes:
                WHQL Logo'd:
              Date and Size:
                Other Files:
            Driver Provider:
             HW Accel Level: Emulation Only
                  Cap Flags: 0x0
        Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Razer Arctosa
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010B
            FF Driver: n/a
          Device Name: Razer Arctosa
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010B
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x27C9
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    |
    +-+ USB Input Device
    | | Vendor/Product ID: 0x1532, 0x001C
    | | Location: Port_#0002.Hub_#0002
    | | Matching Device ID: generic_hid_device
    | | Service: HidUsb
    | |
    | +-+ HID-compliant mouse
    | | | Vendor/Product ID: 0x1532, 0x001C
    | | | Matching Device ID: hid_device_system_mouse
    | | | Service: mouhid
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x1532, 0x010B
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    System Devices
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    Device ID: PCI\VEN_8086&DEV_27CA&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EA
       Driver: n/a
         Name: Intel(R) G33/G31/P35/P31 Express Chipset PCI Express Root Port - 29C1
    Device ID: PCI\VEN_8086&DEV_29C1&SUBSYS_29C18086&REV_10\3&241​1E6FE&1&08
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    Device ID: PCI\VEN_8086&DEV_27C9&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E9
       Driver: n/a
         Name: Intel(R) G33/G31/P35/P31 Express Chipset Processor to I/O Controller - 29C0
    Device ID: PCI\VEN_8086&DEV_29C0&SUBSYS_2A78103C&REV_10\3&241​1E6FE&1&00
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    Device ID: PCI\VEN_8086&DEV_27C8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E8
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) SMBus Controller - 27DA
    Device ID: PCI\VEN_8086&DEV_27DA&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&FB
       Driver: n/a
         Name: Intel(R) 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0
    Device ID: PCI\VEN_8086&DEV_27C0&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&FA
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_27D8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&D8
       Driver: n/a
         Name: Intel(R) 82801GB/GR (ICH7 Family) LPC Interface Controller - 27B8
    Device ID: PCI\VEN_8086&DEV_27B8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&F8
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D0
    Device ID: PCI\VEN_8086&DEV_27D0&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E0
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_2A78103C&REV_E1\3&241​1E6FE&1&F0
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    Device ID: PCI\VEN_8086&DEV_27CC&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EF
       Driver: n/a
         Name: Realtek RTL8101E Family PCI-E Fast Ethernet NIC (NDIS 6.20)
    Device ID: PCI\VEN_10EC&DEV_8136&SUBSYS_2A78103C&REV_01\4&360​1B127&0&00E0
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    Device ID: PCI\VEN_8086&DEV_27CB&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EB
       Driver: n/a
         Name: NVIDIA GeForce 9600 GT
    Device ID: PCI\VEN_10DE&DEV_0622&SUBSYS_82A11043&REV_A1\4&1EA​08276&0&0008
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16597
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.110​9
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.1​109
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.11​09
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,15.04.3508.110​9
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.110​9
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.1649​0
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
    DivX AAC Decoder,0x00800000,1,1,daac.ax,7.01.0000.0010
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.1638​5
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16490
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7​600.16724
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0​000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16724
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.​16724
    Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.1638​5
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.1​6490
    CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7600.16385
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16490
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.1672​4
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.1672​4
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16​385
    DivX MKV Demux (unrestricted),0x00200000,0,1,DMFSource.ax,1.00.00​02.0006
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16490
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16490
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16​385
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16490
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16724
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7600.16385
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16490
    DivX H.264 Decoder,0x00800000,1,1,DivXDecH264.ax,9.00.0001.00​21
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16490
    File Writer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.110​9
    DivX Decoder Filter,0x00800000,1,1,DivXDec.ax,7.01.0001.0014
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.1638​5
    File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.16385
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.1638​5
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7600.16385
    DivX MKV Demux,0x00600000,0,1,DMFSource.ax,1.00.0002.0006
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7600.16490
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16​385
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600​.16724
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
    LAME Audio Encoder,0x00100000,2,1,lame.ax,1.00.0054.50801
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.1​6385
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.1638​5
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.760​0.16724
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7600.16385
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.1​6490
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7600.1​6385
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16490
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0​000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600​.16724
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16490
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16490
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16490
    Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7600.163​85
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.16385
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16490
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.1638​5
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.164​90
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7600.16385
    DivX 6.9.2 Codec (2 Logical CPUs),0x00200000,1,1,qcap.dll,6.06.7600.16385
    Fraps Video Decompressor,0x00200000,1,1,qcap.dll,6.06.7600.163​85
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7600.16385
    x264vfw - H.264/MPEG-4 AVC codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    DivX 6.9.2 YV12 Decoder,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    PCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7600.16490
    Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.06.7600.16490
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7600.16490
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16​724
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16​724
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16​724
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7600.16490
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16648
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16​724
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16​724
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16724
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16724
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.1638​5
    Audio Renderers:
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16490
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    You can make them visible on the Desktop using Finder/Preferences/General. You can also set them to show up in the Finder Sidebar using Preferences/Sidebar.

  • [GAVE UP] Failure to initialize graphics device [Thinkpad 530W,Nvidia]

    Hello,
    I fail to use `nvidia` as graphics driver for my xorg on a Thinkpad 530W laptop using Nvidia Quadro 2000M and intel graphics card. Using instead `intel` or `vesa` work. This following logs are with optimus enabled, but I tried the same things with only the nvidia graphics card enabled in the bios and I also fail to load the nvidia driver.
    I followed the advice at
    https://wiki.archlinux.org/index.php/NV … IA_Optimus
    for xorg not to be confused by the presense of two graphics cards.
    Do you have any ideas how I get the nvidia card to run? Should I try Bumblebee? But can this even help if already only the nvidia card by itself makes problem? Do you need any more information?
    Thanks, for any advice,
    Holger
    This is a fresh install on a new laptop and I am new to Arch (but with Linux for a long time).
    Here are the logs:
    XOrg.log
    [ 6.236]
    X.Org X Server 1.14.4
    Release Date: 2013-10-31
    [ 6.236] X Protocol Version 11, Revision 0
    [ 6.236] Build Operating System: Linux 3.11.6-1-ARCH x86_64
    [ 6.236] Current Operating System: Linux ho-think 3.12.2-1-ARCH #1 SMP PREEMPT Fri Nov 29 21:14:15 CET 2013 x86_64
    [ 6.236] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 6.236] Build Date: 01 November 2013 05:10:48PM
    [ 6.236]
    [ 6.236] Current version of pixman: 0.32.4
    [ 6.236] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 6.236] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 6.237] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Dec 5 23:50:52 2013
    [ 6.239] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 6.239] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 6.239] (==) No Layout section. Using the first Screen section.
    [ 6.239] (==) No screen section available. Using defaults.
    [ 6.239] (**) |-->Screen "Default Screen Section" (0)
    [ 6.239] (**) | |-->Monitor "<default monitor>"
    [ 6.240] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 6.240] (**) | |-->Device "Nvidia Card"
    [ 6.240] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 6.240] (==) Automatically adding devices
    [ 6.240] (==) Automatically enabling devices
    [ 6.240] (==) Automatically adding GPU devices
    [ 6.242] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 6.242] Entry deleted from font path.
    [ 6.244] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 6.244] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 6.244] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 6.244] (II) Loader magic: 0x7fdc20
    [ 6.244] (II) Module ABI versions:
    [ 6.244] X.Org ANSI C Emulation: 0.4
    [ 6.244] X.Org Video Driver: 14.1
    [ 6.244] X.Org XInput driver : 19.1
    [ 6.244] X.Org Server Extension : 7.0
    [ 6.244] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 6.245] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 6.246] (--) PCI:*(0:0:2:0) 8086:0166:17aa:21f5 rev 9, Mem @ 0xf1400000/4194304, 0xe0000000/268435456, I/O @ 0x00006000/64
    [ 6.246] (--) PCI: (0:1:0:0) 10de:0ffb:17aa:21f5 rev 161, Mem @ 0xf0000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
    [ 6.246] Initializing built-in extension Generic Event Extension
    [ 6.246] Initializing built-in extension SHAPE
    [ 6.246] Initializing built-in extension MIT-SHM
    [ 6.246] Initializing built-in extension XInputExtension
    [ 6.246] Initializing built-in extension XTEST
    [ 6.246] Initializing built-in extension BIG-REQUESTS
    [ 6.246] Initializing built-in extension SYNC
    [ 6.246] Initializing built-in extension XKEYBOARD
    [ 6.246] Initializing built-in extension XC-MISC
    [ 6.246] Initializing built-in extension SECURITY
    [ 6.247] Initializing built-in extension XINERAMA
    [ 6.247] Initializing built-in extension XFIXES
    [ 6.247] Initializing built-in extension RENDER
    [ 6.247] Initializing built-in extension RANDR
    [ 6.247] Initializing built-in extension COMPOSITE
    [ 6.247] Initializing built-in extension DAMAGE
    [ 6.247] Initializing built-in extension MIT-SCREEN-SAVER
    [ 6.247] Initializing built-in extension DOUBLE-BUFFER
    [ 6.247] Initializing built-in extension RECORD
    [ 6.247] Initializing built-in extension DPMS
    [ 6.247] Initializing built-in extension X-Resource
    [ 6.247] Initializing built-in extension XVideo
    [ 6.247] Initializing built-in extension XVideo-MotionCompensation
    [ 6.247] Initializing built-in extension XFree86-VidModeExtension
    [ 6.247] Initializing built-in extension XFree86-DGA
    [ 6.247] Initializing built-in extension XFree86-DRI
    [ 6.247] Initializing built-in extension DRI2
    [ 6.247] (II) "glx" will be loaded by default.
    [ 6.247] (II) LoadModule: "dri2"
    [ 6.247] (II) Module "dri2" already built-in
    [ 6.247] (II) LoadModule: "glamoregl"
    [ 6.275] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 6.475] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 6.475] compiled for 1.14.2, module version = 0.5.1
    [ 6.475] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.475] (II) LoadModule: "glx"
    [ 6.475] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 6.517] (II) Module glx: vendor="NVIDIA Corporation"
    [ 6.517] compiled for 4.0.2, module version = 1.0.0
    [ 6.517] Module class: X.Org Server Extension
    [ 6.517] (II) NVIDIA GLX Module 331.20 Wed Oct 30 17:36:48 PDT 2013
    [ 6.517] Loading extension GLX
    [ 6.517] (II) LoadModule: "nvidia"
    [ 6.517] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 6.549] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 6.549] compiled for 4.0.2, module version = 1.0.0
    [ 6.549] Module class: X.Org Video Driver
    [ 6.549] (II) NVIDIA dlloader X Driver 331.20 Wed Oct 30 17:16:53 PDT 2013
    [ 6.549] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 6.549] (++) using VT number 7
    [ 6.553] (II) Loading sub module "fb"
    [ 6.554] (II) LoadModule: "fb"
    [ 6.554] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 6.557] (II) Module fb: vendor="X.Org Foundation"
    [ 6.557] compiled for 1.14.4, module version = 1.0.0
    [ 6.557] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.557] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 6.557] (II) Loading sub module "wfb"
    [ 6.557] (II) LoadModule: "wfb"
    [ 6.557] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 6.559] (II) Module wfb: vendor="X.Org Foundation"
    [ 6.559] compiled for 1.14.4, module version = 1.0.0
    [ 6.559] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 6.559] (II) Loading sub module "ramdac"
    [ 6.559] (II) LoadModule: "ramdac"
    [ 6.559] (II) Module "ramdac" already built-in
    [ 6.559] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 6.559] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 6.559] (==) NVIDIA(0): RGB weight 888
    [ 6.559] (==) NVIDIA(0): Default visual is TrueColor
    [ 6.559] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 6.559] (**) NVIDIA(0): Enabling 2D acceleration
    [ 11.161] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 11.161] (EE) NVIDIA(GPU-0): check your system's kernel log for additional error
    [ 11.161] (EE) NVIDIA(GPU-0): messages and refer to Chapter 8: Common Problems in the
    [ 11.161] (EE) NVIDIA(GPU-0): README for additional information.
    [ 11.161] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics device!
    [ 11.161] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 11.161] (II) UnloadModule: "nvidia"
    [ 11.161] (II) UnloadSubModule: "wfb"
    [ 11.161] (II) UnloadSubModule: "fb"
    [ 11.161] (EE) Screen(s) found, but none have a usable configuration.
    [ 11.161] (EE)
    Fatal server error:
    [ 11.161] (EE) no screens found(EE)
    [ 11.161] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 11.161] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 11.162] (EE)
    [ 11.167] (EE) Server terminated with error (1). Closing log file.
    dmesg with the nvidia failure at the end:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Nov 29 21:14:15 CET 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000a6b2ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000a6b30000-0x00000000bae9efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae9f000-0x00000000baf9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043e5fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000043e600000-0x000000043e7fffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: LENOVO 2447DW0/2447DW0, BIOS G5ET93WW (2.53 ) 05/24/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43e600 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-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask E00000000 write-back
    [ 0.000000] 7 base 400000000 mask FC0000000 write-back
    [ 0.000000] 8 base 43F000000 mask FFF000000 uncachable
    [ 0.000000] 9 base 43E800000 mask FFF800000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xa6b30 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43e400000-0x43e5fffff]
    [ 0.000000] [mem 0x43e400000-0x43e5fffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43c000000-0x43e3fffff]
    [ 0.000000] [mem 0x43c000000-0x43e3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x400000000-0x43bffffff]
    [ 0.000000] [mem 0x400000000-0x43bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x40003fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x40005000-0xa6b2ffff]
    [ 0.000000] [mem 0x40005000-0x401fffff] page 4k
    [ 0.000000] [mem 0x40200000-0xa69fffff] page 2M
    [ 0.000000] [mem 0xa6a00000-0xa6b2ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    [ 0.000000] [mem 0x100000000-0x3ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x379be000-0x37cd6fff]
    [ 0.000000] ACPI: RSDP 00000000000f0120 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000baffe170 000BC (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: FACP 00000000bafe6000 0010C (v05 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: DSDT 00000000bafe8000 10A68 (v01 LENOVO TP-G5 00002530 INTL 20061109)
    [ 0.000000] ACPI: FACS 00000000baf54000 00040
    [ 0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO TP-G5 00002530 PTL 00000001)
    [ 0.000000] ACPI: TCPA 00000000baffc000 00032 (v02 PTL LENOVO 06040000 LNVO 00000001)
    [ 0.000000] ACPI: SSDT 00000000baffb000 00408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000baffa000 00033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000baff9000 00797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
    [ 0.000000] ACPI: HPET 00000000bafe4000 00038 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: APIC 00000000bafe3000 00098 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: MCFG 00000000bafe2000 0003C (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: ECDT 00000000bafe1000 00052 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: FPDT 00000000bafe0000 00064 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: ASF! 00000000bafe7000 000A5 (v32 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000bafdf000 0003E (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: UEFI 00000000bafde000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: MSDM 00000000bafdd000 00055 (v03 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: SSDT 00000000bafdc000 00D23 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000bafdb000 00A83 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: UEFI 00000000bafda000 002A6 (v01 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: DBG2 00000000bafd9000 000E9 (v00 LENOVO TP-G5 00002530 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043e5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43e5fffff]
    [ 0.000000] NODE_DATA [mem 0x43e5ed000-0x43e5f1fff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042e200000-ffff88043dbfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43e5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xa6b2ffff]
    [ 0.000000] node 0: [mem 0x100000000-0x43e5fffff]
    [ 0.000000] On node 0 totalpages: 4083403
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10597 pages used for memmap
    [ 0.000000] DMA32 zone: 678191 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53144 pages used for memmap
    [ 0.000000] Normal zone: 3401216 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[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] 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: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xa6b30000-0xbae9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbae9f000-0xbaf9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbafff000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88043e200000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4019577
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=267f069c-11da-4d2a-88fa-00cab4e28149 rw quiet resume=/dev/sda6
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 15995556K/16333612K available (5121K kernel code, 807K rwdata, 1708K rodata, 1144K init, 1288K bss, 338056K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 65536000 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2694.031 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5390.56 BogoMIPS (lpj=8980103)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000027] Security Framework initialized
    [ 0.000034] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000035] Yama: becoming mindful.
    [ 0.000923] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.004551] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.006146] Mount-cache hash table entries: 256
    [ 0.006298] Initializing cgroup subsys memory
    [ 0.006306] Initializing cgroup subsys devices
    [ 0.006307] Initializing cgroup subsys freezer
    [ 0.006309] Initializing cgroup subsys net_cls
    [ 0.006310] Initializing cgroup subsys blkio
    [ 0.006329] CPU: Physical Processor ID: 0
    [ 0.006330] CPU: Processor Core ID: 0
    [ 0.006334] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.006663] mce: CPU supports 9 MCE banks
    [ 0.006675] CPU0: Thermal monitoring enabled (TM1)
    [ 0.006685] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.006786] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.007682] ACPI: Core revision 20130725
    [ 0.013359] ACPI: All ACPI Tables successfully acquired
    [ 0.014627] ftrace: allocating 20311 entries in 80 pages
    [ 0.023669] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.056667] smpboot: CPU0: Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.056673] TSC deadline timer enabled
    [ 0.056680] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.056686] ... version: 3
    [ 0.056687] ... bit width: 48
    [ 0.056688] ... generic registers: 4
    [ 0.056689] ... value mask: 0000ffffffffffff
    [ 0.056689] ... max period: 0000ffffffffffff
    [ 0.056690] ... fixed-purpose events: 3
    [ 0.056691] ... event mask: 000000070000000f
    [ 0.093731] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.080104] smpboot: Booting Node 0, Processors # 1 # 2 # 3 # 4 # 5 # 6 # 7 OK
    [ 0.215283] Brought up 8 CPUs
    [ 0.215286] smpboot: Total of 8 processors activated (43121.51 BogoMIPS)
    [ 0.221817] devtmpfs: initialized
    [ 0.225267] PM: Registering ACPI NVS region [mem 0xbae9f000-0xbaf9efff] (1048576 bytes)
    [ 0.225908] RTC time: 22:50:45, date: 12/05/13
    [ 0.225941] NET: Registered protocol family 16
    [ 0.226022] cpuidle: using governor ladder
    [ 0.226024] cpuidle: using governor menu
    [ 0.226046] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.226048] ACPI: bus type PCI registered
    [ 0.226050] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.226221] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.226224] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.230705] PCI: Using configuration type 1 for base access
    [ 0.231329] bio: create slab <bio-0> at 0
    [ 0.231442] ACPI: Added _OSI(Module Device)
    [ 0.231443] ACPI: Added _OSI(Processor Device)
    [ 0.231444] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.231445] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.232701] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.236337] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.272341] ACPI: SSDT 00000000bae3a018 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.272660] ACPI: Dynamic OEM Table Load:
    [ 0.272661] ACPI: SSDT (null) 00A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.288532] ACPI: SSDT 00000000bae3ba98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.288874] ACPI: Dynamic OEM Table Load:
    [ 0.288876] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.301731] ACPI: SSDT 00000000bae39d98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.302048] ACPI: Dynamic OEM Table Load:
    [ 0.302049] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.316012] ACPI: Interpreter enabled
    [ 0.316018] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.316022] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.316034] ACPI: (supports S0 S3 S4 S5)
    [ 0.316035] ACPI: Using IOAPIC for interrupt routing
    [ 0.316057] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.316633] ACPI: ACPI Dock Station Driver: 2 docks/bays found
    [ 0.328772] ACPI: Power Resource [PUBS] (on)
    [ 0.332509] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332575] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 9 10 11)
    [ 0.332638] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332701] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11)
    [ 0.332763] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *7 9 10 11)
    [ 0.332812] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.332874] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.332936] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 *10 11)
    [ 0.332972] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.333055] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.333132] acpi PNP0A08:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
    [ 0.333133] acpi PNP0A08:00: ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.333260] PCI host bridge to bus 0000:00
    [ 0.333262] pci_bus 0000:00: root bus resource [bus 00-3f]
    [ 0.333264] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.333265] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.333267] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.333268] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfebfffff]
    [ 0.333270] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
    [ 0.333277] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.333338] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.333365] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.333416] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.333426] pci 0000:00:02.0: reg 0x10: [mem 0xf1400000-0xf17fffff 64bit]
    [ 0.333432] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.333436] pci 0000:00:02.0: reg 0x20: [io 0x6000-0x603f]
    [ 0.333514] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.333534] pci 0000:00:14.0: reg 0x10: [mem 0xf3a20000-0xf3a2ffff 64bit]
    [ 0.333603] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.333630] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.333664] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.333686] pci 0000:00:16.0: reg 0x10: [mem 0xf3a35000-0xf3a3500f 64bit]
    [ 0.333761] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.333815] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
    [ 0.333833] pci 0000:00:16.3: reg 0x10: [io 0x60b0-0x60b7]
    [ 0.333842] pci 0000:00:16.3: reg 0x14: [mem 0xf3a3c000-0xf3a3cfff]
    [ 0.333964] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
    [ 0.333981] pci 0000:00:19.0: reg 0x10: [mem 0xf3a00000-0xf3a1ffff]
    [ 0.333989] pci 0000:00:19.0: reg 0x14: [mem 0xf3a3b000-0xf3a3bfff]
    [ 0.333997] pci 0000:00:19.0: reg 0x18: [io 0x6080-0x609f]
    [ 0.334058] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.334085] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.334117] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.334137] pci 0000:00:1a.0: reg 0x10: [mem 0xf3a3a000-0xf3a3a3ff]
    [ 0.334226] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.334254] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.334287] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.334302] pci 0000:00:1b.0: reg 0x10: [mem 0xf3a30000-0xf3a33fff 64bit]
    [ 0.334368] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.334400] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.334427] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.334502] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.334557] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.334632] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.334687] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    [ 0.334762] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.334792] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.334829] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.334849] pci 0000:00:1d.0: reg 0x10: [mem 0xf3a39000-0xf3a393ff]
    [ 0.334936] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.334965] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.334997] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
    [ 0.335148] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.335165] pci 0000:00:1f.2: reg 0x10: [io 0x60a8-0x60af]
    [ 0.335173] pci 0000:00:1f.2: reg 0x14: [io 0x60bc-0x60bf]
    [ 0.335181] pci 0000:00:1f.2: reg 0x18: [io 0x60a0-0x60a7]
    [ 0.335188] pci 0000:00:1f.2: reg 0x1c: [io 0x60b8-0x60bb]
    [ 0.335195] pci 0000:00:1f.2: reg 0x20: [io 0x6060-0x607f]
    [ 0.335203] pci 0000:00:1f.2: reg 0x24: [mem 0xf3a38000-0xf3a387ff]
    [ 0.335246] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.335294] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.335309] pci 0000:00:1f.3: reg 0x10: [mem 0xf3a34000-0xf3a340ff 64bit]
    [ 0.335329] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    [ 0.335425] pci 0000:01:00.0: [10de:0ffb] type 00 class 0x030000
    [ 0.335432] pci 0000:01:00.0: reg 0x10: [mem 0xf0000000-0xf0ffffff]
    [ 0.335439] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.335445] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.335450] pci 0000:01:00.0: reg 0x24: [io 0x5000-0x507f]
    [ 0.335454] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 0.341690] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.341695] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 0.341700] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.341706] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.341865] pci 0000:02:00.0: [1180:e823] type 00 class 0x088001
    [ 0.341884] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
    [ 0.341910] pci 0000:02:00.0: reg 0x10: [mem 0xf3101000-0xf31010ff]
    [ 0.342112] pci 0000:02:00.0: supports D1 D2
    [ 0.342113] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.342242] pci 0000:02:00.3: [1180:e832] type 00 class 0x0c0010
    [ 0.342268] pci 0000:02:00.3: reg 0x10: [mem 0xf3100000-0xf31007ff]
    [ 0.342472] pci 0000:02:00.3: supports D1 D2
    [ 0.342474] pci 0000:02:00.3: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.348460] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.348465] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.348469] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf39fffff]
    [ 0.348475] pci 0000:00:1c.0: bridge window [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.348567] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
    [ 0.348614] pci 0000:03:00.0: reg 0x10: [mem 0xf3000000-0xf3001fff 64bit]
    [ 0.348839] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.355042] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.355054] pci 0000:00:1c.1: bridge window [mem 0xf3000000-0xf30fffff]
    [ 0.355151] acpiphp: Slot [1] registered
    [ 0.355157] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.355162] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.355165] pci 0000:00:1c.2: bridge window [mem 0xf2800000-0xf2ffffff]
    [ 0.355171] pci 0000:00:1c.2: bridge window [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.356013] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.356023] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.356059] Found 1 acpi root devices
    [ 0.356106] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 0.356165] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.356169] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.356170] vgaarb: loaded
    [ 0.356171] vgaarb: bridge control possible 0000:01:00.0
    [ 0.356172] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.356199] PCI: Using ACPI for IRQ routing
    [ 0.357682] PCI: pci_cache_line_size set to 64 bytes
    [ 0.357820] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.357822] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.357823] e820: reserve RAM buffer [mem 0xa6b30000-0xa7ffffff]
    [ 0.357824] e820: reserve RAM buffer [mem 0x43e600000-0x43fffffff]
    [ 0.357892] NetLabel: Initializing
    [ 0.357893] NetLabel: domain hash size = 128
    [ 0.357894] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.357904] NetLabel: unlabeled traffic allowed by default
    [ 0.357921] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.357925] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.360952] Switched to clocksource hpet
    [ 0.364213] pnp: PnP ACPI init
    [ 0.364226] ACPI: bus type PNP registered
    [ 0.364530] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.364532] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    [ 0.364534] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    [ 0.364535] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
    [ 0.364537] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
    [ 0.364538] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved
    [ 0.364540] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved
    [ 0.364541] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved
    [ 0.364545] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved
    [ 0.364546] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    [ 0.364548] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    [ 0.364549] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    [ 0.364551] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    [ 0.364552] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.364554] system 00:00: [mem 0x00100000-0xbf9fffff] could not be reserved
    [ 0.364555] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 0.364557] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [ 0.364560] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.364624] pnp 00:01: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
    [ 0.364643] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 0.364644] system 00:01: [io 0x0500-0x057f] has been reserved
    [ 0.364646] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 0.364647] system 00:01: [io 0x15e0-0x15ef] has been reserved
    [ 0.364649] system 00:01: [io 0x1600-0x167f] has been reserved
    [ 0.364651] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.364652] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.364654] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.364655] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.364657] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.364658] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 0.364661] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.364703] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.364710] pnp 00:03: [dma 4]
    [ 0.364723] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.364738] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.364763] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.364782] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.364803] pnp 00:07: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
    [ 0.364824] pnp 00:08: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
    [ 0.364860] pnp 00:09: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [ 0.365288] pnp: PnP ACPI: found 10 devices
    [ 0.365290] ACPI: bus type PNP unregistered
    [ 0.371588] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.371620] pci 0000:01:00.0: BAR 6: assigned [mem 0xf1000000-0xf107ffff pref]
    [ 0.371622] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.371624] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 0.371627] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.371629] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.371632] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.371635] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.371640] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf39fffff]
    [ 0.371644] pci 0000:00:1c.0: bridge window [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.371650] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.371655] pci 0000:00:1c.1: bridge window [mem 0xf3000000-0xf30fffff]
    [ 0.371663] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
    [ 0.371666] pci 0000:00:1c.2: bridge window [io 0x3000-0x3fff]
    [ 0.371671] pci 0000:00:1c.2: bridge window [mem 0xf2800000-0xf2ffffff]
    [ 0.371675] pci 0000:00:1c.2: bridge window [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.371681] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.371683] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.371684] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.371686] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfebfffff]
    [ 0.371687] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff]
    [ 0.371688] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    [ 0.371690] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
    [ 0.371691] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.371693] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 0.371694] pci_bus 0000:02: resource 1 [mem 0xf3100000-0xf39fffff]
    [ 0.371695] pci_bus 0000:02: resource 2 [mem 0xf1800000-0xf1ffffff 64bit pref]
    [ 0.371697] pci_bus 0000:03: resource 1 [mem 0xf3000000-0xf30fffff]
    [ 0.371698] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.371700] pci_bus 0000:04: resource 1 [mem 0xf2800000-0xf2ffffff]
    [ 0.371701] pci_bus 0000:04: resource 2 [mem 0xf2000000-0xf27fffff 64bit pref]
    [ 0.371726] NET: Registered protocol family 2
    [ 0.371936] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    [ 0.372200] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.372304] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.372320] TCP: reno registered
    [ 0.372335] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.372381] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.372455] NET: Registered protocol family 1
    [ 0.372464] pci 0000:00:02.0: Boot video device
    [ 0.372838] PCI: CLS 64 bytes, default 64
    [ 0.372874] Unpacking initramfs...
    [ 0.419708] Freeing initrd memory: 3172K (ffff8800379be000 - ffff880037cd7000)
    [ 0.419712] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.419714] software IO TLB [mem 0xa2b30000-0xa6b30000] (64MB) mapped at [ffff8800a2b30000-ffff8800a6b2ffff]
    [ 0.419965] Scanning for low memory corruption every 60 seconds
    [ 0.420184] audit: initializing netlink socket (disabled)
    [ 0.420191] type=2000 audit(1386283845.413:1): initialized
    [ 0.430696] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.431915] zbud: loaded
    [ 0.432021] VFS: Disk quotas dquot_6.5.2
    [ 0.432054] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.432181] msgmni has been set to 31247
    [ 0.432413] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.432453] io scheduler noop registered
    [ 0.432454] io scheduler deadline registered
    [ 0.432473] io scheduler cfq registered (default)
    [ 0.432595] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.432864] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.432875] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.432907] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 0.432908] vesafb: scrolling: redraw
    [ 0.432909] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.433568] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005c80000, using 8128k, total 8128k
    [ 0.566342] Console: switching to colour frame buffer device 240x67
    [ 0.698577] fb0: VESA VGA frame buffer device
    [ 0.698590] intel_idle: MWAIT substates: 0x21120
    [ 0.698591] intel_idle: v0.4 model 0x3A
    [ 0.698592] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.698765] GHES: HEST is not enabled!
    [ 0.698809] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.719500] 0000:00:16.3: ttyS0 at I/O 0x60b0 (irq = 19, base_baud = 115200) is a 16550A
    [ 0.719641] Linux agpgart interface v0.103
    [ 0.719702] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 0.721201] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.721210] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.721298] mousedev: PS/2 mouse device common for all mice
    [ 0.721324] rtc_cmos 00:06: RTC can wake from S4
    [ 0.721444] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.721474] rtc_cmos 00:06: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.721482] Intel P-state driver initializing.
    [ 0.721492] Intel pstate controlling: cpu 0
    [ 0.721502] Intel pstate controlling: cpu 1
    [ 0.721510] Intel pstate controlling: cpu 2
    [ 0.721520] Intel pstate controlling: cpu 3
    [ 0.721532] Intel pstate controlling: cpu 4
    [ 0.721541] Intel pstate controlling: cpu 5
    [ 0.721549] Intel pstate controlling: cpu 6
    [ 0.721558] Intel pstate controlling: cpu 7
    [ 0.721630] drop_monitor: Initializing network drop monitor service
    [ 0.721685] TCP: cubic registered
    [ 0.721757] NET: Registered protocol family 10
    [ 0.721886] NET: Registered protocol family 17
    [ 0.721894] Key type dns_resolver registered
    [ 0.722224] registered taskstats version 1
    [ 0.722596] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.723178] Magic number: 9:534:855
    [ 0.723283] rtc_cmos 00:06: setting system clock to 2013-12-05 22:50:46 UTC (1386283846)
    [ 0.723323] PM: Checking hibernation image partition /dev/sda6
    [ 0.726752] PM: Hibernation image not present or could not be loaded.
    [ 0.727429] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.727431] Write protecting the kernel read-only data: 8192k
    [ 0.729430] Freeing unused kernel memory: 1012K (ffff880001503000 - ffff880001600000)
    [ 0.730122] Freeing unused kernel memory: 340K (ffff8800017ab000 - ffff880001800000)
    [ 0.737327] systemd-udevd[79]: starting version 208
    [ 0.753625] ACPI: bus type USB registered
    [ 0.753654] usbcore: registered new interface driver usbfs
    [ 0.753672] usbcore: registered new interface driver hub
    [ 0.753762] usbcore: registered new device driver usb
    [ 0.754364] sdhci: Secure Digital Host Controller Interface driver
    [ 0.754367] sdhci: Copyright(c) Pierre Ossman
    [ 0.754471] pcieport 0000:00:1c.0: driver skip pci_set_master, fix it!
    [ 0.754490] SCSI subsystem initialized
    [ 0.754718] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.755262] ehci-pci: EHCI PCI platform driver
    [ 0.755386] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 0.755406] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.755414] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.755427] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.756165] libata version 3.00 loaded.
    [ 0.759355] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.759370] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf3a3a000
    [ 0.767505] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.767646] hub 1-0:1.0: USB hub found
    [ 0.767652] hub 1-0:1.0: 3 ports detected
    [ 0.767804] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.767809] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.767812] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.767823] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.771708] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.771720] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf3a39000
    [ 0.780896] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.780996] hub 2-0:1.0: USB hub found
    [ 0.781000] hub 2-0:1.0: 3 ports detected
    [ 0.781193] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 0.781197] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.781202] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.781297] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.781317] xhci_hcd 0000:00:14.0: irq 41 for MSI/MSI-X
    [ 0.781456] hub 3-0:1.0: USB hub found
    [ 0.781467] hub 3-0:1.0: 4 ports detected
    [ 0.781705] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.781708] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 0.781799] hub 4-0:1.0: USB hub found
    [ 0.781807] hub 4-0:1.0: 4 ports detected
    [ 0.791001] ahci 0000:00:1f.2: version 3.0
    [ 0.791067] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 0.791088] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.804224] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x17 impl SATA mode
    [ 0.804231] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pio slum part ems sxs apst
    [ 0.804239] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.820938] firewire_ohci 0000:02:00.3: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    [ 0.820989] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e823] (rev 5)
    [ 0.821107] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
    [ 0.824627] scsi0 : ahci
    [ 0.824773] scsi1 : ahci
    [ 0.824907] scsi2 : ahci
    [ 0.825041] scsi3 : ahci
    [ 0.825234] scsi4 : ahci
    [ 0.825350] scsi5 : ahci
    [ 0.825384] ata1: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38100 irq 42
    [ 0.825387] ata2: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38180 irq 42
    [ 0.825390] ata3: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38200 irq 42
    [ 0.825391] ata4: DUMMY
    [ 0.825406] ata5: SATA max UDMA/133 abar m2048@0xf3a38000 port 0xf3a38300 irq 42
    [ 0.825406] ata6: DUMMY
    [ 1.074138] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 1.144102] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.145449] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.145455] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.146823] ata1.00: ATA-8: HGST HTS725050A7E630, GH2ZB550, max UDMA/133
    [ 1.146827] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.148298] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.148304] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.149813] ata1.00: configured for UDMA/133
    [ 1.150087] scsi 0:0:0:0: Direct-Access ATA HGST HTS725050A7 GH2Z PQ: 0 ANSI: 5
    [ 1.198525] hub 1-1:1.0: USB hub found
    [ 1.198715] hub 1-1:1.0: 6 ports detected
    [ 1.307453] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.320895] firewire_core 0000:02:00.3: created device fw0: GUID 3c970effbe0ba2ff, S400
    [ 1.420670] tsc: Refined TSC clocksource calibration: 2693.881 MHz
    [ 1.431513] hub 2-1:1.0: USB hub found
    [ 1.431588] hub 2-1:1.0: 8 ports detected
    [ 1.467351] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.471615] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 1.473091] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 1.476312] ata2.00: ATAPI: HL-DT-ST DVDRAM GT80N, LT20, max UDMA/133
    [ 1.480154] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
    [ 1.481633] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
    [ 1.484853] ata2.00: configured for UDMA/133
    [ 1.493873] scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GT80N LT20 PQ: 0 ANSI: 5
    [ 1.590645] usb 3-2: new low-speed USB device number 2 using xhci_hcd
    [ 1.611303] usb 3-2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.611311] usb 3-2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.613287] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.623187] usbcore: registered new interface driver usbhid
    [ 1.623191] usbhid: USB HID core driver
    [ 1.623948] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.0/input/input2
    [ 1.624086] hid-generic 0003:046D:C505.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-2/input0
    [ 1.624501] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.1/input/input3
    [ 1.624758] hid-generic 0003:046D:C505.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-2/input1
    [ 1.677468] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
    [ 1.813904] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.814517] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.814523] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.814902] ata3.00: ATA-8: SAMSUNG MZMPC032HBCD-000L1, CXM13L1Q, max UDMA/133
    [ 1.814908] ata3.00: 62533296 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.815417] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.815424] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.815843] ata3.00: configured for UDMA/133
    [ 1.815996] scsi 2:0:0:0: Direct-Access ATA SAMSUNG MZMPC032 CXM1 PQ: 0 ANSI: 5
    [ 1.827413] usb 1-1.4: new full-speed USB device number 4 using ehci-pci
    [ 1.980746] usb 1-1.6: new high-speed USB device number 5 using ehci-pci
    [ 2.133788] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.138079] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 2.138084] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 2.138107] sd 2:0:0:0: [sdb] 62533296 512-byte logical blocks: (32.0 GB/29.8 GiB)
    [ 2.138214] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.138218] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.138263] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.138291] sd 2:0:0:0: [sdb] Write Protect is off
    [ 2.138294] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 2.138365] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.139366] sdb: sdb1
    [ 2.139583] sd 2:0:0:0: [sdb] Attached SCSI disk
    [ 2.140832] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.140834] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.140984] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 2.150609] usb 2-1.5: new low-speed USB device number 3 using ehci-pci
    [ 2.217042] raid6: sse2x1 6045 MB/s
    [ 2.222964] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    [ 2.224086] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.242780] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input4
    [ 2.242927] hid-generic 0003:046D:C051.0003: input,hidraw2: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.0-1.5/input0
    [ 2.273683] raid6: sse2x2 9288 MB/s
    [ 2.330330] raid6: sse2x4 13180 MB/s
    [ 2.330331] raid6: using algorithm sse2x4 (13180 MB/s)
    [ 2.330332] raid6: using ssse3x2 recovery algorithm
    [ 2.330416] xor: automatically using best checksumming function:
    [ 2.363659] avx : 27280.800 MB/sec
    [ 2.365888] bio: create slab <bio-1> at 1
    [ 2.366416] Btrfs loaded
    [ 2.366872] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2746 /dev/sdb1
    [ 2.420417] Switched to clocksource tsc
    [ 2.749348] btrfs: device fsid f6907d81-f46f-4911-8600-858e8b6bd1a0 devid 1 transid 3707 /dev/sda5
    [ 3.007064] PM: Starting manual resume from disk
    [ 3.007067] PM: Hibernation image partition 8:6 present
    [ 3.007068] PM: Looking for hibernation image.
    [ 3.007178] PM: Image not found (code -22)
    [ 3.007183] PM: Hibernation image not present or could not be loaded.
    [ 3.014955] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2746 /dev/sdb1
    [ 3.015285] btrfs: disk space caching is enabled
    [ 3.028402] Btrfs detected SSD devices, enabling SSD mode
    [ 3.211825] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.212136] systemd[1]: Set hostname to <ho-think>.
    [ 3.252550] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.252605] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.252618] systemd[1]: Starting Remote File Systems.
    [ 3.252629] systemd[1]: Reached target Remote File Systems.
    [ 3.252638] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.252667] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.252675] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.252701] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.252709] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.252724] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.252731] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.252748] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.252758] systemd[1]: Starting Journal Socket.
    [ 3.252795] systemd[1]: Listening on Journal Socket.
    [ 3.253090] systemd[1]: Starting Apply Kernel Variables...
    [ 3.253532] systemd[1]: Starting Journal Service...
    [ 3.253811] systemd[1]: Started Journal Service.
    [ 3.287546] systemd-journald[182]: Vacuuming done, freed 0 bytes
    [ 3.390618] btrfs: use ssd allocation scheme
    [ 3.390622] btrfs: disk space caching is enabled
    [ 3.400329] systemd-udevd[218]: starting version 208
    [ 3.490322] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 3.491089] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 3.491746] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input6
    [ 3.491865] ACPI: Lid Switch [LID]
    [ 3.492466] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20130725/utaddress-251)
    [ 3.492471] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492475] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 3.492490] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492491] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 3.492494] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 3.492495] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 3.493000] pps_core: LinuxPPS API ver. 1 registered
    [ 3.493002] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 3.493659] ACPI: Requesting acpi_cpufreq
    [ 3.493823] PTP clock support registered
    [ 3.494020] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input7
    [ 3.494025] ACPI: Sleep Button [SLPB]
    [ 3.494069] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
    [ 3.494071] ACPI: Power Button [PWRF]
    [ 3.494675] mei_me 0000:00:16.0: setting latency timer to 64
    [ 3.494714] mei_me 0000:00:16.0: irq 43 for MSI/MSI-X
    [ 3.494990] ACPI: AC Adapter [AC] (on-line)
    [ 3.495691] tpm_tis 00:09: 1.2 TPM (device-id 0x0, rev-id 78)
    [ 3.498616] Non-volatile memory driver v1.3
    [ 3.498683] [drm] Initialized drm 1.1.0 20060810
    [ 3.499437] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 3.502565] ACPI: Battery Slot [BAT0] (battery present)
    [ 3.502633] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 3.502635] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 3.502636] thinkpad_acpi: ThinkPad BIOS G5ET93WW (2.53 ), EC unknown
    [ 3.502637] thinkpad_acpi: Lenovo ThinkPad W530, model 2447DW0
    [ 3.504741] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 3.504742] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 3.504806] e1000e 0000:00:19.0: setting latency timer to 64
    [ 3.504855] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 3.504869] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 3.505719] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 3.505814] thinkpad_acpi: radio switch found; radios are enabled
    [ 3.507612] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 3.507614] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 3.508991] wmi: Mapper loaded
    [ 3.510574] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [ 3.512202] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 3.512859] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.512862] ACPI: Thermal Zone [THM0] (51 C)
    [ 3.512964] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 3.513826] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input9
    [ 3.519211] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.529719] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.529721] Copyright(c) 2003-2013 Intel Corporation
    [ 3.529746] pcieport 0000:00:1c.1: driver skip pci_set_master, fix it!
    [ 3.529786] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.529839] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
    [ 3.541982] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.557020] media: Linux media interface: v0.10
    [ 3.559314] Bluetooth: Core ver 2.16
    [ 3.559324] NET: Registered protocol family 31
    [ 3.559325] Bluetooth: HCI device and connection manager initialized
    [ 3.559331] Bluetooth: HCI socket layer initialized
    [ 3.559332] Bluetooth: L2CAP socket layer initialized
    [ 3.559338] Bluetooth: SCO socket layer initialized
    [ 3.559760] Linux video capture interface: v2.00
    [ 3.561090] btrfs: device fsid 267f069c-11da-4d2a-88fa-00cab4e28149 devid 1 transid 2747 /dev/sdb1
    [ 3.563306] tpm_tis 00:09: TPM is disabled/deactivated (0x6)
    [ 3.565201] usbcore: registered new interface driver btusb
    [ 3.565757] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b2ea)
    [ 3.567801] iTCO_vendor_support: vendor-support=0
    [ 3.568229] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input11
    [ 3.568341] usbcore: registered new interface driver uvcvideo
    [ 3.568342] USB Video Class driver (1.1.1)
    [ 3.568802] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 3.568825] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 3.568884] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 3.575973] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.579387] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.580314] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.580610] nvidia: module license 'NVIDIA' taints kernel.
    [ 3.580612] Disabling lock debugging due to kernel taint
    [ 3.580964] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581262] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581662] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.581969] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x17
    [ 3.582235] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 3.585585] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
    [ 3.585626] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 3.585753] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
    [ 3.585756] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 331.20 Wed Oct 30 17:43:35 PDT 2013
    [ 3.590299] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm
    [ 3.604935] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.604939] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.604940] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.604942] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
    [ 3.604991] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 3.611807] kvm: disabled by bios
    [ 3.622449] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.643289] systemd-udevd[222]: renamed network interface wlan0 to wlp3s0
    [ 3.699041] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 3.699043] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:be:0b:a2
    [ 3.699045] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 3.699088] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
    [ 3.699268]

    I decided to use nouveau instead of nvidia and now I got my external an internal display working.

  • Troubleshooting "Failure to solve JavaScript variable" in OpenScript

    I'm new to OATS and need some help trying to debug two errors my script is getting.
    I'm trying to develop a simple script for a 3rd party application we use. The app itself has worked fine for a couple of years.
    I record a script of a simple transaction to create a permit for creating a Historic District (it's a public works application). The recording works fine. I record a Load Test Web/HTTP script.
    When I play it back I get two errors. First there is a "failure to solve JavaScript varaible" error, followed by a "variable not found" error. They look like they are related. I guess solving the first error will eliminate the second. I've tried correlating the script following playback. No change. I've also tried recording it using the FLEX protocol. Also no change.
    Although this is not preventing the execution of OATS, it is pretty important because it is preventing the development of the load test I need to develop.
    I have used the OpenScript Diagnosis Tool and fixed everything it told me to fix:
    - Setting the Java to use the browser proxy settings... did that.
    - It tells me the Rule File is missing for Oracle Forms, and tells me how to recreate it. But, I can't do that because this is not an Oracle script. It is a Web/HTTP
    script.
    - It also tells me to disable the IE Enhanced Security Settings. That is already done but it keeps telling me to do it anyway.
    - It tells me to use a newer version of Firefox and to check the Firefox profile. But, this is an IE script.
    Running as an Administrator under Windows 2008 Server R2 SP1.

    Opened an SR on this issue, worked with tech support and finally discovered the problem. OATS was correlating some things that shouldn't have been correlated. Went into the correlation rules, turned off Javascript correlaation, re-recorded the script and the problem dissappeared. That left me with just one error. I went to that line in the script, chose "... revert to recorded" to reverse the correlation and eliminated the last of the problems.

  • Variable to get instance failure error message in Email Notification

    Hi All,
    I  send email notifications on insatnce failure of Scheduled reports by configuring notification option in CMC.
    I would like to send the Error message for insatnce failure in the message content.
    Is there any way to achieve this ?Any dynamic system variable like %SI_STARTTIME%  available for this  ?
    I am looking for error message as we see when click status in Instance History of a report.
    "Error Message: The date for the prompt 'Enter Issue Start Date:' is invalid. (WIS 10706)  "
    Thanks in Advance
    Bilahari

    Hi Bilahari,
    It is not possible at present with the product as it stands out of the XI3.1 or BI4.0 to email the error message with the schedule email notification.
    I would suggest that you log this requirement in the SAP Ideas Place:
    Idea Place (https://ideas.sap.com) allows customers to log Enhancement request themselves without the need to contact Support and work more closely with Product Management.
    Here your idea can be evaluated by other customers and voted upon, prior to our Product Group organization deciding on the idea as a possible enhancement.
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Beats-Audio / Sound System Enhancement dv7 / HP Envy 15

    Beats-Audio - Sound system Enhancement
    Test system
    dv7t – 6100 Quad / Windows 7- 64bit
    Beats-audio
    Introduction - Cave Sound Caper
    Edits 29-Nov-2011
    This is a re-write of this document. 
    Parts One and Two have been flipped.  It's a work in progress.
    The purpose of this Post is to provide a method to enhance the sound coming from your onboard beats-audio speakers.  The quality of the sound should improve - more importantly, MORE sound should be available.  This is important if your system is suffering from lack of enough sound from the onboard speaker system.
    This process does not make use of the Loudness Equalization enhancement.  I tested the Loudness Equalization enhancement (for a different purpose).  Setting the enhancement on my test system and then switching the enhancement off resulted in the “Low Sound” syndrome.  It took some amount of work to recover from that mess. The Loudness Equalization enhancement, in this author's opinion, is to be avoided unless its use is necessary.
    FLIPPED:
    The original intent of this procedure has been to provide a means to increase the amount of sound available from the onboard speakers on notebooks that are equipped with beats-audio IDT sound drivers.  The “Pre-work” on my original post was overwhelming the intent.  If your system is healthy, and the only reason to read this document is to enhance the amount of sound from the speakers, there is no need to hash through the work to fix your IDT driver installation.  I’ve moved that section to the end – IDT installation and other work has become Part Two.
    You must have your IDT HD driver successfully installed into your system.   The proper IDT HD driver contains the beats-audio interface.
    Where to Start?
    If you have “No Sound”, the Enhancement process may not work for your system.  Please take a look at Part Two and decide whether any of the steps in that section apply to you.  It is not my intention that you waste your time trying things you’ve already done over and over to regain the sound on your system.  There are many posts on the forum on how fix “No sound”.  This post addresses only a couple of “No sound” issues.   There is one slight possibility – see the section about the controls in iTunes – make sure your sound players volume controls are not mis-matched – and make sure you didn’t turn something OFF by accident.  If you turned off the sound while watching a movie and now the HDMI sound is off  - Poof!  You might not have any sound – anywhere.  It's just something to check...
    If you have “Low Sound”, you might consider reinstalling your IDT driver to see if the issue can be corrected: IDT reinstallation is described in Part Two.
    SideBar:  As of 24-Nov-2011
    If you have a dv7t: check on your HP Software and Driver website for a new IDT HD audio driver.  Depending on your model, there may be a new version of the IDT driver, BIOS, and other important updates.
    Part One
    Some Setup Checks and on to the Enhancement
    Make sure all basic Sound settings are set to “Default” to start.  
    Portions of this procedure are "not of my invention".  Full credit will be given later in the Post.  This section explains how to increase the amount of sound coming from the onboard speakers.  It also attempts to give you a bit of control over the kind of sound coming from the speakers that you may not have at the present.  Beats-audio is great; frankly, though - it's made for external powered speakers or headphones... what you get from the speakers on the notebook leaves something to be desired.
    A while back I found a very interesting post on the topic of increasing the sound from the onboard speakers.  The post was originally written for the HP Envy15. I believe the post has merit - Part One of this procedure is based on that original post.
    I tested the suggested combined actions – it does work (at least on a healthy system).  The sound quality showed improvement over the standard “out-of-the-box” beats-audio setup and the quantity of volume increased.  In other words, this procedure makes the sound coming from the onboard speakers louder without the use of the Loudness Equalization enhancement setting.
    I would suggest trying this “Enhancement” under the following circumstances:
    Sound Quality is Poor, or the amount of sound from the speakers needs improvement
    Sound is quantity “LOW”*
    Sound is absent AND you believe the absence is NOT due to hardware failure.**  See note on iTunes.
    NOTES:
    * If your LOW sound issue is severe, it may ONLY respond to using the Loudness Equalization enhancement, in which case this procedure is not recommended for your use.  The two are not compatible.  See Part Two.
    ** If there is NO sound on your computer, it’s possible that completing this procedure may not result in any improvement.  See Part Two.
    Sound Controls – iTunes, Media Player
    I would add to the emphasis on checking the volume on one’s iTunes setting.  If iTunes volume is turned down, the notebook’s speakers will respond to that – turn up the volume in iTunes without adjusting the volume in the volume mixer and the sound on the notebook will not increase properly (or will suddenly jump).  It’s a juggling act and one that must be taken into account when the sound is being reset.   Additionally, if you have other audio players on your computer – in addition to those mentioned in the post – be sure to check them for volume controls:  it is important during a sound reset that all the sound players be in sync.  If you miss this, you may not get your sound back. 
    Check for this mismatch in sound volume controls if you do not have sound or if you did have sound and, at some point you turned OFF your sound while watching a moving, a DVD, a something on HDMI controlled audio - and suddenly - you do not have any sound.  Sound controls get tangled up.  Sometimes you just have to unplug it, but you do have to check the controls.
    Sample Rate and bit Depth
    I do not use the suggested Sample Rate and bit depth of 24bit 96000 Hz.  My system cannot tell the difference and defaults everything to 16bits – my recording equipment cannot discern the difference.   My ears lack sample rate sophistication.   I’ve left my dv7t Quad sound, Default Format (sample rate bit depth) at 16bit, 48000 Hz (DVD Quality).  Sounds fine and it’s where most of my crummy recordings are set anyway.  Don’t lose sleep over this one.
    Where’s my Taskbar ICON?
    A couple of HP forum posts have mentioned the loss of the beats audio icon from the Taskbar tray – the icon should restore itself if one can force the IDT driver to reinstall.  Without the IDT driver, beats-audio is not going to work.  Assuming the driver has installed and one can reach the beats-audio panel from the Control Panel, THEN it’s possible that for some weird reason the Taskbar icon didn’t reset.  It might be possible to try and force a reload of the beats panel controller into the Taskbar.  I think this is the file.
    For a 64bit system:     C:\Program Files\IDT\WDM\sttray64.exe
    The Original Post and Credits:
    The original procedure and excerpts from that Post follow. Edits have been made to make it easy to read and to follow.  The credits and original link are at the bottom of this page.  My thanks go to JJ and JJ’s HP Envy15.
    From the Original Post:
    Originally Posted by bigcat400
     I find the volume on this machine extremely low. Unless the room is totally quiet I can't hear a thing. Is this normal on this system, or could it be a driver issue? I am running the latest sound driver from HP's web site. 
    From JJ:
    It took me awhile but I now have the sound level about 3x what it was to start with. Try these tweaks:
    Sound Enhancement Procedure 
    Control Panel > Sound > Playback > (Highlight) Speakers and Headphones > Configure
    New Window ‘speaker setup’ > Test (should hear sound L/R) > Next >
               UNCHECK ‘Front left and right’ (if checked) > Next > Finish
    Sound > Playback > (Highlight) Speakers and Headphones > Properties >
                 Enhancements > bass boost > settings > 80 Hz / boost 3db  > Apply
                 Tone Controls > Bass +1   Treble +3  > Apply
                 Advanced > Default Format > 24 bit 96000Hz > Apply
    NOTE:
    After this DO NOT use the Beats control (Fn + B) or it will reset the tone controls.
    HP dv7(t)
    Taskbar > beats-audio panel
    OR
    Control Panel > Beats Audio Control Panel  
            Listening Experience > Graphic Equalizer > Custom
            -1, +8, +10, +8, +9, +9, +9, +8, +9
    Remember that these are suggestions – start here and re-adjust later as desired.
    LEFT SIDE
    Make sure Beats Audio is CHECKED
            Click the “Music” radio (round) button
            65, 65, 85, 65, 65
    NOTE:  The Left Side settings are somewhat arbitrary.  The “Center” setting is higher – this provides the most sound and should be set higher at least initially for testing, especially if your system has sound issues.
    The next section is partially excerpted from the original Post – Remember: JJ’s post was written for HP Envy15 – please adjust your results accordingly.  Edits have been made for readability.
    Control Panel > Beats Audio Control Panel
    Playback > Speakers and headphones > Arrow above Speaker symbol and Select Small Speakers
    Select Equalization> Select 'custom'>
    Adjustments for this are mainly to boost the signal level in the preamp so we get higher volume while not distorting the sound from the tiny built in speakers.
    My setting values are as follows: left to right;
    -1, +8, +10, +8, +9, +9, +9, +8, +9, +10
    MAKE SURE TO CLICK SAVE WHEN DONE! 
    Note: Do not crank up the Bass (31hz) control or it will overload the speakers which can't reproduce this anyway, you can even turn down more if you have distortion at high volume.
    Check that the slide controls for 'master' and 'speaker symbol' are all the way up.
    This should make a big difference in sound volume and quality, and there is one last way to get louder sound. Depending on what you use to play back your audio you can adjust the program’s sound settings or EQ controls also.
    In iTunes the EQ has a 'preamp' slider which I boost to about +6, this increases the output level while leaving the EQ settings alone (make sure to check the turn EQ on box).
     Windows media player:  you have to raise all EQ levels equally (not too much) to boost without affecting sound quality.
    In general it is not a good idea to use more than one EQ system in an audio signal or you get more distortion, so don't adjust the EQ curves or bass/treble on more than one device.  I chose the Beats / IDT EQ to make the tonal adjustments because it is the audio driver program and preamp that outputs to the speakers, so it should have the best sound quality.
    Any adjustments before the preamp that add distortion will just be amplified, so go easy on adjustments in your play back programs.
    Finally, when you play your audio,
    Sound > Open Volume Mixer >
    Make sure to click the Sound logo in the Taskbar so the slider pops up>
    Click ‘mixer’ then you should see all the sliders for your devices;
     You can independently adjust the levels for the right mix.
    If you open the Beats panel and minimize it then a mixer slider also shows for this and you can dial in the effect of the EQ settings.
    Headphones:
    One last thing; When listening to headphones you will need to increase the bass EQ setting (since headphones can reproduce the low frequencies) in the Beats panel or I just change the drop down selector to the one with a flat curve (beats studio I think) -- the volume for my headphones was not an issue so I defeat the EQ for better sound quality.
    Whew. I Didn't think it was this complicated when I started typing....
    Hope everyone enjoys better sound with this.
    JJ 
    ENVY 15 l i5 540M l ATI 5830 GPU l 8GB DDR3 1333 l 2 x 160 GB SSD l 1920x1080 glossy l Win7 Pro l 10,273 3Dmark06   Last edited by JJB : 12-27-2009 at 03:41 PM.
    End of Excerpted Post 
    Credit belongs to the original author of the original procedure:
    JJB from HP beats-audio / Sound Reset Procedure 
    Part Two
    Loudness Equalization – and the LOW Sound Result
    I was testing the system sound… CD playing in the background: Sting “If on a Winter’s Night” 02 Soul Cake playing through iTunes – standard speakers-headphones (beats-audio coasting along). 
    Sounds -> Playback Devices -> Speakers and Headphones -> Properties -> Enhancements 
    I have rewritten this part three times trying to get it right. Here’s the gist:
    I switched on the “Loudness Equalization” enhancement.  The sound jumped; it was loud and distorted.  I switched the enhancement off – the sound dropped off and didn’t come back.  I turned up the volume (with the slider) and down and up and down – and I was hearing Less and less sound from the speakers:  “Low Sound Syndrome”:  I was hearing what would be expected at setting of 7%.   Well, that sucks.  (Technical term.)
    Based on this experience, I hypothesize that it’s possible to lose one’s sound entirely just by initially adjusting this one enhancement and then losing control over the ensuing ever diminishing returns.  I didn’t continue to test this into a theory.  It’s a hypothesis.  If I had an extra dv7 sitting around, I might sacrifice it on such testing.  I gave up right away and went into recovery mode while I still had some sound.
    Recovery:
    After the Loudness Equalization was turned off,
    Recovery Attempts to recover normal sound levels included:
    Resetting all Sound to Default settings,
    Installing the driver from the webpage (standard load – download, double-click and install), reboot,
    “Hard Reset”. 
    It was finally necessary to force load the IDT HD driver to recover the sound to its normal levels; that is, the driver was Uninstalled and allowed to reinstall at boot.  (“Local” install from the Device Manager also works.)
    Commentary:
    I did not bother with a registry cleaning at this point - it may have made a difference, though it's unlikely since the driver needed to be completely reset by this time.  I advocate registry cleaning!  Bad things happen to good computers because of a dirty registry.  Use your favorite or download CCleaner (free).
    Try a Driver Update:
    You can always check for Driver updates here – If the driver does update - you may be done with this part.  Check the sound and proceed to "Enhancements".
     At the Right-Click > Update Driver Software
    Audio Driver “Uninstall”
    Control Panel -> Device Manager -> Sound, video and game controllers
              Right-Click   IDT High Definition Audio CODEC -> Uninstall
    You have a choice at this point
    If you do not have the means to replace your driver,
    THEN do not delete your driver from the computer
    OR - If you believe the driver is not working at all,
    And / Or you have tried the standard Uninstall/self-install method previously without results,
    AND You have the means to REINSTALL that driver from scratch*
    Then you may delete the driver -
    *Driver Installation From Scratch Requires the following:
    You have your IDT HD driver on your computer as a sp*.exe file, for example, in Downloads
    Reinstall with Boot:
    Shut down the system
    Reboot
    The driver may install itself at login as the system scans for hardware changes
    OR
    Reinstall WITHOUT BOOT - Initiate the scan for hardware changes:
    Right-Click on the IDT driver , >  "Scan for Hardware Changes"
    --> Check your sound at this point.  It's possible that the driver has in reinstalled itself.
    Manual Driver Installation - Comments:
    There are a couple of paths used to get the IDT driver onto your system.  You can download it from your HP Software and Driver website.  You may have been given the path to your IDT driver at the HP ftp softpaq site.  The package is downloaded as a sp*.exe file.   You may download the software as often as you need it.  Make sure you have the package downloaded before you delete your driver.
    Once you have downloaded that package onto your system, the original sp* file will stay intact.  As long as you do not delete it, you can reuse it.  Once you do install the driver onto your system, an installation directory is created in C:\SWSetup, named the same as the sp* file (without the .exe extension). 
    In C:\SWSetup\sp* are all the files necessary to reinstall your driver.  If you install the software from the sp*.exe file in your Downloads folder, the new installation will ask you whether to overwrite the data in the SWSetup/sp* with the contents of the .exe package – do it.  The reinstallation is just unwrapping and redistributing what’s in the .exe file into the same SWSetup/sp folder. 
    If the "Driver Store" is removed, that is, if the driver package is ever removed from C:\SWSetup, you can reinstall from the sp* file as long you you have it in your Downloads folder - it will recreate that SWSetup/sp* folder.
    What about Versions?
    Latest is Usually best.  If you are concerned AND you think you may not be able to get another a copy of an older driver that is in C:\SWSetup\sp*, make a copy of the folder before uninstalling any driver or making any changes.
    Installation from the Original sp* package
    Find the sp* file on your system.  It will be most likely be located in your “Downloads” folder.
    Simple Driver Installation from the 'Saved' installation sp* file:
    Close everything that isn’t needed, browsers, games, windows…
    Right-Click on the installation package (the sp* file), Select 'Run as Administrator' and start the installation
    Answer any questions…and follow the instructions
    or...
    Installation from the Device Manager
    If the driver software is still on the system from a previous installation, it is located in C:\SWSetup
    You can tell the Device Manager to access the package on the system:
    Control Panel > icons > Device Manager > (Highlight) IDT High Definition Audio CODEC >
                          Right-Click > Update Driver Software > Browse my computer for driver software
                          Browse to C:\SWSetup\sp*
                          Be sure the “Include Subfolders” box is CHECKED
    27-Nov-2011
    Audio Services Check / Restart
    This section is not strictly part of the "Enhancement" procedure.  It has been included because it is necessary that these settings be correct so that the sound can function properly.  If you are not having sound issues, skip this part...
    Check system Services to make sure that your sound related services are running as they should.
    Restart each service (except as noted):  Right-Click > Restart
    Control Panel -> icon -> Administrative Tools -> Services > bottom of page > Standard (optional - makes it easier to column sizes)
    Sound services must be showing as
    Status = Started
    Startup Type = Automatic
    Sound Services:
    Audio Service
    Multimedia Class Scheduler
    Windows Audio
    Windows Audio Endpoint Builder
    Power (check only)
    RPC (check only)
    That’s it.
    It’s a matter of tweaking the settings to get results.  Do not forget that that Left/Right Speakers setting is turned off in Speakers Configure.  It’s not a big deal (assuming this works), but it’s DIFFERENT and it needs to be kept track of.
    I hope this helps your sound work better!
    Kudos are Earned!
    Kind Regards,
    Dragon-Fur

    Nice extensive research on reseting Beats Audio on the HP laptops.
    Just bought the Envy 17t-3000 and I updated all the drivers via HP Support Manager.
    BEFORE the update, the Beats Audio worked well..
    1. Press the dial and the popup box comes up ~3 secs
    2. Volume indicator swirl appeared to show volume level
    AFTER the update, something changed the Beats Audio... had to re-install the latest driver from HP website (even after contacting HP Tech support via chat and email several times)...
    1. Press the dial and the popup box comes up ~10-12 secs now!
    2. Volume indicator swirl DISAPPEARED so volume level indicator is GONE
    Sure the sound works but NOW I do NOT know or remember the volume level whenever I listen to music.
    You can barely tell on the Windows Speaker icon on Icon bar since 2 sound waves indicate at least 50% sound level but that's it!
    I have the following softwares and checked their settings and set them all at 50% and use the Beats Audio dial to control the volume whenever the programs are used:
    1. WinAmp
    2. VLC player
    3. MPC
    4. WMP
    No matter what I try, it appears that the Beats Audio Volume Control Swirl Indicator is GONE! Worse, there's NO Windows volume control indicator unless leave the Volume Mixer open!
    Anyone know how to fix this problem and bring Back the Audio Beats volume indicator??
    Thanks!

  • FAILURE TO RECOVER FROM A RECOVERY USB SENT BY HP

    I have just received a recovery USB from HP for my new HP ENVY TouchSmart 15t-j100.
    Started the process and when it came to the point to begin installation of software, it stopped and a pop up failure message said the below. Please heeeeelp. Thanks
    ==============================
    [17:11:24.27] Failed to configure RAID0 + SRT
    [17:11:24.27] Please check C:\System.sav\Logs\RSTPrep.log for more information
    [17:12:19.99] ------------------------------------------------------------------------------------------
    ***CTO Error condition has been dtected in [Factory Update] phase !! ***
    [17:12:19.99] Suggest to create PIN-log and send to TWN PDC NB-PreinPM for further analysis ...
    [17:12:19.99] ------------------------------------------------------------------------------------------
    [17:10:50.90] Start BBOffline.cmd...
    UPDrv=[C:]
    [17:10:50.92] Set UIA Error Code to 951
    [17:10:50.93] Delete [FBI] folder.
    [17:10:50.93] WinPE is 64bit.
    [17:10:50.93] Check BIOS platform key enrollment...
    [17:10:50.95] Starts [FixUps].
    [17:10:50.95] ---------------------------------------------------------------------
    [17:10:50.95] FixUps.cmd...
    [17:10:55.47] FixUps.cmd completed...
    [17:10:55.47] ---------------------------------------------------------------------
    [17:10:55.47] Starts [Tweaks for SSRD].
    [17:10:55.47] ---------------------------------------------------------------------
    [17:10:55.47] SSRD Tweaks to change user default locale...
    [17:10:55.47] Copy C:\System.sav\Util\TDC\MCPP\FBIRES\FBIUSRES.DLL.
    [17:10:55.61] Run "Dism.exe /image:C:\ /Set-SKUIntlDefaults:en-US ".
    [17:11:02.76] ---------------------------------------------------------------------
    [17:11:02.76] Launch PININST.exe for Offline ...
    [17:11:12.91] Starts [Sleep 10 sec].
    [17:11:22.92] Starts [Create RStoneFUpdate.INI].
    [17:11:23.73] Starts [create 1GB Pagefile for offline].
     Volume in drive C has no label.
     Volume Serial Number is D2E9-813E
     Directory of C:\System.sav\bbv
    04/24/2014  05:11 PM     1,073,741,824 pagefile.sys
                   1 File(s)  1,073,741,824 bytes
                   0 Dir(s)  83,698,286,592 bytes free
    [17:11:23.81] Brand detection.
    [17:11:23.83] Customize error handling for Specialize ~ BBV1.
            0 file(s) copied.
    [17:11:23.83] ---------------------------------------------------------------------
    [17:11:52.07] Check Win 8.1 configuration...
    [17:11:53.06] Check system ID...
    [17:11:54.09] Check OS SKU...
    [17:11:55.08] Check option code...
    [17:11:56.11] Check brand name...
    SKU_DEF_COUNTRY=[244]
    SKU_DEF_SYS_LOC=[en-US]
     Reset country in administrator...
     Reset country in Default user...
     Reset System locale
    Deployment Image Servicing and Management tool
    Version: 6.3.9600.16384
    Image Version: 6.3.9600.16384
    Reporting offline international settings.
    Default system UI language : en-US
    System locale : en-US
    Default time zone : Pacific Standard Time
    User locale for default user : en-US
    Location : United States (GEOID = 244)
    Active keyboard(s) : 0409:00000409
    Keyboard layered driver : PC/AT Enhanced Keyboard (101/102-Key)
    Installed language(s): en-US
      Type : Fully localized language.
    The operation completed successfully.
     Updated System Locale info...
    [17:12:04.12] Start PIN Tweaks...
    [17:12:05.12] ---------------------------------------------------------------------
    [17:12:05.12] PIN Tweaks to hide All for BurnBoot BBV and BBV2 on restored image...
    [17:12:05.12] ----------------------------------------
    [17:12:05.12] Tweaks for OOBE's Unattend.xml
    [17:12:05.12]  to pick up the proper file...
    [17:12:05.12] ----------------------------------------
    [17:12:05.12] rename unattend.org to unattend.or_
    [17:12:05.47] ----------------------------------------
    [17:12:05.47] without Light Sensor..
    [17:12:05.47] ----------------------------------------
    [17:12:05.47] This is Restored image by SSRD [SSRD.flg]...
    [17:12:05.47] ---------------------------------------------------------------------
    [17:12:06.12] Start MIR Tweaks...
    [17:12:07.12] ---------------------------------------------------------------------
    [17:12:07.12] [MIR Tweaks] ...
    [17:12:07.12] ---------------------------------------------------------------------
    [17:12:08.12] Start Factory Update(s)...
    [17:12:10.12] Start QFE Offline installation...
    [17:12:19.86] PININST_OFF: PASSED...
    [17:12:19.89] Type C:\System.sav\Logs\BBFindEr.log...
    [17:12:19.89] Type C:\System.sav\Logs\BBFindE0.log...
    ---------- C:\SYSTEM.SAV\LOGS\PININST_OFF.LOG
    Result=PASSED
    [17:12:19.92] Type C:\System.sav\Logs\BBFindEr.log...
    [17:12:19.92] Type C:\System.sav\Logs\BBFindE0.log...
    ---------- C:\SYSTEM.SAV\LOGS\BBFIND4QFE.LOG
    [17:12:19.92] Check FUList.log if there is duplicate Desc...
    Couldn't access C:\System.sav\logs\FUList.log...
    [17:12:19.99] No Duplicated Desc is found... PASSED.
    [17:12:19.99] There was no Factory Update...

    Hey Captain_Nemo,
    Sometimes there are just areas of the HDD that need repairing.
    Please note remove any and all USB devices, and remove memory cards from the card reader slot. Disconnect all non-essential devices. ONCE YOU HAVE BACKED UP YOU SYSTEM--- Start by turning on the computer and immediately start pressing F11, Select the section that says you need to perform a repair of Windows or go to safe mode with command prompt. 
    Can get to safe mode with command prompt?  sfc /scannow would scan your system for errors at the command prompt. You could check this Microsoft document on system recovery options. F10 BIOS setup and restore BIOS factory defaults.
     Hope this helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • XSLT Maps with Java enhancements - JCO_SYSTEM_FAILURE

    Hi,
    I have reviewed several postings regarding XSLT Maps with Java enhancements. I followed instructions and build a jar file and the XSLT document. I built one imported archive with the .jar and .xsl. For the class, The path get loaded properly.
    However, I still have a problem when and execute the interface.
    My xslt has the following information
    <xsl:transform version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns:ns="http://xyz.abc.sap.def.com"
        xmlns:javamap="java:xyz.Date_Time">
    <xsl:param name="inputparam" />
        <xsl:template match="/">
            <test><xsl:value-of select="javamap:getDateValue($inputparam)"/></test>
        </xsl:template>
    </xsl:transform>
    In SXMB_Moni I get the following error...
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Request Message Mapping
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="MAPPING">JCO_SYSTEM_FAILURE</SAP:Code>
      <SAP:P1>Exception in method processFunction.</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>"SYSTEM FAILURE" during JCo call. Exception in method processFunction.</SAP:Stack>
      <SAP:Retry>A</SAP:Retry>
      </SAP:Error>
    If i remove the line        
    <test><xsl:value-of select="javamap:getDateValue($inputparam)"/></test>
    The map ends successfuly.
    Comments would be appreciated.
    Regards,
    Sergio

    Stefan,
    Find the class and method definition below. The method is static and it returns the string.
    ==========
    package xyz;
    import java.util.Map;
    import com.sap.aii.mapping.api.AbstractTrace;
    import com.sap.aii.mapping.api.StreamTransformationConstants;
    import java.util.*;
    import java.text.*;
    public class Date_Time {
        private static AbstractTrace trace = null;
        public static String getDateValue(Map inputparam)
                trace = (AbstractTrace)inputparam.get(
                         StreamTransformationConstants.MAPPING_TRACE );
                Date now1 = new Date();
                SimpleDateFormat formatter = new SimpleDateFormat ("yyyyMMd");
                String dateString = formatter.format(now1);
                return dateString;

  • Problem with Enhanced Receiver Deterrmination

    Hi,
    I am facing an issue with the Enhanced Receiver Deterrmination (ERD) at runtime for an EOIO scenario. When a message gets split for the defferent service it fails complaining about mapping. If I retrigger it gets delivered.
    However if I provide a queue filter this failure does not occur even if logically that queue filter definition does not make any sense to the scenario. for eg: The filter is maintained for a different scenario say A, but scenario B which has ERD will work. I am well confused, shoot your questions pls. Please help in case you have faced similar issue. We are on 07s SP17.
    regards
    Unni

    Hi Venkat,
    You are correct, I use extended Receiver determination. As I have mentioned earlier, the scenario works well if I specify the queue filter, so all related objects exists.
    Basically the split message with out a queue filter is poinitng back to the source message. But if I re-trigger from moni it goes well. With a queue filter, it works without a cause.
    See the sample message for error
    - <SAP:Receiver>
      <SAP:Party agency="http://sap.com/xi/XI" scheme="XIParty" />
      <SAP:Service>BS_ENVISION_SAP_EMERG</SAP:Service>
      <SAP:Interface namespace="urn:sap-com:document:sap:rfc:functions">ZWM_INBOUND_NOTIFICATION_EMERG</SAP:Interface>
    - <SAP:Mapping notRequired="M">
      <SAP:ObjectId>oPLLbgxJOWimAK6rdZb/MA==</SAP:ObjectId>
      <SAP:SWCV>oZGAQNmpEdym2dnSCqoHjQ==</SAP:SWCV>
      <SAP:SP>-1</SAP:SP>
      </SAP:Mapping>
      </SAP:Receiver>
      *<SAP:Interface namespace="http://enbridge.com/envision/envision2/jdbc">MI_TBL_WMS_SOURCE_STAGING_SDW_EGD</SAP:Interface> *
      </SAP:Main>
    *The actual should be *
    - <SAP:Receiver>
      <SAP:Party agency="http://sap.com/xi/XI" scheme="XIParty" />
      <SAP:Service>BS_ENVISION_SAP_EMERG</SAP:Service>
      <SAP:Interface namespace="urn:sap-com:document:sap:rfc:functions">ZWM_INBOUND_NOTIFICATION_EMERG</SAP:Interface>
    - <SAP:Mapping notRequired="M">
      <SAP:ObjectId>RNPgv18MOBmjhpr+oO1mNw==</SAP:ObjectId>
      <SAP:SWCV>oZGAQNmpEdym2dnSCqoHjQ==</SAP:SWCV>
      <SAP:SP>-1</SAP:SP>
      </SAP:Mapping>
      </SAP:Receiver>
      *<SAP:Interface namespace="urn:sap-com:document:sap:rfc:functions">ZWM_INBOUND_NOTIFICATION_EMERG</SAP:Interface>*
      </SAP:Main>

  • Enhance BOL with Z-fields for Web Service

    Hello,
    I need to create Web Service for quotation.
    I want to add some Z-fields to this WS. I think I need to enhance BTAdminH BOL.
    I already append structure with Z-fields to BTAdminH BOL, however I don't know where I should write ABAP code for filling those fields.
    How can I find class for BTAdminH BOL, and how can I convert it to Z-class?
    Is it risky to do in already alive system?
    Best Regards,
    Veronica

    Hello Robert,
    I have already read this blog and my colleague tried to do the same, however we can't transfer it to QA system because the development is in local package (as it is described in the blog).
    Do you know how to transfer it to QA system?
    Failure to transfer to QA leads us to search other solution like enhance BOL.
    Veronica

  • Syntax error when creating Overwrite method - implicit enhancement

    Hi,
    I am working at a customer site, and need to implicitly enhance certain methods. I would like to create an Overwrite Method for the following class/method:
    CL_CRM_MKTDEF_DEFAULTS_PERSIST -> HEADER_WITH_KEY_EXITS_IN_DBASE( )
    I proceeded in the following way:
    Open class CL_CRM_MKTDEF_DEFAULTS_PERSIST in class builder (SE24)
    Select menu path Class -> Enhance
    Create, or select, enhancement implementation ZCRM_MKTDEF_PRD
    Select method HEADER_WITH_KEY_EXITS_IN_DBASE, select menu path Edit -> Enhancement Operation -> Add Overwrite Method
    Click on u201CNavigation to Overwrite Exitu201D
    After navigating to the Overwrite Exit, I click on "Check" to perform a syntax check (notice, I have not yet implemented any code. Everything so far has been done by the wizard).
    Now, I get the following error:
    Enhancement Implementation ZCRM_MKTDEF_PRD
    Unable to interpret "IS_DEFAULTS_ATTR". Possible causes: Incorrect
    spelling or grammar.
    When I create Overwrite methods for any other method in the same class, the same error does NOT occur. As far as I can tell, there is nothing special about this method that should cause this error.
    I would greately appreciate any help that any of you could give me on this one.
    thank you and best regards,
    - Marius
    PS: Here is my code (which was generated after I followed the outlined steps above) for your reference:
    CLASS LCL_ZCRM_MKTDEF_PRD DEFINITION.
    PUBLIC SECTION.
    CLASS-DATA OBJ TYPE REF TO LCL_ZCRM_MKTDEF_PRD.
    DATA CORE_OBJECT TYPE REF TO CL_CRM_MKTDEF_DEFAULTS_PERSIST .
    INTERFACES  IOW_ZCRM_MKTDEF_PRD.
      METHODS:
       CONSTRUCTOR IMPORTING CORE_OBJECT
         TYPE REF TO CL_CRM_MKTDEF_DEFAULTS_PERSIST OPTIONAL.
    ENDCLASS.
    CLASS LCL_ZCRM_MKTDEF_PRD IMPLEMENTATION.
    METHOD CONSTRUCTOR.
      ME->CORE_OBJECT = CORE_OBJECT.
    ENDMETHOD.
    METHOD IOW_ZCRM_MKTDEF_PRD~HEADER_WITH_KEY_EXITS_IN_DBASE.
    *" Declaration of Overwrite-method, do not insert any comments here please!
    *"methods HEADER_WITH_KEY_EXITS_IN_DBASE
    *"  importing
    *"    !IS_DEFAULTS_ATTR type CRMS_MKTDEF_DEFAULTS_DATA
    *"  returning
    *"    value(EV_EXISTS) type CRMT_BOOLEAN
    *"  exceptions
    *"    FAILURE .
    ENDMETHOD.
    ENDCLASS.

    Note 1256889

Maybe you are looking for