Inhibit output not responding in PCI7344 motion controller.

I need to use inhibit output as a enable signal for a third party drive unit. I have configured it as active high and enabled it. Inhibit output is pulled up to 5V with 270 ohm resistor. But inhibit output is not changing its state irrespective of it is being enabled or disabled? Please suggest any corrective action? Thank you.

Hello Pras,
Are you using the UMI to connect to your drive or cabling directly to the 7344?
If you are connecting directly to the 7344, then the inhibit output should sink plenty of current to pull the output low with a 270 ohm pull up resistor. Make sure the inhibit is enabled and the polarity is set appropriately for your application. Initialize the controller and check the output state. Go to the 1D Interactive section and press the "Kill" button to disable the drive. You should see the inhibit line change state.
If you are using the UMI, then there are more settings to consider. Make sure to set the inhibit output polarity switch on the UMI appropriately. Enable the inhibit output in software, set the polarity, and intialize the controller. The in
hibit output on the UMI should be inactive. If it is active (ie. in an inhibited state), then try changing the inhibit input polarity switch on the UMI. The UMI will "OR" together the per axis inhibit from the 7344, the per axis inhibit input on the UMI, and the inhibit all input on the UMI. Once the polarities are set correctly, you should be able to see the output changing state.
Regards,
Brent R.
Applications Engineer
National Instruments

Similar Messages

  • Where is the inhibit output per axis on pci7344/umi7774

    The umi7774/pci7344 has in Axis1 control connector, pin 6, "Enable"
    is that is the "inhibit output signal" that is in MAX in the Axis configuration tab?

    Hi John,
    wow, you really know, how to keep up people's motivation who try to help you...
    Anyway, if you need a specific answer, please post specific questions. From your original question I couldn't tell, what you have read and what not, so I'm sorry, if my first answer didn't meet your expectations.
    The enable signal on the UMI is an output, that should be connected to a corresponding input on the drive. Please compare the signal compatibility before connecting the pins. Typically drives provide an Enable input, that is used to turn on/off the motor power by an external signal.
    As described in the manual, the enable signal toggles depending on several signals. You may need to adjust the polarity switches on the UMI to make the Enable output work according to your needs. E. g. depending on your setup there is a chance that a wrong polarity of the Fault input signal sets the Enable output to a fixed level.
    You can test if your Enable signal is working correctly by using 1D-Interactive. Hitting the "Kill" button should assert the signal, "Halt" should reset it again.
    I hope that helps,
    Jochen

  • Dual loop operation using PCI7344 motion controller

    I am using PCI7344 to control servo motor. Primary feedback to the controller comes from the motor encoder. Secondary feedback from the torque transducer is given to the ADC input. The motion controller is set to operate in absolute position mode with velocity, acceleration, Deceleration, target position values appropriately set. I expect the trajectory position to change automatically based on the torque feedback from the torque transducer. Is my assumption correct? I have referred the NI-Motion user manual, 7344 hardware manuals with out success. Any suggesions? Thanks in advance.

    In order to perform torque control using the NI-Motion Controller, you need to use the torque sensor feedback as the primary feedback. So in the axis configuration, the ADC where your sensor is configured must be set to primary feedback. You can then use the encoder feedback to work as a secondary (velocity feedback) device. Because torque does not behave in a linear fashion like position does, you will need to have several tuning schemes and apply a gain scheduling algorithm in order to properly tune the motor to maintain torque at any point of the trajectory. You can then use the read encoder function to read the ecoder position at any torque during the movement. Your setpoint and target position in the 1-d interactive will now be in ADC bit values. The 7344 contr
    oller has 12 bit ADC's which means that for a sensor with a +/- 10 volt range, you will have 20/2^12 = 4096 bit counts of movement range. This means that + 10 volts will be represented as ~ 2048 and -10 volts will be ~ -2048 and so on. Keep in mind that the ADC's on the 7344 are not calibrated so you might have a little bit of discrepancy with these numbers though youn will always get the full range of the ADC.

  • At selection screen output not responding

    Hi ppl,
    I've 4 selection options in my screen. however I just need user to insert only 1 of the 4 for searching. Therefore i included 4 radio buttons. when user select <i>rbf</i>, <i>sfileno</i> will activer and other 3 will be grayed out, when user select <i>rbi</i>, <i>sidnum</i> will active and other will not be active and so forth. You can see the codes below.
    However, during the program running, I found out when i select <i>rbf,</i> the other select options fields - <i>sfileno</i>, <i>sidnum</i> n <i>scompsno</i> are not inactive/grayed. It is the same when I seledt the other radio button. I just seem that i receive no response from the program. What have i done wrong here. please help. TQ
    SELECTION-SCREEN BEGIN OF BLOCK frm1 WITH FRAME TITLE text-t01 .
    SELECT-OPTIONS : sfileno FOR zlic_masterdb-nofailpermohonan modif id f01
                      sidnum FOR zcustomer-idnumber modif id i01,
                      sconame FOR zcustomer-contactname modif id n01,
                      scompsno FOR zcom_compdhdr-compsno modif id c01.
    PARAMETERS: rbf RADIOBUTTON GROUP g1 ,
    rbi RADIOBUTTON GROUP g1,
    rbn RADIOBUTTON GROUP g1,
    rbc RADIOBUTTON GROUP g1.
    SELECTION-SCREEN END   OF BLOCK frm1.
    INITIALIZATION.
    sfileno = '00001'.
                     AT SELECTION-SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
      CHECK SCREEN-GROUP1 = 'f01' OR
    SCREEN-GROUP1 = 'i01' OR
    SCREEN-GROUP1 = 'n01' OR
    SCREEN-GROUP1 = 'c01'.
    IF rbf = 'X'.
      IF SCREEN-GROUP1 EQ 'f01'.
        SCREEN-ACTIVE = 1.
      ELSEIF SCREEN-GROUP1 EQ 'i01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'n01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'c01'.
        SCREEN-ACTIVE = 0.
      ENDIF.
    ELSEIF rbi = 'X'.
      IF SCREEN-GROUP1 EQ 'i01'.
        SCREEN-ACTIVE = 1.
      ELSEIF SCREEN-GROUP1 EQ 'f01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'n01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'c01'.
        SCREEN-ACTIVE = 0.
      ENDIF.
    ELSEIF rbn = 'X'.
      IF SCREEN-GROUP1 EQ 'n01'.
        SCREEN-ACTIVE = 1.
      ELSEIF SCREEN-GROUP1 EQ 'f01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'i01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'c01'.
        SCREEN-ACTIVE = 0.
      ENDIF.
    ELSEIF rbc = 'X'.
      IF SCREEN-GROUP1 EQ 'c01'.
        SCREEN-ACTIVE = 1.
      ELSEIF SCREEN-GROUP1 EQ 'f01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'n01'.
        SCREEN-ACTIVE = 0.
      ELSEIF SCREEN-GROUP1 EQ 'i01'.
        SCREEN-ACTIVE = 0.
      ENDIF.
    ENDIF.
    MODIFY SCREEN.
    continue.
    ENDLOOP.

    hi Enzo
    Check my sample code
    TABLES: eban,
            SSCRFIELDS.
    SELECTION-SCREEN BEGIN OF SCREEN 100 TITLE title.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.
    PARAMETER:rad1 RADIOBUTTON GROUP rad USER-COMMAND frad1 DEFAULT 'X',
              rad2 RADIOBUTTON GROUP rad .
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t02.
    PARAMETER: mtr AS CHECKBOX MODIF ID g3 USER-COMMAND chk1,
               p_matnr TYPE eban-matnr MODIF ID g1,
               sloc AS CHECKBOX MODIF ID g3 USER-COMMAND chk2,
               str_loc TYPE eban-lgort MODIF ID g4.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-t03.
    SELECT-OPTIONS: matnr1 FOR eban-matnr MODIF ID g2.
    SELECTION-SCREEN END OF BLOCK b3.
    SELECTION-SCREEN PUSHBUTTON /20(10) name USER-COMMAND UCOM.
    SELECTION-SCREEN END OF SCREEN 100.
    name = 'FETCH'.
    title = 'Test Report'.
    CALL SELECTION-SCREEN '100'.
    TYPE-POOLS slis.
    * declaration of internal tables and work areas to be used
    DATA: BEGIN OF it_pr OCCURS 0,
          banfn TYPE eban-banfn,
          bnfpo TYPE eban-bnfpo,
          loekz TYPE eban-loekz,
          statu TYPE eban-statu,
          ekgrp TYPE eban-ekgrp,
          matnr TYPE eban-matnr,
          werks TYPE eban-werks,
          lgort TYPE eban-lgort,
          preis TYPE eban-preis,
          peinh TYPE eban-peinh,
          END OF it_pr.
    DATA: BEGIN OF it_mat OCCURS 0,
          matnr TYPE eban-matnr,
          END OF it_mat.
    *DATA:BEGIN OF ITAB1 OCCURS 0,
      DATA: l_answer.
    DATA: it_fieldcat TYPE slis_t_fieldcat_alv,
          wa_fieldcat LIKE LINE OF it_fieldcat,
          it_event TYPE slis_t_event,
          wa_event TYPE slis_alv_event.
    * declaration of variables to be used
    DATA: r_ucomm TYPE sy-ucomm,
          mat_no TYPE eban-matnr,
          len TYPE i VALUE 1,
          count TYPE i VALUE IS INITIAL,
          iflag TYPE i VALUE IS INITIAL,
          iflag1 TYPE i VALUE 0.
    DATA :pr_id TYPE sy-repid,
    rt_extab TYPE slis_t_extab.
    INITIALIZATION.
      pr_id = sy-repid.
    probably it would sol;ve ur problem
    regards
    ravish
    <b>plz dont forget to reward points if helpful</b>

  • Motion controller card need to program PWM or not?

    I just want to know about motion controller card (coz may be i will use it)
    First, Motion controller card need to program PWM for drive DC motor or not? (If I want to control the dc motor by PWM signals!)
    Second, If my motor have encoder (increment) the motion controller card can be read the position or speed directly or not?
    Third, Normally motion controller card need Labview for programming or not?
    Lastly, Please, could someone give me some example programming or .vi for basic closed-loop dc servo motor ?

    bkk,
    here are the answers you are looking for
    Motion Control boards like the PCI-7344 generate a +/-10 V signal to control DC axes. As they can't provide enough power to drive a motor directly an external power amplifier like the MID-7654 or a 3rd party drive with a +/- 10 V command input is necessary. Typically these power drives generate  PWM power signals for the motors.
    All NI motion control boards provide inputs for quadrature encoder feedback (position and velocity).
    The NI-Motion driver provides a well documented API for LabVIEW, C and other programming languages.
    After installing the NI-Motion driver you will find lots of example programs for LabVIEW and C that demonstrate every aspect of the boards' functionality. NI motion controllers run the control loop in hardware so the examples will work for both, closed loop and open loop (stepper motor) applications.
    I hope that helps,
    Jochen Klier
    National Instruments Germany

  • Tonewheel Organ Not Responding To Midi Controller

    Hi Logic's EVB3 Tonewheel organ is not responding to my midi controller. it works fine if you input midi notes but i am unable to tiger the organ with the controller. which works fine with all of logic's other instruments. any help appreciated thanks lolly.

    Please search before posting, this is a very common new user problem and there are countless threads on it.
    The manual clearly says that the EVB3 responds on three MIDI channels, for the main, secondary and pedal manuals. By default, it's MIDI channels 1, 2, and 3 but the base channel can be changed.
    You should be transmitting on MIDI channel 1 to access the main organ manual, so change the MIDI channel your keyboard is transmitting on is the best way.

  • Leap motion controller is unplugged

     Product name: HP ENVY 17 Leap Motion SE NB PC
    Windows 8.1 64-bit
    Greetings,
    After a full system resotre the "fn + spacebar" is not making the leap motion controller tunring on, I checked in device manager its there, when I hover the mouse in toolbar over the controller icon I get the message "leap motion controller is unplugged".
    This question was solved.
    View Solution.

    Hi,
    The first thing I'd suggest ( unless you've already done so ) is to download and install the latest Leap Motion controller software on the following link.
    http://ftp.hp.com/pub/softpaq/sp67001-67500/sp67321.exe
    When the installation has completed, restart the notebook and let Windows fully load for a couple of minutes before checking the fn+spacebar combination.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • NI-Motion PXI Card Device Status = Is Not Responding

    I am unable to communicate with my NI PXI-7358 motion controller card.  The general tab in MAX for the card shows that "Device Status" = "Is Not Responding" see attached.  I have un-mapped and re-mapped the remote device.  I have also removed and re-seated the PXI card without any success.
    Solved!
    Go to Solution.
    Attachments:
    PXI-7358 - Is Not Responding.PNG ‏29 KB

    Hi Jeffmg, 
    This seems to be a known issue. There is an internal knowledgebase documenting this problem and a potential solution. 
    The solution according to the KB article:
    "This problem can occur when a previous board was mapped to the host machine. The NIMtnSvr.exe is based on Board ID's and sometimes gets stuck. To fix this, close any NI software running and then open the task manager and end the NIMtnSvr.exe process. This will shutdown the server and allow it to start from scratch the next time it runs. When you open MAX, the boards will appear on the local host correctly mapped."
    -N
    National Instruments
    Applications Engineer

  • The device PCI 6036E: Analog Input error:"the device is not responding to the base address",Output :No signal

    I am using PCI 6036E DAQ card, DAQ 6.9.2. , I have not connected to any external device.
    When I tested card(in Test Panel of MAX2.2,DAQ 6.9.2) an error appearing �the device is not responding to the base address� � then I pressed Yes, Then TestPanel window appearing�
    In analog Input Tag, there is an error �-10805�. This error also appearing when I run the standard analog input samples (use Delphi 6.0).
    I tested analog output functions in TestPanel, Delphi Examples, LabView 6.1. There are not error appearing but there is not output signal (using Oscilloscope to see).
    Output, Input digital functions are working correctly.
    Next I try to foll
    ow all the instruntions as recommended:
    -Changing TO another slots PCI
    -Reinstall Os WinXP,98SE�
    -Use another Computer�
    But all of the cases are still not working.(the above error still appeared, no output signal)

    Nvd,
    I'm sorry to hear about the problems that you are running into with your DAQCard. I can understand your frustration with the errors that you are seeing. You mention that you have tried to do some troubleshooting, I was wondering if you have tried all the troubleshooting techniques listed in this KnowledgeBase:
    http://digital.ni.com/public.nsf/websearch/DCFCDB240788F8D486256D6A00834D80?OpenDocument
    If you have tried all of those things, I would suggest one additional thing to try. I would suggest updating your NI-DAQ drivers to version 7.0. These drivers are the newest versions of our Data Acquisition Drivers, and can be downloaded from our website here:
    http://digital.ni.com/softlib.nsf/webcategories/85256410006C055586256BBB002C128D?OpenDocument&
    node=132060_US
    If you have tried all of the above troubleshooting options, please post a detailed description of what you have tried. This may help to clarify what is going wrong.
    Jed R.
    Applications Engineer
    National Instruments

  • Process MAD.EXE (PID=1932). All Domain Controller Servers in use are not responding:

    Process MAD.EXE (PID=1932). Topology discovery failed, error 0x80040a02 (DSC_E_NO_SUITABLE_CDC).
    Look up the Lightweight Directory Access Protocol (LDAP) error code specified in the event description. To do this, use Microsoft Knowledge Base article 218185, "Microsoft LDAP Error Codes." Use the information in that article to learn more about
    the cause and resolution to this error. Use the Ping or PathPing command-line tools to test network connectivity to local domain controllers.
    Process MAD.EXE (PID=1932). All Domain Controller Servers in use are not responding: 
    DC02.targetiletisim.local 
    DC01.targetiletisim.local 
    Process MSEXCHANGEADTOPOLOGYSERVICE.EXE (PID=1148). Topology discovery failed, error 0x80040a02 (DSC_E_NO_SUITABLE_CDC). Look up the Lightweight Directory Access Protocol (LDAP) error code specified in the event description. To do this, use Microsoft Knowledge
    Base article 218185, "Microsoft LDAP Error Codes." Use the information in that article to learn more about the cause and resolution to this error. Use the Ping or PathPing command-line tools to test network connectivity to local domain controllers.
    pls help me :(

    Hi,
    Please use dcdiag and nltest to test the connectivity.
    BTW, have you disabled ipv6 on Exchange Server.
    Thanks,
    Simon Wu
    TechNet Community Support

  • The embedded controller (EC) did not respond within the specified timeout period - Flex 15D

    Hello,
    I have an IdeaPad Flex 15D, and I have had several problems (mostly processor-related) in the time I have been using it. I contacted Customer Support twice, and finally did a system reset a few days ago after being told by Lenovo Support that my choices for fixing the problem were 1) Reset, or 2) Pay for a premium service to diagnose the problem. Needless to say (again), I went with option 1. So far I have not had any noticible problems with the processors, but there is a certain error showing up in the Event Viewer that I am concerned about. Lenovo Support has been next-to-useless troubleshooting my problems thus far, so I'm taking them here. The error is as follows:
    (Event ID 13)
    The embedded controller (EC) did not respond within the specified timeout period. This may indicate that there is an error in the EC hardware or firmware or that the BIOS is accessing the EC incorrectly. You should check with your computer manufacturer for an upgraded BIOS. In some situations, this error may cause the computer to function incorrectly.
    Sounds like the BIOS needs an update, right? Well, I went straight to the Flex 15D drivers page, and guess what? I quote the drivers page: Bios update is not required for this product. Not required? So, Lenovo ships a broken BIOS and then refuses to support it? I don't know if Lenovo employees ever read this forum, so this might not be the best way to get their attention, but I am so fed up with Customer Support and I want this issue to be known to more than just a few unhelpful 'tech support' people. The Flex 15D isn't one of the more popular laptops out there, so I can't expect anyone reading this to be able to duplicate this problem or really provide any support, but if you have any suggestions whatsover, please reply to this thread. Like I said, I want people to know, and hopefully we can get Lenovo's attention so they can fix this problem.
    Best regards,
    Owen Dugmore

    Hi,
    I understand that you get the error message when performing a full crawl. I have seen similar cases caused by IE proxy settings. You can try to edit the Internet Options>Connections>LAN settings. Uncheck ‘Automatically detect settings’.
    For more information, please refer to this site:
    Search error: crawler could not connect to the repository:
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/c230ab36-8d0b-4c25-bf86-33136d17642b/
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • Inhibit output per axis is always active, even if i KILL the axis in max

    Hi,
    I'm using pci-7344 with UMI-7774 and 3'rd party servo drive.
    everything works fine but the inhibit output signal on the axis,
    it is always ON and never changes state even when i press "Kill" the axis in MAX.
    I know that the inhibit output per axis on the UMI (wich ia named "Enable" in the UMI manual) is a combination logic
    of  some signals in the umi, for example: if the Fault signal is asserted then the "Enable" signal is asserted also.
     in order to debug the problem, i set the other signals that affect the "Enable" signal to value that i can be sure
    that will not affect the "Enable" signal, i do that so i can be sure that when i press KILL and Halt in MAX, the Enable sould be toggle off/on.
    The "Fault" input signal per axis on the UMI (User-supplied external Fault input (per axis)): i set the jumper in the UMI to "Active low", and connect the Fault+, Fault- to always be high, so the UMI
    always "think" that there is no errors from the servo drive.
    i made the wiring for the "fault on the UMI as described in :
    Figure 3-8. Example of Wiring a High-Side Switch to the Fault Input , page 3-10 in the UMI manual. 
    Same thing i do for the "Inhibit All" signal on the "Global Stop" connector on the UMI , as described here:Same for the Shutdown on this global stop connector.
    Now, i think, i can be sure that when pressing KILL the Enable sugnal need to change its state, nothing happened....
    i notice these thing: measuring the volt between the "Enable" pin on the axis
    and the Ciso, i get always +24VDC. is that should be 5V... ?
     there is a lot of names for the same signal that makes the debugging more difficult (Enable, INOUT1, INALL, inhibit output, per axis, etc...)
    P.S. i also can see any LED in the UMI that is Lit,  only the "Power V , Viso" LED is Lit.
    Please someone make this issue clear for all, cause i see a lot of posts in the forum of people who ask about
    the inhibit output per axis or in its other name "Enable" signal that output from the UMI per axis.
    Thanks
    MotiM
    Attachments:
    Knowledgebase_list_and_forum_posts_about_INHIBIT_OUT.html.txt ‏4 KB

    Hello Eric,
    Thank you for your reply, i'm trying to solve this for long time.
    I follow your instructions about the switched on the UMI and setting the parameters in MAX, re-initilized and .. the problem is still there...
    These is the configuration i made, i hope that something here will help you to help me solving this problem:
    1.  I'm using only one Axis on the UMI, so i set in mac all other axis to disable in the Axis Configuration tab.
    2.  The Axis that i'm using (Axis4) configured in this way :
         in "Motion I/O Settings" tab of this axis:
         Forward, Reverse,Home Limit switches is all "Enabled" and "Active High Polarity"
         Software Limit setting (Forward and Reverse) :  Disabled
         Inhibit Output setting :     "Enabled" and "Active High Polarity"
         Inhibit Input setting : is grayed, cant set its parameter (i see (in the grayed) that its set to : Disabled)
    3.  In UMI-7774:
         All the Axis that i dont use and set in MAX to Disabled, their switches in the UMI is "Active Low"
         i dont use them, and i tink its not relevant for which value they set, but this is the facts for troubleshoot this problem.
        The Axis that i'm using: Axis4 , the switches on the UMI board is set to :
         FAULT       :  Active Low
         ENABLE    :  Active High 
         LIMIT LED  : Active Low  
         On the UMI, only the Power V, Viso LED are Lit, all other LED in the umi:
          Inhibit All, Interlock, and each axis Leds (Disabled,Fault,Home,Fwd,Rev) are all not Lit .
     4. i connect  9-Pin cable to the  "Global Stop" on the UMI, so i can set the  "Inhibit All" , "Shutdown" input signals ,
         which are "user supplied" input signals.  they are now connected directly to the C-Iso, 
         cause i want them not affect the "Enable" signal on the Axis that i'm using (i hope that connectng them to the Ciso is the 
         right decision, cause i dont know where to set their polarities..if i need to..??? )
    5. The "Fault" signal for the axis that i'm using (Fault+, Fault-)  is connected to Viso and Ciso, later when i know that the Enable signal is 
         working, i'll connect these (Fault+, Fault-)  to the Alarm signal from the Servo Drive.
         currently i connect them diectly to Viso and Ciso, again, cause i want them not affect the "Enable" signal on the Axis that i'm using.
    i think that comletes the setting according to the UMI user manual, page 3-11...
    The thing that i dont understand here is that the manual is writtent that  the "Controller Axis Inhibit Out (per axis)"
    is affect the "Enable" signal, and i though that the "Enable" signal is itself the "Inhibit Out (per axis)" 
    so, i'm sure measing something here...
    Thanks for helping with this, i'm really on the last configuration of the servo, cause everything else
    is working good, encoder, Dir, Puls, commands to the servo using MAX 1D interactive, and LabView programs all working well,
    p.s. now i;m manualy give input for the servo on signal , i want that the "Enable" will do this job..
    Thanks
    MotiM

  • How can I use one motion controller to control two robotic independently?

    the help document says :
    Note  Configuring and clearing buffers is a processor-intensive operation on the motion controller that requires the allocation and deallocation of memory. You should configure and clear buffers only when motors are not moving and onboard programs are not running. For example, if you wish to execute three simultaneous contouring operations on axis 1, axis 2, and vector space 1 (with axes 3 and 4), you should first configure all three buffers before starting any of the operations. You can start the contour operations independently, and at different times, but should wait until all operations are complete before clearing any of the buffers.
    and i tried to conduct two contouring operation on two vector space. and tried to clear or configuring buffer for one vector when another one is still moving. so that i can start or end the movement at any time i want,and  it is ok.no error. but when i tried add a buffer  breakpoint output along with each vector movement. the bp doesn't work if the other vector is running . is there anyway to solve this problem.

    I think you've misunderstood what the dns attribute is for. The dns attribute returns the hostname of the client accessing your website, not the hostname of the website that linked to your website.
    For example, when someone using the Comcast ISP goes to a malicious website at example.com that loads images from your website at www.amigoo.net, the dns attribute will be something like "c-1-2-3-4.ca.comcast.net", not "example.com". ACLs are used for authentication and authorization of clients (not the websites those clients chose to visit), and they don't provide the functionality you're looking for.
    If I understand correctly, you want to prevent websites other than amigoo.net from linking to files in your d:/webserver/imat/pics_upload directory. You can achieve this adding the following lines to your obj.conf configuration file:
    <Object ppath="d:/webserver/imat/pics_upload/*">
    <Client referer="*~*amigoo.net">
    PathCheck fn="deny-existence"
    </Client>
    </Object>

  • AMD A6-5400k - CPU1: Not Responding

    Hi fellas,
    I got a new CPU for my maschine, which runs on ARCH-x86_64 Kernel 3.6.10. So far everything went fine but one thing:
    At boot, only of the two cores is recognized. This is only the case in Arch, both BIOS and Windows show both Cores. I rebuilt my initramfs and reinstalled linux, but none helped.
    I realize, there are several topics around the www and this board, but none of them helped me in my case.
    I tried some things, like booting the LTS-Kernel.
    Any ideas how I can solve this issue?
    I got the outputs of dmesg (system boot):
    I think the relevant Lines are around 0.17000.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.0.46-1-lts (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP Fri Oct 12 23:52:43 CEST 2012
    [ 0.000000] Command line: gpt loglevel=7 rootdelay=10 initrd=/boot/initramfs_x86_64.img BOOT_IMAGE=/boot/vmlinuz_x86_64_lts
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
    [ 0.000000] BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000009d575000 (usable)
    [ 0.000000] BIOS-e820: 000000009d575000 - 000000009d856000 (reserved)
    [ 0.000000] BIOS-e820: 000000009d856000 - 000000009dbae000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000009dbae000 - 000000009e9d3000 (reserved)
    [ 0.000000] BIOS-e820: 000000009e9d3000 - 000000009e9d4000 (usable)
    [ 0.000000] BIOS-e820: 000000009e9d4000 - 000000009ebda000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000009ebda000 - 000000009f04c000 (usable)
    [ 0.000000] BIOS-e820: 000000009f04c000 - 000000009f7dd000 (reserved)
    [ 0.000000] BIOS-e820: 000000009f7dd000 - 000000009f800000 (usable)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed40000 - 00000000fed45000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed90000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100001000 - 000000043f000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./F2A85X-D3H, BIOS F1 10/09/2012
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x43f000 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 write-through
    [ 0.000000] C0000-D1FFF write-protect
    [ 0.000000] D2000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFE0000000 write-back
    [ 0.000000] 2 base 00009F800000 mask FFFFFF800000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000043f000000 aka 17392M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 000000009f800000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0x9f800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fd7b0] fd7b0
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-000000009f800000
    [ 0.000000] 0000000000 - 0080000000 page 1G
    [ 0.000000] 0080000000 - 009f800000 page 2M
    [ 0.000000] kernel direct mapping tables up to 9f800000 @ 1fffe000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000043f000000
    [ 0.000000] 0100000000 - 0400000000 page 1G
    [ 0.000000] 0400000000 - 043f000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 43f000000 @ 9f7fe000-9f800000
    [ 0.000000] RAMDISK: 79bca000 - 7ffff000
    [ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 000000009db97080 0007C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 000000009db9cf90 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110413/tbfadt-560)
    [ 0.000000] ACPI: DSDT 000000009db97190 05DFE (v02 ALASKA A M I 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 000000009dba6d80 00040
    [ 0.000000] ACPI: APIC 000000009db9d088 00072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 000000009db9d100 00044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 000000009db9d148 0003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    [ 0.000000] ACPI: HPET 000000009db9d188 00038 (v01 ALASKA A M I 01072009 AMI 00000005)
    [ 0.000000] ACPI: IFEU 000000009db9d1c0 00042 (v01 ALASKA A M I 01072009 00000000)
    [ 0.000000] ACPI: BGRT 000000009db9d208 00038 (v00 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 000000009db9d240 006B2 (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 000000009db9d8f8 004B7 (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: IVRS 000000009db9ddb0 00070 (v02 AMD AMDIOMMU 00000001 AMD 00000000)
    [ 0.000000] ACPI: CRAT 000000009db9de20 001F8 (v01 AMD AGESA 00000001 AMD 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000043f000000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000043f000000
    [ 0.000000] NODE_DATA [000000043effb000 - 000000043effffff]
    [ 0.000000] [ffffea0000000000-ffffea000edfffff] PMD -> [ffff88042ee00000-ffff88043c7fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0043f000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[6] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009e
    [ 0.000000] 0: 0x00000100 -> 0x0009d575
    [ 0.000000] 0: 0x0009e9d3 -> 0x0009e9d4
    [ 0.000000] 0: 0x0009ebda -> 0x0009f04c
    [ 0.000000] 0: 0x0009f7dd -> 0x0009f800
    [ 0.000000] 0: 0x00100001 -> 0x0043f000
    [ 0.000000] On node 0 totalpages: 4049304
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3921 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 627267 pages, LIFO batch:31
    [ 0.000000] Normal zone: 46536 pages used for memmap
    [ 0.000000] Normal zone: 3357239 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x14] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x15] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 3, version 33, 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 low 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: 0x10228210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 000000009d575000 - 000000009d856000
    [ 0.000000] PM: Registered nosave memory: 000000009d856000 - 000000009dbae000
    [ 0.000000] PM: Registered nosave memory: 000000009dbae000 - 000000009e9d3000
    [ 0.000000] PM: Registered nosave memory: 000000009e9d4000 - 000000009ebda000
    [ 0.000000] PM: Registered nosave memory: 000000009f04c000 - 000000009f7dd000
    [ 0.000000] PM: Registered nosave memory: 000000009f800000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed40000
    [ 0.000000] PM: Registered nosave memory: 00000000fed40000 - 00000000fed45000
    [ 0.000000] PM: Registered nosave memory: 00000000fed45000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    [ 0.000000] Allocating PCI resources starting at 9f800000 (gap: 9f800000:5f400000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88043ec00000 s79360 r8192 d23040 u524288
    [ 0.000000] pcpu-alloc: s79360 r8192 d23040 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 3988427
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: gpt loglevel=7 rootdelay=10 initrd=/boot/initramfs_x86_64.img BOOT_IMAGE=/boot/vmlinuz_x86_64_lts
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 15793100k/17809408k available (4239k kernel code, 1612192k absent, 404116k reserved, 5184k data, 732k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Hierarchical RCU implementation.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 130023424 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration failed
    [ 0.000000] TSC: Unable to calibrate against PIT
    [ 0.000000] TSC: using HPET reference calibration
    [ 0.000000] Detected 3593.482 MHz processor.
    [ 0.030003] Calibrating delay loop (skipped), value calculated using timer frequency.. 7186.96 BogoMIPS (lpj=35934820)
    [ 0.030067] pid_max: default: 32768 minimum: 301
    [ 0.030186] Security Framework initialized
    [ 0.030219] AppArmor: AppArmor disabled by boot time parameter
    [ 0.031478] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.038170] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.042321] Mount-cache hash table entries: 256
    [ 0.042958] Initializing cgroup subsys cpuacct
    [ 0.043012] Initializing cgroup subsys memory
    [ 0.043055] Initializing cgroup subsys devices
    [ 0.043086] Initializing cgroup subsys freezer
    [ 0.043118] Initializing cgroup subsys net_cls
    [ 0.043149] Initializing cgroup subsys blkio
    [ 0.043215] tseg: 009f800000
    [ 0.043216] CPU: Physical Processor ID: 0
    [ 0.043248] CPU: Processor Core ID: 0
    [ 0.043279] mce: CPU supports 7 MCE banks
    [ 0.044338] ACPI: Core revision 20110413
    [ 0.050017] ftrace: allocating 16878 entries in 67 pages
    [ 0.060590] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.160953] CPU0: AMD A6-5400K APU with Radeon(tm) HD Graphics stepping 01
    [ 0.170000] Performance Events: AMD Family 15h PMU driver.
    [ 0.170000] ... version: 0
    [ 0.170000] ... bit width: 48
    [ 0.170000] ... generic registers: 6
    [ 0.170000] ... value mask: 0000ffffffffffff
    [ 0.170000] ... max period: 00007fffffffffff
    [ 0.170000] ... fixed-purpose events: 0
    [ 0.170000] ... event mask: 000000000000003f
    [ 0.170000] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.170000] Booting Node 0, Processors #1
    [ 0.170000] smpboot cpu 1: start_ip = 99000
    [ 7.443437] CPU1: Not responding.
    [ 7.445038] Brought up 1 CPUs
    [ 7.445164] Total of 1 processors activated (7186.96 BogoMIPS).
    [ 7.449107] devtmpfs: initialized
    [ 7.482442] PM: Registering ACPI NVS region at 9d856000 (3506176 bytes)
    [ 7.486598] PM: Registering ACPI NVS region at 9e9d4000 (2121728 bytes)
    [ 7.493031] NET: Registered protocol family 16
    [ 7.496249] Extended Config Space enabled on 0 nodes
    [ 7.496483] ACPI: bus type pci registered
    [ 7.498432] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 7.498554] PCI: not using MMCONFIG
    [ 7.498978] PCI: Using configuration type 1 for base access
    [ 7.499066] PCI: Using configuration type 1 for extended access
    [ 7.527324] bio: create slab <bio-0> at 0
    [ 7.601576] ACPI: EC: Look up EC in DSDT
    [ 7.685139] ACPI: Executed 1 blocks of module-level executable AML code
    [ 7.830050] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 7.845972] ACPI: Interpreter enabled
    [ 7.846060] ACPI: (supports S0 S3 S4 S5)
    [ 7.847202] ACPI: Using IOAPIC for interrupt routing
    [ 7.850557] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 7.851641] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 10.009318] ACPI: No dock devices found.
    [ 10.009448] HEST: Table not found.
    [ 10.009563] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 10.018400] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 10.028017] pci_root PNP0A03:00: host bridge window [io 0x0000-0x03af]
    [ 10.028139] pci_root PNP0A03:00: host bridge window [io 0x03e0-0x0cf7]
    [ 10.028263] pci_root PNP0A03:00: host bridge window [io 0x03b0-0x03df]
    [ 10.028386] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 10.028508] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 10.028639] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 10.029075] pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xffffffff]
    [ 10.029299] pci 0000:00:00.0: [1022:1410] type 0 class 0x000600
    [ 10.030321] pci 0000:00:00.2: [1022:1419] type 0 class 0x000806
    [ 10.032320] pci 0000:00:01.0: [1002:9991] type 0 class 0x000300
    [ 10.032465] pci 0000:00:01.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    [ 10.032576] pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    [ 10.032990] pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    [ 10.034009] pci 0000:00:01.0: supports D1 D2
    [ 10.034262] pci 0000:00:01.1: [1002:9902] type 0 class 0x000403
    [ 10.034406] pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    [ 10.035595] pci 0000:00:01.1: supports D1 D2
    [ 10.036209] pci 0000:00:02.0: [1022:1412] type 1 class 0x000604
    [ 10.037405] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 10.037463] pci 0000:00:02.0: PME# disabled
    [ 10.038065] pci 0000:00:04.0: [1022:1414] type 1 class 0x000604
    [ 10.039258] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 10.039316] pci 0000:00:04.0: PME# disabled
    [ 10.040227] pci 0000:00:10.0: [1022:7812] type 0 class 0x000c03
    [ 10.040423] pci 0000:00:10.0: reg 10: [mem 0xfeb4a000-0xfeb4bfff 64bit]
    [ 10.041630] pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
    [ 10.041993] pci 0000:00:10.0: PME# disabled
    [ 10.042315] pci 0000:00:10.1: [1022:7812] type 0 class 0x000c03
    [ 10.042510] pci 0000:00:10.1: reg 10: [mem 0xfeb48000-0xfeb49fff 64bit]
    [ 10.044002] pci 0000:00:10.1: PME# supported from D0 D3hot D3cold
    [ 10.044059] pci 0000:00:10.1: PME# disabled
    [ 10.044424] pci 0000:00:11.0: [1022:7801] type 0 class 0x000106
    [ 10.044632] pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    [ 10.045026] pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    [ 10.045141] pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    [ 10.045255] pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    [ 10.045372] pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    [ 10.045486] pci 0000:00:11.0: reg 24: [mem 0xfeb51000-0xfeb517ff]
    [ 10.046377] pci 0000:00:12.0: [1022:7807] type 0 class 0x000c03
    [ 10.046528] pci 0000:00:12.0: reg 10: [mem 0xfeb50000-0xfeb50fff]
    [ 10.047596] pci 0000:00:12.2: [1022:7808] type 0 class 0x000c03
    [ 10.048081] pci 0000:00:12.2: reg 10: [mem 0xfeb4f000-0xfeb4f0ff]
    [ 10.049232] pci 0000:00:12.2: supports D1 D2
    [ 10.049268] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 10.049324] pci 0000:00:12.2: PME# disabled
    [ 10.049558] pci 0000:00:13.0: [1022:7807] type 0 class 0x000c03
    [ 10.050126] pci 0000:00:13.0: reg 10: [mem 0xfeb4e000-0xfeb4efff]
    [ 10.051154] pci 0000:00:13.2: [1022:7808] type 0 class 0x000c03
    [ 10.051363] pci 0000:00:13.2: reg 10: [mem 0xfeb4d000-0xfeb4d0ff]
    [ 10.052509] pci 0000:00:13.2: supports D1 D2
    [ 10.052545] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 10.052603] pci 0000:00:13.2: PME# disabled
    [ 10.053123] pci 0000:00:14.0: [1022:780b] type 0 class 0x000c05
    [ 10.054237] pci 0000:00:14.2: [1022:780d] type 0 class 0x000403
    [ 10.054467] pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 10.055437] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 10.055495] pci 0000:00:14.2: PME# disabled
    [ 10.055640] pci 0000:00:14.3: [1022:780e] type 0 class 0x000601
    [ 10.056993] pci 0000:00:14.4: [1022:780f] type 1 class 0x000604
    [ 10.057448] pci 0000:00:14.5: [1022:7809] type 0 class 0x000c03
    [ 10.057598] pci 0000:00:14.5: reg 10: [mem 0xfeb4c000-0xfeb4cfff]
    [ 10.058964] pci 0000:00:18.0: [1022:1400] type 0 class 0x000600
    [ 10.059537] pci 0000:00:18.1: [1022:1401] type 0 class 0x000600
    [ 10.060476] pci 0000:00:18.2: [1022:1402] type 0 class 0x000600
    [ 10.061308] pci 0000:00:18.3: [1022:1403] type 0 class 0x000600
    [ 10.062308] pci 0000:00:18.4: [1022:1404] type 0 class 0x000600
    [ 10.063128] pci 0000:00:18.5: [1022:1405] type 0 class 0x000600
    [ 10.064976] pci 0000:01:00.0: [8086:10d3] type 0 class 0x000200
    [ 10.065120] pci 0000:01:00.0: reg 10: [mem 0xfeac0000-0xfeadffff]
    [ 10.065243] pci 0000:01:00.0: reg 14: [mem 0xfea00000-0xfea7ffff]
    [ 10.065364] pci 0000:01:00.0: reg 18: [io 0xe000-0xe01f]
    [ 10.065487] pci 0000:01:00.0: reg 1c: [mem 0xfeae0000-0xfeae3fff]
    [ 10.066064] pci 0000:01:00.0: reg 30: [mem 0xfea80000-0xfeabffff pref]
    [ 10.066618] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 10.066975] pci 0000:01:00.0: PME# disabled
    [ 10.067368] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 10.067531] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 10.067587] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 10.067969] pci 0000:00:02.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 10.068963] pci 0000:02:00.0: [10ec:8168] type 0 class 0x000200
    [ 10.069068] pci 0000:02:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 10.069308] pci 0000:02:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
    [ 10.069469] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
    [ 10.070508] pci 0000:02:00.0: supports D1 D2
    [ 10.070544] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 10.070602] pci 0000:02:00.0: PME# disabled
    [ 10.071304] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    [ 10.071465] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    [ 10.071522] pci 0000:00:04.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 10.071601] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 10.072247] pci 0000:03:06.0: [1095:3114] type 0 class 0x000104
    [ 10.072438] pci 0000:03:06.0: reg 10: [io 0xc040-0xc047]
    [ 10.072558] pci 0000:03:06.0: reg 14: [io 0xc030-0xc033]
    [ 10.072989] pci 0000:03:06.0: reg 18: [io 0xc020-0xc027]
    [ 10.073069] pci 0000:03:06.0: reg 1c: [io 0xc010-0xc013]
    [ 10.073186] pci 0000:03:06.0: reg 20: [io 0xc000-0xc00f]
    [ 10.073303] pci 0000:03:06.0: reg 24: [mem 0xfe980000-0xfe9803ff]
    [ 10.073420] pci 0000:03:06.0: reg 30: [mem 0xfe900000-0xfe97ffff pref]
    [ 10.074010] pci 0000:03:06.0: supports D1 D2
    [ 10.074426] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 10.074564] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 10.074621] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 10.074981] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 10.074993] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 10.075032] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 10.075071] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 10.075108] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 10.075146] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 10.075183] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 10.075220] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 10.075413] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 10.087428] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
    [ 10.092229] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR12._PRT]
    [ 10.093609] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR14._PRT]
    [ 10.098972] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 10.105356] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 10.469632] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.473051] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.476159] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.479249] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.482314] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.485047] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.487433] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.490344] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.494044] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 10.494442] vgaarb: loaded
    [ 10.494556] vgaarb: bridge control possible 0000:00:01.0
    [ 10.496198] PCI: Using ACPI for IRQ routing
    [ 10.574000] PCI: pci_cache_line_size set to 64 bytes
    [ 10.575540] reserve RAM buffer: 000000000009e800 - 000000000009ffff
    [ 10.575579] reserve RAM buffer: 000000009d575000 - 000000009fffffff
    [ 10.575976] reserve RAM buffer: 000000009e9d4000 - 000000009fffffff
    [ 10.576002] reserve RAM buffer: 000000009f04c000 - 000000009fffffff
    [ 10.576049] reserve RAM buffer: 000000009f800000 - 000000009fffffff
    [ 10.576088] reserve RAM buffer: 000000043f000000 - 000000043fffffff
    [ 10.579048] NetLabel: Initializing
    [ 10.579161] NetLabel: domain hash size = 128
    [ 10.579273] NetLabel: protocols = UNLABELED CIPSOv4
    [ 10.580048] NetLabel: unlabeled traffic allowed by default
    [ 10.580185] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 10.580995] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 10.583427] Switching to clocksource hpet
    [ 10.586451] Switched to NOHz mode on CPU #0
    [ 10.846011] pnp: PnP ACPI init
    [ 10.846721] ACPI: bus type pnp registered
    [ 10.851432] pnp 00:00: [bus 00-ff]
    [ 10.851473] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 10.851513] pnp 00:00: [io 0x0000-0x03af window]
    [ 10.851555] pnp 00:00: [io 0x03e0-0x0cf7 window]
    [ 10.851596] pnp 00:00: [io 0x03b0-0x03df window]
    [ 10.851637] pnp 00:00: [io 0x0d00-0xffff window]
    [ 10.851678] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 10.851718] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 10.851759] pnp 00:00: [mem 0xc0000000-0xffffffff window]
    [ 10.851799] pnp 00:00: [mem 0x00000000 window]
    [ 10.853412] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 10.854370] pnp 00:01: [mem 0xe0000000-0xefffffff]
    [ 10.855576] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 10.855722] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 10.880640] pnp 00:02: [io 0x0010-0x001f]
    [ 10.880679] pnp 00:02: [io 0x0022-0x003f]
    [ 10.880718] pnp 00:02: [io 0x0063]
    [ 10.880756] pnp 00:02: [io 0x0065]
    [ 10.880795] pnp 00:02: [io 0x0067-0x006f]
    [ 10.880834] pnp 00:02: [io 0x0072-0x007f]
    [ 10.880873] pnp 00:02: [io 0x0080]
    [ 10.880912] pnp 00:02: [io 0x0084-0x0086]
    [ 10.880975] pnp 00:02: [io 0x0088]
    [ 10.881014] pnp 00:02: [io 0x008c-0x008e]
    [ 10.881052] pnp 00:02: [io 0x0090-0x009f]
    [ 10.881387] pnp 00:02: [io 0x00a2-0x00bf]
    [ 10.881422] pnp 00:02: [io 0x00b1]
    [ 10.881458] pnp 00:02: [io 0x00e0-0x00ef]
    [ 10.881494] pnp 00:02: [io 0x04d0-0x04d1]
    [ 10.881529] pnp 00:02: [io 0x040b]
    [ 10.881565] pnp 00:02: [io 0x04d6]
    [ 10.881601] pnp 00:02: [io 0x0c00-0x0c01]
    [ 10.881636] pnp 00:02: [io 0x0c14]
    [ 10.881672] pnp 00:02: [io 0x0c50-0x0c51]
    [ 10.881708] pnp 00:02: [io 0x0c52]
    [ 10.881743] pnp 00:02: [io 0x0c6c]
    [ 10.881779] pnp 00:02: [io 0x0c6f]
    [ 10.881815] pnp 00:02: [io 0x0cd0-0x0cd1]
    [ 10.881851] pnp 00:02: [io 0x0cd2-0x0cd3]
    [ 10.881886] pnp 00:02: [io 0x0cd4-0x0cd5]
    [ 10.881924] pnp 00:02: [io 0x0cd6-0x0cd7]
    [ 10.881959] pnp 00:02: [io 0x0cd8-0x0cdf]
    [ 10.881997] pnp 00:02: [io 0x0800-0x089f]
    [ 10.882033] pnp 00:02: [io 0x0000-0xffffffffffffffff disabled]
    [ 10.882376] pnp 00:02: [io 0x0000-0x000f]
    [ 10.882401] pnp 00:02: [io 0x0b20-0x0b3f]
    [ 10.882438] pnp 00:02: [io 0x0900-0x090f]
    [ 10.882474] pnp 00:02: [io 0x0910-0x091f]
    [ 10.882512] pnp 00:02: [io 0xfe00-0xfefe]
    [ 10.882547] pnp 00:02: [io 0x0060-0x005f disabled]
    [ 10.882583] pnp 00:02: [io 0x0064-0x0063 disabled]
    [ 10.882619] pnp 00:02: [mem 0xfec00000-0xfec00fff]
    [ 10.882656] pnp 00:02: [mem 0xfee00000-0xfee00fff]
    [ 10.882692] pnp 00:02: [mem 0xfed80000-0xfed8ffff]
    [ 10.882728] pnp 00:02: [mem 0xfed61000-0xfed70fff]
    [ 10.882763] pnp 00:02: [mem 0xfec10000-0xfec10fff]
    [ 10.882801] pnp 00:02: [mem 0xfed00000-0xfed00fff]
    [ 10.882836] pnp 00:02: [mem 0xff000000-0xffffffff]
    [ 10.884490] system 00:02: [io 0x04d0-0x04d1] has been reserved
    [ 10.884616] system 00:02: [io 0x040b] has been reserved
    [ 10.884742] system 00:02: [io 0x04d6] has been reserved
    [ 10.884866] system 00:02: [io 0x0c00-0x0c01] has been reserved
    [ 10.884988] system 00:02: [io 0x0c14] has been reserved
    [ 10.885440] system 00:02: [io 0x0c50-0x0c51] has been reserved
    [ 10.885563] system 00:02: [io 0x0c52] has been reserved
    [ 10.885685] system 00:02: [io 0x0c6c] has been reserved
    [ 10.885807] system 00:02: [io 0x0c6f] has been reserved
    [ 10.885929] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    [ 10.886375] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    [ 10.886496] system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    [ 10.886619] system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    [ 10.886741] system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    [ 10.886863] system 00:02: [io 0x0800-0x089f] has been reserved
    [ 10.886986] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    [ 10.887433] system 00:02: [io 0x0900-0x090f] has been reserved
    [ 10.887557] system 00:02: [io 0x0910-0x091f] has been reserved
    [ 10.887679] system 00:02: [io 0xfe00-0xfefe] has been reserved
    [ 10.887806] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 10.887928] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 10.888360] system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 10.888468] system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 10.888593] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 10.888715] system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    [ 10.888840] system 00:02: [mem 0xff000000-0xffffffff] has been reserved
    [ 10.888981] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.892417] pnp 00:03: [io 0x0000-0xffffffffffffffff disabled]
    [ 10.892456] pnp 00:03: [io 0x0220-0x0227]
    [ 10.892494] pnp 00:03: [io 0x0228-0x0237]
    [ 10.892534] pnp 00:03: [io 0x0a20-0x0a2f]
    [ 10.893890] system 00:03: [io 0x0220-0x0227] has been reserved
    [ 10.894018] system 00:03: [io 0x0228-0x0237] has been reserved
    [ 10.894460] system 00:03: [io 0x0a20-0x0a2f] has been reserved
    [ 10.894605] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.901525] pnp 00:04: [dma 4]
    [ 10.901565] pnp 00:04: [io 0x0000-0x000f]
    [ 10.901629] pnp 00:04: [io 0x0081-0x0083]
    [ 10.901667] pnp 00:04: [io 0x0087]
    [ 10.901706] pnp 00:04: [io 0x0089-0x008b]
    [ 10.901745] pnp 00:04: [io 0x008f]
    [ 10.901784] pnp 00:04: [io 0x00c0-0x00df]
    [ 10.902753] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 10.903004] pnp 00:05: [io 0x0070-0x0071]
    [ 10.903394] pnp 00:05: [irq 8]
    [ 10.904399] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 10.904582] pnp 00:06: [io 0x0061]
    [ 10.905587] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 10.906373] pnp 00:07: [io 0x0010-0x001f]
    [ 10.906408] pnp 00:07: [io 0x0022-0x003f]
    [ 10.906444] pnp 00:07: [io 0x0044-0x005f]
    [ 10.906481] pnp 00:07: [io 0x0072-0x007f]
    [ 10.906517] pnp 00:07: [io 0x0080]
    [ 10.906555] pnp 00:07: [io 0x0084-0x0086]
    [ 10.906592] pnp 00:07: [io 0x0088]
    [ 10.906627] pnp 00:07: [io 0x008c-0x008e]
    [ 10.906663] pnp 00:07: [io 0x0090-0x009f]
    [ 10.906699] pnp 00:07: [io 0x00a2-0x00bf]
    [ 10.906735] pnp 00:07: [io 0x00e0-0x00ef]
    [ 10.906771] pnp 00:07: [io 0x04d0-0x04d1]
    [ 10.908470] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 10.908615] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.908803] pnp 00:08: [io 0x00f0-0x00ff]
    [ 10.908895] pnp 00:08: [irq 13]
    [ 10.910515] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 10.912466] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.916697] pnp 00:0a: [mem 0xa0000000-0xbfffffff]
    [ 10.918472] system 00:0a: [mem 0xa0000000-0xbfffffff] has been reserved
    [ 10.918619] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.920584] pnp 00:0b: [mem 0xfeb80000-0xfebfffff]
    [ 10.922399] system 00:0b: [mem 0xfeb80000-0xfebfffff] has been reserved
    [ 10.922543] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.927499] pnp 00:0c: [mem 0xfed00000-0xfed003ff]
    [ 10.928848] pnp 00:0c: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 10.928958] pnp: PnP ACPI: found 13 devices
    [ 10.929375] ACPI: ACPI bus type pnp unregistered
    [ 10.990732] PCI: max bus depth: 1 pci_try_num: 2
    [ 10.990936] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 10.991384] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 10.991521] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 10.991658] pci 0000:00:02.0: bridge window [mem pref disabled]
    [ 10.991821] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    [ 10.991949] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    [ 10.992386] pci 0000:00:04.0: bridge window [mem disabled]
    [ 10.992514] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 10.992683] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 10.992810] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 10.992960] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 10.993389] pci 0000:00:14.4: bridge window [mem pref disabled]
    [ 10.993675] pci 0000:00:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 10.993815] pci 0000:00:02.0: setting latency timer to 64
    [ 10.993994] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 10.994461] pci 0000:00:04.0: setting latency timer to 64
    [ 10.994566] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 10.994605] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 10.994644] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 10.994682] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 10.994721] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 10.994760] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 10.994799] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 10.994837] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 10.994876] pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 10.994915] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    [ 10.994954] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 10.994993] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 10.995032] pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]
    [ 10.995368] pci_bus 0000:03: resource 4 [io 0x0000-0x03af]
    [ 10.995377] pci_bus 0000:03: resource 5 [io 0x03e0-0x0cf7]
    [ 10.995414] pci_bus 0000:03: resource 6 [io 0x03b0-0x03df]
    [ 10.995449] pci_bus 0000:03: resource 7 [io 0x0d00-0xffff]
    [ 10.995485] pci_bus 0000:03: resource 8 [mem 0x000a0000-0x000bffff]
    [ 10.995523] pci_bus 0000:03: resource 9 [mem 0x000c0000-0x000dffff]
    [ 10.995559] pci_bus 0000:03: resource 10 [mem 0xc0000000-0xffffffff]
    [ 10.996013] NET: Registered protocol family 2
    [ 11.011431] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 11.044698] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 11.051435] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 11.051803] TCP: Hash tables configured (established 524288 bind 65536)
    [ 11.051921] TCP reno registered
    [ 11.052935] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 11.054372] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 11.056540] NET: Registered protocol family 1
    [ 11.056817] pci 0000:00:01.0: Boot video device
    [ 11.057014] pci 0000:00:10.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 11.057627] pci 0000:00:10.0: PCI INT A disabled
    [ 11.057906] pci 0000:00:10.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 11.058488] pci 0000:00:10.1: PCI INT B disabled
    [ 11.058705] pci 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 11.150025] pci 0000:00:12.0: PCI INT A disabled
    [ 11.150071] pci 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 11.150124] pci 0000:00:12.2: PCI INT B disabled
    [ 11.150160] pci 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 11.240018] pci 0000:00:13.0: PCI INT A disabled
    [ 11.240057] pci 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 11.240102] pci 0000:00:13.2: PCI INT B disabled
    [ 11.240147] pci 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 11.330018] pci 0000:00:14.5: PCI INT C disabled
    [ 11.330066] PCI: CLS 64 bytes, default 64
    [ 11.330109] Unpacking initramfs...
    [ 0.040000] Kernel panic - not syncing: smp_callin: CPU1 started up but did not get a callout!
    [ 0.040000]
    [ 0.040000] Pid: 0, comm: kworker/0:0 Not tainted 3.0.46-1-lts #1
    [ 0.040000] Call Trace:
    [ 0.040000] [<ffffffff8140f6cd>] panic+0x91/0x197
    [ 0.040000] [<ffffffff8140884c>] start_secondary+0xcb/0x1fe
    [ 26.201608] Freeing initrd memory: 102612k freed
    [ 26.228111] pci 0000:00:00.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 26.228318] pci 0000:00:00.2: irq 40 for MSI/MSI-X
    [ 26.228396] AMD-Vi: Enabling IOMMU at 0000:00:00.2 cap 0x40 extended features: PreF PPR GT IA
    [ 26.240635] AMD-Vi: Lazy IO/TLB flushing enabled
    [ 26.240671] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 26.240706] Placing 64MB software IO TLB between ffff880099575000 - ffff88009d575000
    [ 26.240743] software IO TLB at phys 0x99575000 - 0x9d575000
    [ 26.241067] audit: initializing netlink socket (disabled)
    [ 26.241110] type=2000 audit(1356177972.230:1): initialized
    [ 26.250693] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 26.254005] VFS: Disk quotas dquot_6.5.2
    [ 26.254149] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 26.254346] msgmni has been set to 31046
    [ 26.254555] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 26.254612] io scheduler noop registered
    [ 26.254646] io scheduler deadline registered (default)
    [ 26.254719] io scheduler cfq registered
    [ 26.254848] pcieport 0000:00:02.0: setting latency timer to 64
    [ 26.254910] pcieport 0000:00:02.0: irq 41 for MSI/MSI-X
    [ 26.254987] pcieport 0000:00:04.0: setting latency timer to 64
    [ 26.255045] pcieport 0000:00:04.0: irq 42 for MSI/MSI-X
    [ 26.255142] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
    [ 26.255177] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 26.255212] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
    [ 26.255257] pcieport 0000:00:04.0: Signaling PME through PCIe PME interrupt
    [ 26.255291] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 26.255327] pcie_pme 0000:00:04.0:pcie01: service driver pcie_pme loaded
    [ 26.255434] ERST: Table is not found!
    [ 26.255511] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 26.255875] Linux agpgart interface v0.103
    [ 26.255970] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 26.256358] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 26.256395] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 26.256512] mousedev: PS/2 mouse device common for all mice
    [ 26.256588] rtc_cmos 00:05: RTC can wake from S4
    [ 26.256715] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 26.256781] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 26.256827] cpuidle: using governor ladder
    [ 26.256868] cpuidle: using governor menu
    [ 26.257182] TCP cubic registered
    [ 26.257413] NET: Registered protocol family 10
    [ 26.258198] NET: Registered protocol family 17
    [ 26.258233] Registering the dns_resolver key type
    [ 26.258395] PM: Hibernation image not present or could not be loaded.
    [ 26.258450] registered taskstats version 1
    [ 26.259761] rtc_cmos 00:05: setting system clock to 2012-12-22 12:06:13 UTC (1356177973)
    [ 26.261125] Initializing network drop monitor service
    [ 26.263013] Freeing unused kernel memory: 732k freed
    [ 26.263239] Write protecting the kernel read-only data: 8192k
    [ 26.272919] Freeing unused kernel memory: 1888k freed
    [ 26.277038] Freeing unused kernel memory: 696k freed
    [ 26.303407] systemd-udevd[37]: starting version 194
    [ 27.541378] Refined TSC clocksource calibration: 3593.465 MHz.
    [ 27.541426] Switching to clocksource tsc
    [ 30.186206] HDA Intel 0000:00:01.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
    [ 30.186313] HDA Intel 0000:00:01.1: irq 43 for MSI/MSI-X
    [ 30.186378] HDA Intel 0000:00:01.1: setting latency timer to 64
    [ 30.191054] usbcore: registered new interface driver usbfs
    [ 30.191133] usbcore: registered new interface driver hub
    [ 30.197110] SCSI subsystem initialized
    [ 30.216692] usbcore: registered new device driver usb
    [ 30.220148] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 30.232290] input: PC Speaker as /devices/platform/pcspkr/input/input0
    [ 30.234124] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 30.239267] libata version 3.00 loaded.
    [ 30.244294] ACPI: acpi_idle registered with cpuidle
    [ 30.246226] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 30.246282] ACPI: Power Button [PWRB]
    [ 30.246380] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 30.246418] ACPI: Power Button [PWRF]
    [ 30.249692] e1000e: Intel(R) PRO/1000 Network Driver - 1.3.10-k2
    [ 30.249737] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    [ 30.249802] e1000e 0000:01:00.0: Disabling ASPM L0s L1
    [ 30.249846] e1000e 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 30.249902] e1000e 0000:01:00.0: setting latency timer to 64
    [ 30.250227] e1000e 0000:01:00.0: irq 44 for MSI/MSI-X
    [ 30.250263] e1000e 0000:01:00.0: irq 45 for MSI/MSI-X
    [ 30.250307] e1000e 0000:01:00.0: irq 46 for MSI/MSI-X
    [ 30.252812] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 30.252873] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 30.252954] r8169 0000:02:00.0: setting latency timer to 64
    [ 30.253001] r8169 0000:02:00.0: (unregistered net_device): unknown MAC, using family default
    [ 30.253103] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
    [ 30.253760] r8169 0000:02:00.0: eth0: RTL8168b/8111b at 0xffffc9000187e000, 94:de:80:06:0b:c2, XID 0c900800 IRQ 47
    [ 30.253799] r8169 0000:02:00.0: eth0: jumbo features [frames: 4080 bytes, tx checksumming: ko]
    [ 30.255615] sata_sil 0000:03:06.0: version 2.4
    [ 30.255694] sata_sil 0000:03:06.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [ 30.255763] sata_sil 0000:03:06.0: Applying R_ERR on DMA activate FIS errata fix
    [ 30.259490] scsi0 : sata_sil
    [ 30.262529] scsi1 : sata_sil
    [ 30.265318] scsi2 : sata_sil
    [ 30.268147] scsi3 : sata_sil
    [ 30.268259] ata1: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe980080 irq 20
    [ 30.268301] ata2: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe9800c0 irq 20
    [ 30.268350] ata3: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe980280 irq 20
    [ 30.268389] ata4: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe9802c0 irq 20
    [ 30.375388] e1000e 0000:01:00.0: eth1: (PCI Express:2.5GT/s:Width x1) 68:05:ca:0c:a8:da
    [ 30.375437] e1000e 0000:01:00.0: eth1: Intel(R) PRO/1000 Network Connection
    [ 30.375481] e1000e 0000:01:00.0: eth1: MAC: 3, PHY: 8, PBA No: E46981-007
    [ 30.620035] ata1: SATA link down (SStatus 0 SControl 310)
    [ 30.970035] ata2: SATA link down (SStatus 0 SControl 310)
    [ 31.320029] ata3: SATA link down (SStatus 0 SControl 310)
    [ 31.670023] ata4: SATA link down (SStatus 0 SControl 310)
    [ 31.674284] HDMI status: Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 31.674524] HDMI: no space for converter 10
    [ 31.674615] HDMI: no space for converter 12
    [ 31.674967] input: HD-Audio Generic HDMI/DP as /devices/pci0000:00/0000:00:01.1/sound/card0/input3
    [ 31.675144] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 31.776299] xhci_hcd 0000:00:10.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 31.776372] xhci_hcd 0000:00:10.0: setting latency timer to 64
    [ 31.776418] xhci_hcd 0000:00:10.0: xHCI Host Controller
    [ 31.776483] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
    [ 31.776563] QUIRK: Enable AMD PLL fix
    [ 31.776792] xhci_hcd 0000:00:10.0: irq 18, io mem 0xfeb4a000
    [ 31.776885] xhci_hcd 0000:00:10.0: irq 48 for MSI/MSI-X
    [ 31.776920] xhci_hcd 0000:00:10.0: irq 49 for MSI/MSI-X
    [ 31.777146] xHCI xhci_add_endpoint called for root hub
    [ 31.777190] xHCI xhci_check_bandwidth called for root hub
    [ 31.777261] hub 1-0:1.0: USB hub found
    [ 31.777297] hub 1-0:1.0: 2 ports detected
    [ 31.777433] xhci_hcd 0000:00:10.0: xHCI Host Controller
    [ 31.777473] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
    [ 31.780285] xHCI xhci_add_endpoint called for root hub
    [ 31.780329] xHCI xhci_check_bandwidth called for root hub
    [ 31.780399] hub 2-0:1.0: USB hub found
    [ 31.780436] hub 2-0:1.0: 2 ports detected
    [ 31.780543] xhci_hcd 0000:00:10.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 31.780600] xhci_hcd 0000:00:10.1: setting latency timer to 64
    [ 31.780635] xhci_hcd 0000:00:10.1: xHCI Host Controller
    [ 31.780673] xhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
    [ 31.780929] xhci_hcd 0000:00:10.1: irq 17, io mem 0xfeb48000
    [ 31.781018] xhci_hcd 0000:00:10.1: irq 50 for MSI/MSI-X
    [ 31.781053] xhci_hcd 0000:00:10.1: irq 51 for MSI/MSI-X
    [ 31.781245] xHCI xhci_add_endpoint called for root hub
    [ 31.781289] xHCI xhci_check_bandwidth called for root hub
    [ 31.781358] hub 3-0:1.0: USB hub found
    [ 31.781393] hub 3-0:1.0: 2 ports detected
    [ 31.781502] xhci_hcd 0000:00:10.1: xHCI Host Controller
    [ 31.781554] xhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 4
    [ 31.784397] xHCI xhci_add_endpoint called for root hub
    [ 31.784430] xHCI xhci_check_bandwidth called for root hub
    [ 31.784493] hub 4-0:1.0: USB hub found
    [ 31.784540] hub 4-0:1.0: 2 ports detected
    [ 31.785260] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 31.785314] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 31.785363] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 5
    [ 31.785405] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 31.785467] ehci_hcd 0000:00:12.2: debug port 1
    [ 31.785526] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfeb4f000
    [ 31.800124] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 31.800381] hub 5-0:1.0: USB hub found
    [ 31.800426] hub 5-0:1.0: 5 ports detected
    [ 31.800575] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 31.800648] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 31.800698] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 6
    [ 31.800740] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 31.800804] ehci_hcd 0000:00:13.2: debug port 1
    [ 31.800861] ehci_hcd 0000:00:13.2: irq 17, io mem 0xfeb4d000
    [ 31.820016] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 31.820236] hub 6-0:1.0: USB hub found
    [ 31.820271] hub 6-0:1.0: 5 ports detected
    [ 31.820930] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 31.820996] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 31.821039] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 7
    [ 31.821105] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb50000
    [ 31.884261] hub 7-0:1.0: USB hub found
    [ 31.884311] hub 7-0:1.0: 5 ports detected
    [ 31.884462] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 31.884533] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 31.884580] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 8
    [ 31.884644] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfeb4e000
    [ 31.944186] hub 8-0:1.0: USB hub found
    [ 31.944235] hub 8-0:1.0: 5 ports detected
    [ 31.944362] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 31.944416] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 31.944452] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 9
    [ 31.944510] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfeb4c000
    [ 32.004245] hub 9-0:1.0: USB hub found
    [ 32.004283] hub 9-0:1.0: 2 ports detected
    [ 32.004581] ahci 0000:00:11.0: version 3.0
    [ 32.004627] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 32.004727] ahci 0000:00:11.0: irq 52 for MSI/MSI-X
    [ 32.004892] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 7 ports 6 Gbps 0xfd impl SATA mode
    [ 32.004931] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 32.009602] scsi4 : ahci
    [ 32.009824] scsi5 : ahci
    [ 32.010050] scsi6 : ahci
    [ 32.010213] scsi7 : ahci
    [ 32.010363] scsi8 : ahci
    [ 32.010529] scsi9 : ahci
    [ 32.010677] scsi10 : ahci
    [ 32.010837] scsi11 : ahci
    [ 32.011601] ata5: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51100 irq 52
    [ 32.012773] ata6: DUMMY
    [ 32.012806] ata7: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51200 irq 52
    [ 32.012845] ata8: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51280 irq 52
    [ 32.012893] ata9: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51300 irq 52
    [ 32.012930] ata10: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51380 irq 52
    [ 32.012969] ata11: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51400 irq 52
    [ 32.013016] ata12: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51480 irq 52
    [ 32.120025] usb 5-3: new high speed USB device number 2 using ehci_hcd
    [ 32.274376] Initializing USB Mass Storage driver...
    [ 32.274825] scsi12 : usb-storage 5-3:1.0
    [ 32.274957] usbcore: registered new interface driver usb-storage
    [ 32.274991] USB Mass Storage support registered.
    [ 32.560018] ata7: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 32.560079] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 32.560137] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 32.560196] ata10: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 32.560242] ata11: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 32.560299] ata12: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 32.560580] ata7.00: ATA-9: WDC WD20EFRX-68AX9N0, 80.00A80, max UDMA/133
    [ 32.560626] ata7.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.560947] ata11.00: ATA-8: ST2000DL003-9VT166, CC32, max UDMA/133
    [ 32.560993] ata11.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 32.561209] ata7.00: configured for UDMA/133
    [ 32.561773] ata11.00: configured for UDMA/133
    [ 32.563779] ata8.00: ATA-8: WDC WD20EARS-00MVWB0, 51.0AB51, max UDMA/133
    [ 32.563814] ata8.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.564285] ata5.00: ATA-6: WDC WD2500JD-00HBB0, 08.02D08, max UDMA/133
    [ 32.564327] ata5.00: 488397168 sectors, multi 16: LBA48
    [ 32.566291] ata10.00: ATA-8: SAMSUNG HD204UI, 1AQ10001, max UDMA/133
    [ 32.566329] ata10.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.566492] ata12.00: ATA-8: SAMSUNG HD204UI, 1AQ10001, max UDMA/133
    [ 32.566526] ata12.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.567782] ata8.00: configured for UDMA/133
    [ 32.569759] ata5.00: configured for UDMA/133
    [ 32.569893] scsi 4:0:0:0: Direct-Access ATA WDC WD2500JD-00H 08.0 PQ: 0 ANSI: 5
    [ 32.570286] scsi 6:0:0:0: Direct-Access ATA WDC WD20EFRX-68A 80.0 PQ: 0 ANSI: 5
    [ 32.570502] scsi 7:0:0:0: Direct-Access ATA WDC WD20EARS-00M 51.0 PQ: 0 ANSI: 5
    [ 32.572474] ata10.00: configured for UDMA/133
    [ 32.572682] ata12.00: configured for UDMA/133
    [ 32.660017] usb 7-4: new low speed USB device number 2 using ohci_hcd
    [ 32.868292] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:12.0/usb7/7-4/7-4:1.0/input/input4
    [ 32.868415] generic-usb 0003:046D:C30F.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech Logitech USB Keyboard] on usb-0000:00:12.0-4/input0
    [ 32.881147] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:12.0/usb7/7-4/7-4:1.1/input/input5
    [ 32.881240] generic-usb 0003:046D:C30F.0002: input,hidraw1: USB HID v1.10 Device [Logitech Logitech USB Keyboard] on usb-0000:00:12.0-4/input1
    [ 32.881304] usbcore: registered new interface driver usbhid
    [ 32.881338] usbhid: USB HID core driver
    [ 33.271305] scsi 12:0:0:0: Direct-Access SanDisk Cruzer Blade 1.00 PQ: 0 ANSI: 2
    [ 33.280033] ata9: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 33.305314] ata9.00: ATA-8: WDC WD20EARS-00MVWB0, 51.0AB51, max UDMA/133
    [ 33.305349] ata9.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 33.314972] ata9.00: configured for UDMA/133
    [ 33.315074] scsi 8:0:0:0: Direct-Access ATA WDC WD20EARS-00M 51.0 PQ: 0 ANSI: 5
    [ 33.315323] scsi 9:0:0:0: Direct-Access ATA SAMSUNG HD204UI 1AQ1 PQ: 0 ANSI: 5
    [ 33.315536] scsi 10:0:0:0: Direct-Access ATA ST2000DL003-9VT1 CC32 PQ: 0 ANSI: 5
    [ 33.315746] scsi 11:0:0:0: Direct-Access ATA SAMSUNG HD204UI 1AQ1 PQ: 0 ANSI: 5
    [ 33.333300] sd 11:0:0:0: [sdh] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333360] sd 7:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333415] sd 10:0:0:0: [sdg] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333463] sd 9:0:0:0: [sdf] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333524] sd 8:0:0:0: [sde] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333575] sd 6:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333613] sd 6:0:0:0: [sdb] 4096-byte physical blocks
    [ 33.333753] sd 10:0:0:0: [sdg] Write Protect is off
    [ 33.333787] sd 10:0:0:0: [sdg] Mode Sense: 00 3a 00 00
    [ 33.333950] sd 8:0:0:0: [sde] Write Protect is off
    [ 33.333984] sd 8:0:0:0: [sde] Mode Sense: 00 3a 00 00
    [ 33.334046] sd 9:0:0:0: [sdf] Write Protect is off
    [ 33.334079] sd 9:0:0:0: [sdf] Mode Sense: 00 3a 00 00
    [ 33.334138] sd 7:0:0:0: [sdc] Write Protect is off
    [ 33.334172] sd 7:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 33.334224] sd 11:0:0:0: [sdh] Write Protect is off
    [ 33.334257] sd 11:0:0:0: [sdh] Mode Sense: 00 3a 00 00
    [ 33.334358] sd 10:0:0:0: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.334526] sd 6:0:0:0: [sdb] Write Protect is off
    [ 33.334561] sd 6:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 33.334629] sd 11:0:0:0: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.334808] sd 12:0:0:0: [sdd] 7837696 512-byte logical blocks: (4.01 GB/3.73 GiB)
    [ 33.334865] sd 7:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.334982] sd 9:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.335109] sd 8:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.335222] sd 6:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.335777] sd 4:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 33.335862] sd 12:0:0:0: [sdd] Write Protect is off
    [ 33.335896] sd 12:0:0:0: [sdd] Mode Sense: 03 00 00 00
    [ 33.336251] sd 4:0:0:0: [sda] Write Protect is off
    [ 33.336285] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 33.336346] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.336757] sd 12:0:0:0: [sdd] No Caching mode page present
    [ 33.336792] sd 12:0:0:0: [sdd] Assuming drive cache: write through
    [ 33.339872] sd 12:0:0:0: [sdd] No Caching mode page present
    [ 33.339909] sd 12:0:0:0: [sdd] Assuming drive cache: write through
    [ 33.344926] sdd: sdd1
    [ 33.347492] sd 12:0:0:0: [sdd] No Caching mode page present
    [ 33.347539] sd 12:0:0:0: [sdd] Assuming drive cache: write through
    [ 33.347574] sd 12:0:0:0: [sdd] Attached SCSI removable disk
    [ 33.376773] sde: sde1
    [ 33.377154] sd 8:0:0:0: [sde] Attached SCSI disk
    [ 33.377403] sdh: sdh1
    [ 33.377691] sd 11:0:0:0: [sdh] Attached SCSI disk
    [ 33.380652] sdg: sdg1
    [ 33.381033] sd 10:0:0:0: [sdg] Attached SCSI disk
    [ 33.395456] sdf: sdf1
    [ 33.395801] sd 9:0:0:0: [sdf] Attached SCSI disk
    [ 33.397545] sdb: sdb1
    [ 33.397930] sd 6:0:0:0: [sdb] Attached SCSI disk
    [ 33.435935] sda: sda1 sda2 < sda5 sda6 sda7 sda8 >
    [ 33.436519] sd 4:0:0:0: [sda] Attached SCSI disk
    [ 33.439473] mdadm: sending ioctl 800c0910 to a partition!
    [ 33.439519] mdadm: sending ioctl 800c0910 to a partition!
    [ 33.439696] mdadm: sending ioctl 1261 to a partition!
    [ 33.439728] mdadm: sending ioctl 1261 to a partition!
    [ 33.442061] mdadm: sending ioctl 1261 to a partition!
    [ 33.442108] mdadm: sending ioctl 1261 to a partition!
    [ 33.442467] mdadm: sending ioctl 1261 to a partition!
    [ 33.442502] mdadm: sending ioctl 1261 to a partition!
    [ 33.443944] mdadm: sending ioctl 1261 to a partition!
    [ 33.443981] mdadm: sending ioctl 1261 to a partition!
    [ 33.815407] sdc: sdc1
    [ 33.815744] sd 7:0:0:0: [sdc] Attached SCSI disk
    [ 33.819038] md: bind<sdg1>
    [ 33.823005] md: bind<sdh1>
    [ 33.830376] md: bind<sde1>
    [ 33.832743] md: raid0 personality registered for level 0
    [ 33.833265] bio: create slab <bio-1> at 1
    [ 33.833302] md/raid0:md127: looking at sdh1
    [ 33.833336] md/raid0:md127: comparing sdh1(3907026944) with sdh1(3907026944)
    [ 33.833414] md/raid0:md127: END
    [ 33.833446] md/raid0:md127: ==> UNIQUE
    [ 33.833478] md/raid0:md127: 1 zones
    [ 33.833511] md/raid0:md127: looking at sdg1
    [ 33.833554] md/raid0:md127: comparing sdg1(3907026944) with sdh1(3907026944)
    [ 33.833623] md/raid0:md127: EQUAL
    [ 33.833655] md/raid0:md127: FINAL 1 zones
    [ 33.833689] md/raid0:md127: done.
    [ 33.833733] md/raid0:md127: md_size is 7814053888 sectors.
    [ 33.833766] ******* md127 configuration *********
    [ 33.833798] zone0=[sdg1/sdh1/]
    [ 33.833947] zone offset=0kb device offset=0kb size=3907026944kb
    [ 33.833988] **********************************
    [ 33.833992]
    [ 33.835269] md127: detected capacity change from 0 to 4000795590656
    [ 33.838003] md: bind<sdb1>
    [ 33.842049] md: bind<sdf1>
    [ 33.844170] md127: unknown partition table
    [ 33.924815] md: bind<sdc1>
    [ 34.090011] raid6: int64x1 1791 MB/s
    [ 34.260030] raid6: int64x2 2819 MB/s
    [ 34.430025] raid6: int64x4 2663 MB/s
    [ 34.600019] raid6: int64x8 2518 MB/s
    [ 34.770025] raid6: sse2x1 5795 MB/s
    [ 34.940016] raid6: sse2x2 8139 MB/s
    [ 35.110014] raid6: sse2x4 10354 MB/s
    [ 35.110047] raid6: using algorithm sse2x4 (10354 MB/s)
    [ 35.110907] async_tx: api initialized (async)
    [ 35.111085] xor: automatically using best checksumming function: generic_sse
    [ 35.160010] generic_sse: 5798.000 MB/sec
    [ 35.160043] xor: using function: generic_sse (5798.000 MB/sec)
    [ 35.161180] md: raid6 personality registered for level 6
    [ 35.161216] md: raid5 personality registered for level 5
    [ 35.161249] md: raid4 personality registered for level 4
    [ 35.162194] md/raid:md126: device sdc1 operational as raid disk 3
    [ 35.162258] md/raid:md126: device sdf1 operational as raid disk 1
    [ 35.162302] md/raid:md126: device sdb1 operational as raid disk 0
    [ 35.162337] md/raid:md126: device sde1 operational as raid disk 2
    [ 35.162969] md/raid:md126: allocated 4272kB
    [ 35.164323] md/raid:md126: raid level 5 active with 4 out of 4 devices, algorithm 2
    [ 35.164368] RAID conf printout:
    [ 35.164401] --- level:5 rd:4 wd:4
    [ 35.164434] disk 0, o:1, dev:sdb1
    [ 35.164472] disk 1, o:1, dev:sdf1
    [ 35.164514] disk 2, o:1, dev:sde1
    [ 35.164547] disk 3, o:1, dev:sdc1
    [ 35.164615] md126: detected capacity change from 0 to 6000789159936
    [ 35.210084] md126: unknown partition table
    [ 37.116016] device-mapper: uevent: version 1.0.3
    [ 37.116160] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: [email protected]
    [ 48.147927] systemd[1]: systemd 194 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 48.148113] systemd[1]: Running in initial RAM disk.
    [ 48.148564] systemd[1]: Set hostname to <archboot>.
    [ 48.148763] systemd[1]: Initializing machine ID from random generator.
    [ 48.163323] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 48.163530] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 48.163664] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 48.163714] systemd[1]: Starting Remote File Systems.
    [ 48.164039] systemd[1]: Reached target Remote File Systems.
    [ 48.164095] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 48.164379] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 48.164429] systemd[1]: Starting Delayed Shutdown Socket.
    [ 48.164734] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 48.164802] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 48.165217] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 48.165268] systemd[1]: Starting Encrypted Volumes.
    [ 48.165538] systemd[1]: Reached target Encrypted Volumes.
    [ 48.165666] systemd[1]: Starting udev Kernel Socket.
    [ 48.165964] systemd[1]: Listening on udev Kernel Socket.
    [ 48.166045] systemd[1]: Starting udev Control Socket.
    [ 48.166338] systemd[1]: Listening on udev Control Socket.
    [ 48.166395] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 48.166498] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 48.166557] systemd[1]: Starting Swap.
    [ 48.166826] systemd[1]: Reached target Swap.
    [ 48.166869] systemd[1]: Starting Journal Socket.
    [ 48.167200] systemd[1]: Listening on Journal Socket.
    [ 48.167260] systemd[1]: Started File System Check on Root Device.
    [ 48.167303] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 48.168421] systemd[1]: Starting Load Kernel Modules...
    [ 48.170881] systemd[1]: Starting Setup Virtual Console...
    [ 48.173799] FS-Cache: Loaded
    [ 48.177917] systemd[1]: Mounting POSIX Message Queue File System...
    [ 48.179690] systemd[1]: Mounting Huge Pages File System...
    [ 48.180633] systemd[1]: Starting Apply Kernel Variables...
    [ 48.181486] systemd[1]: Started Set Up Additional Binary Formats.
    [ 48.181595] systemd[1]: Starting udev Kernel Device Manager...
    [ 48.184266] systemd[1]: Mounting Debug File System...
    [ 48.185010] systemd[1]: Starting udev Coldplug all Devices...
    [ 48.185722] systemd[1]: Starting Journal Service...
    [ 48.186733] systemd[1]: Started Journal Service.
    [ 48.187650] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 48.187720] systemd[1]: Starting Local File Systems (Pre).
    [ 48.187982] systemd[1]: Reached target Local File Systems (Pre).
    [ 48.188037] systemd[1]: Mounting /tmp...
    [ 48.188726] systemd[1]: Starting Load Random Seed...
    [ 48.199278] systemd-udevd[1369]: starting version 194
    [ 48.259482] RPC: Registered named UNIX socket transport module.
    [ 48.259519] RPC: Registered udp transport module.
    [ 48.259552] RPC: Registered tcp transport module.
    [ 48.259595] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 48.264576] FS-Cache: Netfs 'nfs' registered for caching
    [ 48.270453] systemd-modules-load[1361]: Inserted module 'nfs'
    [ 48.275596] systemd-journald[1372]: Received SIGUSR1
    [ 48.653395] scsi_verify_blk_ioctl: 184 callbacks suppressed
    [ 48.653431] mdadm: sending ioctl 1261 to a partition!
    [ 48.653475] mdadm: sending ioctl 1261 to a partition!
    [ 48.653686] mdadm: sending ioctl 1261 to a partition!
    [ 48.653725] mdadm: sending ioctl 1261 to a partition!
    [ 94.390769] r8169 0000:02:00.0: eth0: link down
    [ 94.390805] r8169 0000:02:00.0: eth0: link down
    [ 94.391909] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 96.827209] r8169 0000:02:00.0: eth0: link up
    [ 96.828288] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 107.460005] eth0: no IPv6 routers present
    and /proc/cpuinfo:
    processor : 0
    vendor_id : AuthenticAMD
    cpu family : 21
    model : 16
    model name : AMD A6-5400K APU with Radeon(tm) HD Graphics
    stepping : 1
    cpu MHz : 3593.482
    cache size : 1024 KB
    physical id : 0
    siblings : 1
    core id : 0
    cpu cores : 1
    apicid : 16
    initial apicid : 0
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rd

    itbane wrote:
    Sorry fore double-posting, but there's something new:
    At beginning, the PC continued booting after throwing this issue. But now, Booting sometimes just stops at the very moment when the CPU is not responding.
    ...sounds like a hardware problem to me given the sporadic nature.

  • Error message: The scn engine received a request fro an I/O driver which is not currently installed on the controller.

    Hi,
    I am currently working in a new application with a cRIO system and I am having some issues when try to run a VI. My actuall configured hardware is as follow:
    -cRIO-9113 4 slot chassis
    In this chassis I have installed 3 NI 9514 servo interface modules in slot 1, 2 and 3
    -cRIO-9022 Real-Time Controller
    -NI 9144 8 slot expansion chassis
    In this chassis I have installed:
    -Slot 1: NI 9213 (16ch thermocouple inputs module)
    -Slot 2: NI 9201 (8ch ±10 V analog input module)
    -Slot 3: NI 9263 (4ch ±10 V analog output module)
    -Slot 4: NI 9426 (32ch sourcing digital input module)
    -Slot 5: NI 9426 (32ch sinking digital input module)
    -Slot 6: NI 9476 (32ch sourcing digital output module)
    In the controller I have installed the following softwares:
     -IndCom for EtherCAT Scan Engine Support 1.2.0
    -LabVIEW NI SoftMotion Module 9.0.0
    -LabVIEW NI SoftMotion Module Scan Engine Support 9.0.0
    -LabVIEW Real-Time 9.0.1
    -LabVIEW PID and Fuzzy Logic Toolkit 9.0.0
    -Web Server for LabVIEW RT 2.0.0
    -Language Support for LabVIEW RT 1.0.0.3
    -NI Scan Engine 1.1.0
    -NI Scan Engine Advance I/O Access 1.1
    -NI-Motion 8.0.0
    -NI-RIO 3.4.0
    -NI-RIO IO Scan 1.4
    -NI-VISA 4.6
    -NI-VISA Server 4.6
    Well, I made  VI to test my inputs and outputs, and the problem that I am having is that when I try tu run the VI, in the deployment window I get an error message that read: The scan engine received a request for an I/O driver which is not currently installed on the controller.
    Apparently there is another driver that I need to instal in the controller, but I have no idea of what driver could be. If someone have any idea of what this problem could be, I really will appreciate your help.
    Ferdinand Martinez
    FMO Automation LLC

    Hi nausfaratu,
    Can you elaborate a little further? What are you doing in your VI? Are you getting this error when you build it into a Real-Time Application (EXE) or when you just run it from the development environment? Is that the recommended set of software or did you do a custom software install on the controller?
    Aaron P
    National Instruments
    Applications Engineer
    http://www.ni.com/support 

Maybe you are looking for