Help with 64 bit malloc

I have read many things but I can't get a simple malloc to work in 64 bit...
cc -xarch=v8 help.c <- will compile and run fine.
cc -xarch=v9a help.c <- will compile and core dump. ( malloc is not returning a valid pointer address )
#include <sys/types.h>
int main( int argc, char *argv[] )
char * help;
help = ( char * ) ( uintptr_t ) malloc( 3 );
help[0] = 'm';
help[1] = 'e';
help[2] = '\0';
(void) printf( "Help %s \n", help );
return 1;
What am I missing ?

Add this line:
#include <stdlib.h>
It will define malloc and let the system know that
malloc will return a pointer. Without that, it will
default to thinking that malloc will return int, which
is 32-bit.

Similar Messages

  • Please Help with Compressor bit rate formulation....

    This is my first time with Compressor 2.
    I am used to working with Compressor1.
    After I compressed a couple of sequences and brought them into DVD SP4.
    My disk meter read 6.1 gb.
    I compressed a total of 2hours and 11minutes at 4.2 mbps.
    Using AC3 for my audio.
    According to my calculations that should of worked.
    Does anyone have any comments or suggestions?
    Did they add something to the new compressor that I should have set?
    Thanks,
    -marco

    hey marco, what are you using as your calculations?
    usually what i do is a get multiply the audio in seconds by the bit-rate of the audio i am using (0.192 .ac3 stereo).
    then i take that sum and subtract it from the product of the disc size minus 5% of head room (dvd-r = 37600 Mbits)
    finally i take that remainder and divide that by the product seconds of the movie.
    that gives me the average bit-rate.
    for my max i just add 2 to the number!
    so in your case:
    131 x 60 x 0.192 = 1510 Mbits
    then:
    1510 - (37600 x 0.05) = 34210 Mbits left for video
    finally:
    34210 / (131 x 60) = 4.35 Mbps for average and:
    4.35 + 2 = 6.35 Mbps max
    shoot we kinda got the same numbers. so what settings are you using?
    is your audio stereo or surround sound?
    are you using a 2 pass vbr?
    some more inside on your settings please

  • Need help with small bit of code

    Hello I am using JBuilder 9 and it cannot resolve getHeader() and getSOAPBody() any help will be appreciated to fix the problem or any suggestions
    SOAPHeader header = message.getHeader();
    SOAPBody body = message.getSOAPBody();
    header.detachNode();

    The jar files are added it reads all the imports but it just doesnt read the lines marked by stars and its coming out with errors
    cannot resolve symbol:method getSOAPHeader() in class javax.xml.soap.SOAPMessage (for the 1st 1)
    cannot resolve symbol:method getSOAPBody() in class javax.xml.soap.SOAPMessage (for the 2nd 1)
    cannot resolve symbol:method getSOAPBody() in class javax.xml.soap.SOAPMessage (for the 3rd 1)
    import javax.xml.soap.*;
    import javax.xml.soap.SOAPConnection;
    import javax.xml.soap.MessageFactory;
    import javax.xml.soap.SOAPMessage;
    import javax.xml.soap.SOAPPart;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPBody;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPHeader;
    SOAPHeader header = message.getSOAPHeader();
    SOAPBody body = message.getSOAPBody();
    SOAPBody soapBody = response.getSOAPBody();
    //First create the connection
    SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
    SOAPConnection connection = soapConnectionFactory.createConnection();
    SOAPFactory soapFactory = SOAPFactory.newInstance();
    //Create the actual message
    MessageFactory factory = MessageFactory.newInstance();
    SOAPMessage message = factory.createMessage();
    //Create objects for the message parts
    SOAPHeader header = message.getSOAPHeader();*******************
    SOAPBody body = message.getSOAPBody();***********************
    header.detachNode();
    //Populate the message
    Name bodyName = soapFactory.createName("GetLastTradePrice", "m",
    "http://wombats.ztrade.com");
    SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
    Name name = soapFactory.createName("symbol");
    SOAPElement symbol = bodyElement.addChildElement(name);
    symbol.addTextNode("SUNW");
    URL endpoint = new URL("http://wombat.ztrade.com/quotes");
    SOAPMessage response = connection.call(message, endpoint);
    connection.close();
    SOAPBody soapBody = response.getSOAPBody(); *********************

  • Help with 64-bit download

    I've never had ITunes before so I am downloading for Widows 7. It downloads, but when I plug the Iphone 3GS into the computer the error says required software not installed. I uninstalled and made sure I downloaded the 64-bit version and it's still not working. Please help

    What computer do you have?  is it 32 or 64 bit operating system?

  • Need help with certain bit of server code

    i am making a chat messenger and are having trouble with this part, i have created outputstreams as a hashtable, i hope thats correct.. the problem is it wont call up the serverThread.. is there and easier way using static variables so it doesnt have to pass the parameters? any ideas..
          // Create a DataOutputStream for writing data to the
          // other side
          DataOutputStream dout = new DataOutputStream(s.getOutputStream());
          // Save this stream so we don't need to make it again
         // Hashtable outputstreams = new Hashtable();
          outputStreams.put(s, dout);
          // Create a new thread for this connection, and then forget
          // about it
          new ServerThread(this, s);
       static void ServerThread(Server server,Socket socket) {
        // Save the parameters
        this.server = server;
        this.socket = socket;
        // Start the thread
        start();
      }

    This application is in functional state. The only thing which
    is not working is "send private message". Gui is there and functionality
    is also there but I dont have time to put it together.
    There is a readme file inculded in the zip file PLEASE READ THE FILE BEFORE RUNNING THE APPLICATION
    Dont complain for dirty code.

  • Help with a bit of splash script code

    How can I fix this to work with devfs AND udev in Arch?  I use udev now and I have no /dev/tty1 at all.   I don't know enough about how the /dev fs works so any ideas?
    mount --bind / ${spl_tmpdir}
    if [[ ! -c "${spl_tmpdir}/dev/tty1" ]]; then
    umount ${spl_tmpdir}
    clear
    echo "The filesystem mounted on / doesn't contain the /dev/tty1 device"
    echo "which is required for the silent splash to function properly."
    exit 1
    fi
    umount ${spl_tmpdir}

    OK first the obvious fix: change the if statement to
    if [[ ! -c "${spl_tmpdir}/dev/tty1" && ! -c "${spl_tmpdir}/dev/vc/1" ]]; then
    and then set a variable to whichever one was found, replacing
    each occurance of "/dev/tty1" with that variable.
    They're just 2 different names for the same 'device'.
    When does this script run? Before udevd? that might complicate things...

  • Hallo, I need to help with Acrobat 8.0 on Win7Pro 64 bit

    Hallo, I need to help with Acrobat 8.0 on Win7Pro 64 bit. The launguage for this communication is English, isnt it?. Is possible to write Czech?

    you can write in czech and you can use the translate button to read english.

  • Need a little bit of help with substring...

    Im very new at java programming, and need a bit of help with a problem:
    Here is what I have:
    System.out.print("Enter a string : ");
    Scanner scan = new Scanner (System.in);
    stringy = scan.nextLine();
    Now I want to split the string "stringy" like this: h:hi:hip:hipp:hippo
    I know this uses substring, but I can't figure out how to do it.
    Any help would be great, thanks!

    I know about the length method, what I dont knowis
    how to use the length and substring methodstogether
    to solve the problem i mentioned initially. There are three ingredients to perform this task:
    - String.length()
    - String.substring(int start, int end)
    - for-statement:
    http://java.sun.com/docs/books/tutorial/java/nutsandbo
    lts/for.html
    Pseudo code:IN <- input String from user
    LOOP FROM 0 -> IN.length()
    print IN.substring(?, ?)
    print ":"
    END LOOP
    Remember, Im very new. ;)Remember that by just handing you the solution, you
    will learn far less than finding things out by
    yourself.
    ; )Thanks a lot, i should be able to figure it out froom the pseudo code. :)

  • My iPod touch shows that it is charging but it actually doesn't charge and I've tried to restore/ restart it but the only icon is the charging icon with the battery icon with a bit of red fill and a small lightning icon below it. Can anybody help me?

    My iPod touch shows that it is charging but it actually doesn't charge and I've tried to restore/ restart it because the only icon is the charging icon, the one with the battery icon with a bit of red fill and a small lightning icon below it. Can anybody help me and give me solutions before I go to an apple service center?

    Place the iPod Touch into DFU mode.  This will be similer to what the factory would do to install the iOS onto new iOS devices.
    Placing it into DFU mode will allow you to "format" and install the current iOS for that device.
    To place your iOS device into DFU mode.
    First connect you iOS device to you computer.
    Open iTunes if not already open
    Now turn off your iOS device using the power swipe.
    Press the home and sleep button on your iOS device for 10 seconds.
    Release the sleep button but carry on holding down the home button.  For another 10 seconds.
    Your iOS device should now be on DFU.  Click on restore and iTunes will download the lastest iOS for your device.
    Hopefully that sorts it if not, you will have to go to a sevice centre or call Apple Care up and get them to collect it and repair it. (replace it)

  • Little bit of help with the duplication process needed

    Hi
    I trying to duplicate a database from one server to a remote server. They are both running windows server 2003 (my first problem) , the primary server is running oracle 11gR1 and the (hopefully) receiving server is running 11gR2(is that going to be a problem?) and I'm a little stuck on some parts of the process.
    The book I'm using says to edit the listener.ora file to include a SID_DESC of the remote database. Here is my listener.ora file with the modifications
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CGARDMSTR)
    (ORACLE_HOME = G:\app\administrator\product\11.1.0\db_1)
    (PROGRAM = extproc)
    (SID_DESC =
    (GLOBAL_DBNAME = CGARDMSTR)
    (ORACLE_HOME =G:\app\administrator\product\11.1.0\db_1)
    (SID_NAME = CGARDMSTR)
    *(SID_DESC* *=*
    *(GLOBAL_DBNAME* *=* cgard)
    *(ORACLE_HOME* *=F:\oracle\product\11.2.0\dbhome_1)*
    *(SID_NAME* *=* cgard)
    (bold is what i added)
    it then said to chnage my tnsnames.ora
    CGARD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = cgard)
    CGARD5DE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = CGARD5DEV)
    CGARDMST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test.host.local)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = CGARDMSTR)
    cgard =
    *(DESCRIPTION =*
    *(ADDRESS = (PROTOCOL = TCP)(HOST = live.host.local)(PORT = 1521))*
    *(CONNECT_DATA =*
    *(SERVER = DEDICATED)*
    *(SERVICE_NAME = cgard)*
    I changed the local domain to host for business reasons
    The next step was to create a initialization parameter file which I am guessing is a pfile and hopefully not a spfile. It then says to only enter one param db_name and the conversion params if the filesystem is diffrent. Problem is I don't know what to do with this file, if I am suppose to switch the second database to this file then surly I would need some more params? Anyway thats the first of many questions.
    When I try to run through the rman commands it describes it also trips up:
    RMAN> connect auxiliary sys/*********@live.host.local
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-04006: error from auxiliary database: ORA-12170: TNS:Connect timeout occurr
    ed
    The other database is up and connectable via sqldevloper so I'm guessing it was my configuration of listener and tnsnames
    Ok to reiterate my questions are:
    1) what needs to be in the pfile I create for the database thats going to receive the backup and what do I do with that file when I have made it?
    2) I am pretty sure my listener and tsunamis config is completely wrong so can I have some pointers on fixing that?
    3) Was the reason I could not connect to the receiving database my tns and listener config or is it something else?
    Quite a few other questions but untill I know some more about the above I doubt I will be able to ask properly.
    Also if this helps the book I am using is Expert Oracle Database 11g Administration and the page is 835(the method that begins on that page) and I am willing to write out the whole method if you need more details.
    Oh and if you havent figured it out I am very new to this so if some of this sounds very wrong or just stupid just say what I need to change and I will get right on it.
    Thanks
    Alex

    Ok so I have made some progress. Here is where I am currently at:
    RMAN> RUN
    2> {
    3> SET NEWNAME FOR DATAFILE 1 TO 'F:\oracle\oradata\cgard\file1.dbs';
    4> SET NEWNAME FOR DATAFILE 2 TO 'F:\oracle\oradata\cgard\file2.dbs';
    5> SET NEWNAME FOR DATAFILE 3 TO 'F:\oracle\oradata\cgard\file3.dbs';
    6> SET NEWNAME FOR DATAFILE 4 TO 'F:\oracle\oradata\cgard\file4.dbs';
    7> SET NEWNAME FOR DATAFILE 5 TO 'F:\oracle\oradata\cgard\file5.dbs';
    8> SET NEWNAME FOR TEMPFILE 1 TO 'F:\oracle\oradata\cgard\temp1.dbs';
    9> duplicate target database
    10> to cgard
    11> from active database
    12> pfile='F:\oracle\product\11.2.0\dbhome_1\database\initCGARD.ora';
    13> }
    executing command: SET NEWNAME
    starting full resync of recovery catalog
    full resync complete
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting Duplicate Db at 19-NOV-10
    using channel ORA_AUX_DISK_1
    contents of Memory Script:
    set newname for datafile 1 to
    "F:\ORACLE\ORADATA\CGARD\FILE1.DBS";;
    set newname for datafile 2 to
    "F:\ORACLE\ORADATA\CGARD\FILE2.DBS";;
    set newname for datafile 3 to
    "F:\ORACLE\ORADATA\CGARD\FILE3.DBS";;
    set newname for datafile 4 to
    "F:\ORACLE\ORADATA\CGARD\FILE4.DBS";;
    set newname for datafile 5 to
    "F:\ORACLE\ORADATA\CGARD\FILE5.DBS";;
    backup as copy reuse
    datafile 1 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE1.DBS"; datafile
    2 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE2.DBS"; datafile
    3 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE3.DBS"; datafile
    4 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE4.DBS"; datafile
    5 auxiliary format
    "F:\ORACLE\ORADATA\CGARD\FILE5.DBS"; ;
    sql 'alter system archive log current';
    executing Memory Script
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting backup at 19-NOV-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=143 device type=DISK
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00001 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\SYS
    TEM01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:23:
    52
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00004 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\USE
    RS01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:24:
    24
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00002 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\SYS
    AUX01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:24:
    43
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00003 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\UND
    OTBS01.DBF
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:25:
    17
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00005 name=G:\APP\ADMINISTRATOR\ORADATA\CGARDMSTR\RMA
    N01.DBF
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 11/19/2010 16:25:55
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 11/19/2010 16:25:
    55
    ORA-17629: Cannot connect to the remote database server
    ORA-17627: ORA-01017: invalid username/password; logon denied
    ORA-17629: Cannot connect to the remote database server
    RMAN>
    I did issue the commands:
    C:\Documents and Settings\Administrator>rman target /
    Recovery Manager: Release 11.1.0.6.0 - Production on Fri Nov 19 13:55:40 2010
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    connected to target database: CGARDMST (DBID=3160500813)
    RMAN> connect catalog rman/rman
    connected to recovery catalog database
    RMAN> connect auxiliary sys/**********@cgard
    connected to auxiliary database: CGARD (not mounted)
    So I am not quite sure what it wants. I read somewhere about a password file but I don't understand how it will help, also most things I have looked at wernt clear on how to do it. I took a stab anyway:
    G:\app\administrator\product\11.1.0\db_1\BIN>orapwd file=orapwcgard password=*********** entries=20 ignorecase=n
    Was run on the original database host.
    File was then copied to "F:\oracle\product\11.2.0\dbhome_1\database" on the receiving database's host it was then renamed to PWDcgard.ora as there was file there already with that name.
    It did not help(same error).
    The book I am using mentions the 'PASSWORD FILE' param to be used with the duplicate command but I cant find a example on how to use it so any help with that would be great.
    Thanks for the effort so far guys its really appreciated.

  • WRT310N: Help with DMZ/settings (firmware 1.0.09) for wired connection

    Hello. I have a WRT310N and have been having a somewhat difficult time with my xbox 360's connection. I have forwarded all the necessary ports (53, 80, 88, 3074) for it to run, and tried changing MTU and what-not.
    I don't know if I have DMZ setup incorrectly, or if it's my settings.
    Setup as follows:
    PCX2200 modem connected via ethernet to WRT310N. 
    The WRT310N has into ethernet port 1 a WAP54G, and then upstairs (so that my Mother's computer can get a strong signal) I have another WAP54G that I believe receives its signal from the downstairs 54G. 
    In the back of the WRT310N, I have my computer connected via ethernet port 3, and my Xbox 360 connected via ethernet port 4.
    Now, I first figured I just have so many connections tied to the router and that is the reason for being so slow. However, when I unplug all the other ethernet cords and nothing is connected wirelessly, except for my Xbox connected to ethernet port 4, it is still poor. Also, with everything connected (WAP54G and other devices wirelessly) I get on my PC and run a speedtest.  For the sake of advice, my speedtests I am running on my PC are (after 5 tests) averagely 8.5 Mbps download, and 1.00 Mbps upload, with a ping of  82ms.
    Here is an image of the results:
    http://www.speedtest.net][IMG]http://www.speedtest.net/result/721106714.png
    Let me add a little more detail of my (192.168.1.1) settings for WRT310N.
    For starters, my Father's IT guy at his workplace set up this WRT310N and WAP54G's. So some of these settings may be his doing. I just don't know which.
    "Setup" as Auto-configurations DHCP. I've added my Xbox's IP address to the DHCP reservation the IP of 192.168.1.104. This has (from what I've noticed) stayed the same for days.
    MTU: Auto, which stays at 1500 when I check under status.
    Advanced Routing: NAT routing enabled, Dynamic Routing disabled. 
    Security: Disabled SPI firewall, UNchecked these: Filter Anonymous Internet Requests, Multicast, and Internet NAT redirection.
    VPN passthrough: All 3 options are enabled (IPSec, PPTP, L2TP)
    Access Restrictions: None.
    Applications and Gaming: Single port forwarding has no entries. Port Range Forwarding I have the ports 53 UDP/TCP, 88 UDP, 3074 UDP/TCP, and 80 TCP forwarded to IP 192.168.1.104 enabled. (192.168.1.104 is the IP for my xbox connected via ethernet wired that is in DHCP reserved list)
    Port Range Triggering: It does not allow me to change anything in this page.
    DMZ: I have it Enabled. This is where I am a bit confused. It says "Source IP Address" and it has me select either "Any IP address" or to put entries to the XXX.XXX.XXX.XXX to XXX fields. I have selected use any IP address. Then the source IP area, it says "Destination:"  I can do either "IP address: 192.168.1.XXX" or "MAC address:" Also, under MAC Address, it says DHCP Client Table and I went there and saw my Xbox under the DHCP client list (It shows up only when the Xbox is on) and selected it.  
    Under QoS: WMM Enabled, No acknowledgement disabled.
    Internet Access Priority: Enabled. Upstream Bandwith I set it to Manual and put 6000 Kbps. I had it set on Auto before, but I changed it. I have no idea what to put there so I just put a higher number. 
    Then I added for Internet Access Priority a Medium Priority for Ethernet Port 4 (the port my xbox is plugged into).
    Administration: Management: Web utility access: I have checked HTTP, unchecked HTTPS.
    Web utility access via Wireless: Enabled. Remote Access: Disabled.
    UPnp: Enabled.
    Allow Users to Configure: Enabled.
    Allow users to Disable Internet Access: Enabled.
    Under Diagnostics, when I try and Ping test 192.168.1.104 (xbox when on and connected to LIVE), I get:
    PING 192.168.1.104 (192.168.1.104): 24 data bytes
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    --- 192.168.1.104 data statistics ---
    5 Packets transmitted, 0 Packets received, 100% Packet loss
    Also, when I do Traceroute Test for my Xbox's IP, I just keep getting: 
    traceroute to 192.168.1.104 (192.168.1.104), 30 hops max, 40 byte packets
    1 * * * 192.168.1.1 Request timed out.
    2 * * * 192.168.1.1 Request timed out.
     As for the Wireless Settings, it is all on the default settings with Wi-Fi Protected setup Enabled.
    To add, I have tried connecting my modem directly to the Xbox and my connection is much improved. I have no difficulty getting the NAT open, for it seems my settings are working for that. Any help with these settings would be VERY much appreciated. 
    Message Edited by CroftBond on 02-18-2010 01:09 PM

    I own 2 of these routers (one is a spare) with the latest firmware and I have been having trouble with them for over a year.  In my case the connection speed goes to a crawl and the only way to get it back is to disable the SPI firewall.  Rebooting helps for a few minutes, but the problem returns.  All of the other fixes recommended on these forums did not help.  I found out the hard way that disabling the SPI Firewall also closes all open ports ignoring your port forwarding settings.  If you have SPI Firewall disabled, you will never be able to ping your IP from an external address.  Turn your SPI Firewall back on and test your Ping. 
    John

  • Need help with a currently "in-use" form we want to switch to Adobes hosting service

    Hi, I am in desperate need of help with some issues concerning several forms which we currently use a paid third party (not Adobe) to host and "re-distribute through email"...Somehow I got charged $14.95 for YOUR service, (signed up for a trial, but never used it)..and now I am paying for a year of use of the similar service which Adobe is in control of.  I might want to port my form distribution through Adobe in the hopes of reducing the errors, problems and hassles my customers are experiencing when some of them push our  "submit button". (and I guess I am familiar with these somewhat from reading what IS available in here, and I also know that, Adobe is working to alleviate some of these " submit"  issues, so let's don't start by going backwards, here) I need solutions now for my issues or I can leave it as is, If Adobe's solution will be no better for my end users...
    We used FormsCentral to code these forms and it works for the most part (if the end-user can co-operate, and thats iffy, sometimes), but I need help with how to make it go through your servers (and not the third party folks we use now), Not being cruel or racist here, but your over the phone "support techs" are about horrible & I cannot understand them or work with any of them, so I would definitely need someone who speaks English and can understand the nuances of programming these forms, to please contact me back. (Sorry, but both those attributes will be required to be able to help me, so, no "newbie-interns" or first week trainees are gonna cut it).... If you have anyone who fits the bill on those items and would be willing to help us, please contact me back at your earliest convenience. If we have to communicate here, I will do that & I can submit whatever we need to & to whoever we need to.
    I need to get this right and working for the majority of my users and on any platform and OS.
    You may certainly call me to talk about this, and I have given my number numerous times to your (expletive deleted) time wasting - recording message thingy. So, If it's not available look it up under [email protected]
    (and you will probably get right to me, unlike my and I'm sure most other folks',  "Adobe phone-in experiences")
    Thank You,
    Michael Corman
    VinylCouture
    Phenix City, Alabama  36869

    Well, thanks for writing back...just so you know...I started using Adobe products in 1987, ...yeah...back then...like Illustrator 1 & 9" B&W Macs ...John Warnock's Helvetica's....stuff like that...8.5 x 11 LaserWriters...all that good stuff...I still have some of it working on a mac...much of it was stuff I bought. some stuff I did not...I'm not a big fan of this "cloud" thing Adobe has foisted upon the creatives of the world...which I'm sure you can tell...but the functionality and usefulness of your software can not be disputed, so feel free to do whatever we will continue to pay for, ...I am very impressed with CC PS on the 64 bit PC and perhaps I will end up paying you the stipend that you demand for the other services.
    So  I guess that brings us to our problem.. a few years back and at the height of the recession and near bankruptcy myself,  I was damn lucky and hit on something and began a small arts and crafts supply service to sell my products online to a very "niche market" ...I had a unique product and still sell that product (plus others) online...My website is www.vinylcouture.com...Strange? Yes...but there is a market it seems, for everything now, and this is the market I service...Catagorically, these are 99%+ women that use these "adhesive, sticky backed vinyl products"  to make different "craft items" that are just way too various and numerous to go into... generally older women, women who are computer illiterate for the most part...and all this is irrelevant to my problem, but I want you to have every bit of background on this and especially the demographic we are dealing with, so we can get right to the meat of the problem.
    OK...So about two years ago, I decided to offer a "plain sheet" product of a plain colored "stick back" vinyl... it is available in multiple quantities of packs ( like 5 pieces, 10 pieces, 15 pieces, in a packi  & so on)...and if you are still on my site.. go to any  "GO RIGHT TO OUR ORDER PAGE"  button, scroll down a little...and then to the "PLAIN VINYL" section...you will see the Weebly website order process.) You can back out from here, I think,..but, anyway this product is available in 63 colors + or - a few. So then the problem is,  how do they select their individual colors within that (whatever) pack?... .
    So my initial idea was to enable a "selection form" for these "colors" that would be transmitted to me via email as 'part" of the "order process".. We tried getting our customers to submit a  " a list" ( something my competitiors still do, lol, poor bastards)......but that..is just unbelievable..I can't even begin to tell you what a freakin' nightmare that was...these people cannot even count to 10, much less any higher... figuring out what colors to list and send me... well, lets just say, it wasn't working......I had to figure out a better way...Something had to be done.
    So after thinking this all out,  and yeah...due to my total ignorance, i figured that we could make a form with Live Cycle Designer (Now Forms Central)...(back then something that was bundled with Adobe Acrobat Pro), I believe, and thats what this thing was authored in... and it would be all good...LOL!
    Well not so simple...as you well know, Adobe Acrobat would NOT LET YOU EMAIL anything from itself.....it just wouldn't work (and I know why, and all that hooey), but not being one to take NO for answer,.I started looking for a way to make my little gizmo work.. So I found this company that said they can "hijack" (re-direct actually) the request to email, bypass the wah-wah, and re-transmit it to the proper parties.....for less than $100 a year,  I think...its called http://pdf-fillableforms.com/.
    A nice gentleman named Joseph Silva helped us program the thing to go to his servers and back out. Please dont hassle them...I need them...for now..it basically does work...try it...you should get back a copy of the form that you filled out...good luck however,  if you're on MAC OSX or similar...
    I have included a copy of both of our forms (and feel free to fill it out and play with it)...just put test somewhere on it...(and you must include YOUR email or it will balk)..they are supposed to be mostly identical, except one seems to be twice as large....generating a 1.7 meg file upon submission, while the other one only generates a 600K file or so...thats another issue for another day or maybe you can advise on that also...
    OK so far so good......In our shop, once Grandma buys a 10 pack (or whatever), Only then she gets to the link on her receipt page ro the relevant "selection form" ,(this prevents "Filling and Sending"  with "no order" and "no payment", another early problem we had)... which they can click on and it will usually download and open up on their device if all goes well...Then our little form is supposed to be fillable and is supposed to ADD UP all the quantities, so grandma knows how many she is buying and so forth right on the fly,  and even while she changes her mind..., and IT'S LARGE so grandma can see it, and then it TOTALS it all up for them, ( cause remember, they can NOT add)..,  except there is a programming bug (mouse-click should be a mouse-up probably or something..) which makes you click in the blank spaces to get to a correct TOTAL...about 70-80% of our customers can enable all these features and usually the process completes without problems for them especially on PC's running Windows OS and Acrobat Reader X or XI...at least for most... Unfortunately it is still not the "seamless process" I would like or had envisioned for the other folks out there that do have trouble using our form....  Many folks report to us the following issues that we know of.  First of all it takes too much time to load up...We know its HUGE...is there anyway that you can see, to streamline this thing? I would love for it to be more compact...this really helps on the phones and pads as I'm sure you well know.
    Some just tell us,"it WON'T work"....I believe this is because they are totally out of it and dont even have Adobe Reader on their machine, & don't know how to get it ( yes, we provide the links).....or it's some ancient version....no one can stop this one...
    It almost always generates some kind ( at least one time)  of "error message" which we do warn them about..., telling one,  basically that "Acrobat doesnt even like this happening at all, and it could be detrimental to ones computer files", blah-blah...(this freaks grandma out really bad)...& usually they end up not even trying to send it...  and then I get calls that even you wouldn't believe...& If they DO nut up and push the Red "Submit Form" button, it will usually send the thing to us (and also back to them at the "required email address" they furnished on the form, thats what the folks at the "fillable forms place" do) so, if it's performing it's functions, why it is having to complain?. What are we doing wrong?....and how can I fix it?...Will re-compiling it or saving it as a newer version of "FormsCentral" correct any of these problems ?
    Ok, so that should keep you busy for a minute and we can start out with those problems...but the next thing is, how can I take advantage of YOUR re-direct & hosting services?, And will it get rid of the error messages, and the slowness, and the iOS incompatibilities ? (amazingly,  the last iOS Reader version worked almost OK.. but the newest version doesnt seem to work with my form on my iphone4)  If it will enable any version of the iOS to send my form correctly and more transparently, then it might be worth the money...$14.95 a MONTH you say. hmmmmm...Better be good.
    Another problem is, that I really don't need 5000 forms a month submitted. I think its like 70-100 or less....Got any plans for that?  Maybe I'm just not BIG ENOUGH to use Adobe's services, however in this case, I really don't care whose I do use as long as the product works most correctly for my customers as well as us. Like I said, If I'm doing the best I can, I won't change anything, and still use the other third party, If Adobe has a better solution, then i'm all for that as well. In the meantime, Thanks for any help you can provide on this...
    Michael Corman
    VinylCouture.com
    (706) 326-7911

  • Help with Script created to check log files.

    Hi,
    I have a program we use in our organization on multiple workstations that connect to a MS SQL 2005 database on a Virtual Microsoft 2008 r2 Server. The program is quite old and programmed around the days when serial connections were the most efficient means
    of connection to a device. If for any reason the network, virtual server or the SAN which the virtual server runs off have roughly 25% utilization or higher on its resources the program on the workstations timeout from the SQL database and drop the program
    from the database completely rendering it useless. The program does not have the smarts to resync itself to the SQL database and it just sits there with "connection failed" until human interaction. A simple restart of the program reconnects itself
    to the SQL database without any issues. This is fine when staff are onsite but the program runs on systems out of hours when the site is unmanned.
    The utilization of the server environment is more than sufficient if not it has double the recommended resources needed for the program. I am in regular contact with the support for the program and it is a known issue for them which i believe they do not
    have any desire to fix in the near future. 
    I wish to create a simple script that checks the log files on each workstation or server the program runs on and emails me if a specific word comes up in that log file. The word will only show when a connection failure has occurred.
    After the email is sent i wish for the script to close the program and reopen it to resync the connection.
    I will schedule the script to run ever 15 minutes.
    I have posted this up in a previous post about a month ago but i went on holidays over xmas and the post died from my lack or response.
    Below is what i have so far as my script. I have only completed the monitoring of the log file and the email portion of it. I had some help from a guy on this forum to get the script to where it is now. I know basic to intermediate scripting so sorry for my
    crudity if any.
    The program is called "wasteman2G" and the log file is located in \\servername\WasteMan2G\Config\DCS\DCS_IN\alert.txt
    I would like to get the email side of this script working first and then move on to getting the restart of the program running after.
    At the moment i am not receiving an error from the script. It runs and doesn't complete what it should.
    Could someone please help?
    Const strMailto = "[email protected]"
    Const strMailFrom = "[email protected]"
    Const strSMTPServer = "mrc1tpv002.XXXX.local"
    Const FileToRead = "\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\alert.txt"
    arrTextToScanFor = Array("SVR2006","SVR2008")
    Set WshShell = WScript.CreateObject("WScript.Shell")
    Set objFSO = WScript.CreateObject("Scripting.FileSystemObject")
    Set oFile = objFSO.GetFile(FileToRead)
    dLastCreateDate = CDate(WshShell.RegRead("HKLM\Software\RDScripts\CheckTXTFile\CreateDate"))
    If oFile.DateCreated = dLastCreateDate Then
    intStartAtLine = CInt(WshShell.RegRead("HKLM\Software\RDScripts\CheckTXTFile\LastLineChecked"))
    Else
    intStartAtLine = 0
    End If
    i = 0
    Set objTextFile = oFile.OpenAsTextStream()
    Do While Not objTextFile.AtEndOfStream
    If i < intStartAtLine Then
    objTextFile.SkipLine
    Else
    strNextLine = objTextFile.Readline()
    For each strItem in arrTextToScanFor
    If InStr(LCase(strNextLine),LCase(strItem)) Then
    strResults = strNextLine & vbcrlf & strResults
    End If
    Next
    End If
    i = i + 1
    Loop
    objTextFile.close
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\FileChecked", FileToRead, "REG_SZ"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\CreateDate", oFile.DateCreated, "REG_SZ"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\LastLineChecked", i, "REG_DWORD"
    WshShell.RegWrite "HKLM\Software\RDScripts\CheckTXTFile\LastScanned", Now, "REG_SZ"
    If strResults <> "" Then
    SendCDOMail strMailFrom,strMailto,"VPN Logfile scan alert",strResults,"","",strSMTPServer
    End If
    Function SendCDOMail( strFrom, strSendTo, strSubject, strMessage , strUser, strPassword, strSMTP )
    With CreateObject("CDO.Message")
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    .Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTP
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/sendusername") = strUser
    .Configuration.Fields.item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = strPassword
    .Configuration.Fields.Update
    .From = strFrom
    .To = strSendTo
    .Subject = strSubject
    .TextBody = strMessage
    On Error Resume Next
    .Send
    If Err.Number <> 0 Then
    WScript.Echo "SendMail Failed:" & Err.Description
    End If
    End With
    End Function

    Thankyou for that link, it did help quite a bit. What i wanted was to move it to csript so i could run the wscript.echo in commandline. It all took to long and found a way to complete it via Batch. I do have a problem with my script though and you might
    be able to help.
    What i am doing is searching the log file. Finding the specific words then outputting them to an email. I havent used bmail before so thats probably my problem but then im using bmail to send me the results.
    Then im clearing the log file so the next day it is empty so that when i search it every 15 minutes its clean and only when an error occurs it will email me.
    Could you help me send the output via email using bmail or blat?
    @echo off
    echo Wasteman Logfile checker
    echo Created by: Reece Vellios
    echo Date: 08/01/2014
    findstr "SRV2006 & SRV2008" \\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt > c:\log4mail.txt
    if %errorlevel%==0 C:\Documents and Settings\rvellios\Desktop\DCS Checker\bmail.exe -s mrc1tpv002.xxx.local -t [email protected] -f [email protected] -h -a "Process Dump" -m c:\log4mail.txt -c
    for %%G in (\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt) do (copy /Y nul "%%G")
    This the working script without bmail
    @echo off
    echo Wasteman Logfile checker
    echo Created by: Reece Vellios
    echo Date: 08/01/2014
    findstr "SRV2006 & SRV2008" \\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt > C:\log4mail.txt
    if %errorlevel%==0 (echo Connection error)
    for %%G in (\\Mrctpv005\WasteMan2G\Config\DCS\DCS_IN\Alert.Txt) do (copy /Y nul "%%G")
    I need to make this happen:
    If error occurs at "%errorlevel%=0" then it will output the c:\log4mail.txt via smtp email using bmail.

  • Help with crashes

    So... this will be a bit long...
    I am getting some serious problems with my machine, and I don't think I can solve this my self. I be not very tech-savvy.
    Recently I upgraded my cpu video card and ram in a period of 1-2 weeks. Everything was fine at one point, but then stuff went bad.
    I am dual booting arch with win. My win started crashing during loading sreen, but only at first boot of the day. Then no problem. I decided to ignore.
    At that time I was using only win for like a month. Then after the ram upgrade my whole pc started crashing at random times.
    I decided to switch the new ram with an other one. Then the crashes stoped, but still I had that loading screen crash at first boot.
    Never the less everything else was fine.
    Then I went to arch to use it again. First my firefox started crashing at random times (the same stuff was happening in win before the second ram change,
    after that win's firefox was fine but not the arch one). Then my whole sistem started crashing at random times first only when I go on youtube,
    but now when I watch videos offline too and use firefox for other things. I dont know what I am supposed to do. I was reading some of the wiki and
    installed mcelog to see if it can catch something.
    Here is log from last crash:
    /var/log/mcelog
    mcelog: failed to prefill DIMM database from DMI data
    Hardware event. This is not a software error.
    MCE 0
    CPU 0 BANK 0
    TIME 1405256587 Sun Jul 13 16:03:07 2014
    MCG status:
    MCi status:
    Uncorrected error
    Error enabled
    Processor context corrupt
    MCA: BUS Level-0 Local-CPU-originated-request Generic Memory-access Request-did-not-timeout Error
    BQ_DCU_READ_TYPE BQ_ERR_HARD_TYPE BQ_ERR_HARD_TYPE
    timeout BINIT (ROB timeout). No micro-instruction retired for some time
    STATUS b200004000000800 MCGSTATUS 0
    MCGCAP 806 APICID 0 SOCKETID 0
    CPUID Vendor Intel Family 6 Model 23
    Hardware event. This is not a software error.
    MCE 1
    CPU 0 BANK 5
    TIME 1405256587 Sun Jul 13 16:03:07 2014
    MCG status:
    MCi status:
    Uncorrected error
    Error enabled
    Processor context corrupt
    MCA: BUS Level-3 Generic Generic Other-transaction Request-did-not-timeout Error
    BQ_DCU_READ_TYPE BQ_ERR_AERR2_TYPE BQ_ERR_AERR2_TYPE
    received parity error on response transaction
    MCE driven
    STATUS b200001014000e0f MCGSTATUS 0
    MCGCAP 806 APICID 0 SOCKETID 0
    CPUID Vendor Intel Family 6 Model 23
    Hardware event. This is not a software error.
    MCE 2
    CPU 1 BANK 5
    TIME 1405256587 Sun Jul 13 16:03:07 2014
    MCG status:
    MCi status:
    Uncorrected error
    Error enabled
    Processor context corrupt
    MCA: BUS Level-3 Generic Generic Other-transaction Request-did-not-timeout Error
    BQ_DCU_READ_TYPE BQ_ERR_HARD_TYPE BQ_ERR_HARD_TYPE
    received parity error on response transaction
    MCE is observed
    STATUS b200001020000e0f MCGSTATUS 0
    MCGCAP 806 APICID 1 SOCKETID 0
    CPUID Vendor Intel Family 6 Model 23
    here is journalctl -b -1
    -- Logs begin at Wed 2015-07-02 16:37:48 EEST, end at Sun 2014-07-13 16:51:07 EEST. --
    Jul 13 12:37:34 ma3x systemd-journal[133]: Runtime journal is using 8.0M (max allowed 197.8M, trying to leave 296.6M free of 1.9G available → current limit 197.8M).
    Jul 13 12:37:34 ma3x systemd-journal[133]: Runtime journal is using 8.0M (max allowed 197.8M, trying to leave 296.6M free of 1.9G available → current limit 197.8M).
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys cpuset
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys cpu
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys cpuacct
    Jul 13 12:37:34 ma3x kernel: Linux version 3.15.5-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.0 20140604 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Jul 10 07:08:50 CEST 2014
    Jul 13 12:37:34 ma3x kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=2f1b0e26-dfb8-4c78-8320-1675a6d5f935 rw quiet
    Jul 13 12:37:34 ma3x kernel: e820: BIOS-provided physical RAM map:
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000cfe8ffff] usable
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x00000000cfe90000-0x00000000cfedffff] reserved
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfee2fff] ACPI NVS
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x00000000cfee3000-0x00000000cfeeffff] ACPI data
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x00000000cfef0000-0x00000000cfefffff] reserved
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    Jul 13 12:37:34 ma3x kernel: BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
    Jul 13 12:37:34 ma3x kernel: NX (Execute Disable) protection: active
    Jul 13 12:37:34 ma3x kernel: SMBIOS 2.5 present.
    Jul 13 12:37:34 ma3x kernel: DMI: / , BIOS 6.00 PG 12/04/2007
    Jul 13 12:37:34 ma3x kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jul 13 12:37:34 ma3x kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jul 13 12:37:34 ma3x kernel: No AGP bridge found
    Jul 13 12:37:34 ma3x kernel: e820: last_pfn = 0x130000 max_arch_pfn = 0x400000000
    Jul 13 12:37:34 ma3x kernel: MTRR default type: uncachable
    Jul 13 12:37:34 ma3x kernel: MTRR fixed ranges enabled:
    Jul 13 12:37:34 ma3x kernel: 00000-9FFFF write-back
    Jul 13 12:37:34 ma3x kernel: A0000-BFFFF uncachable
    Jul 13 12:37:34 ma3x kernel: C0000-CEFFF write-protect
    Jul 13 12:37:34 ma3x kernel: CF000-EFFFF uncachable
    Jul 13 12:37:34 ma3x kernel: F0000-FFFFF write-through
    Jul 13 12:37:34 ma3x kernel: MTRR variable ranges enabled:
    Jul 13 12:37:34 ma3x kernel: 0 base 100000000 mask FE0000000 write-back
    Jul 13 12:37:34 ma3x kernel: 1 base 120000000 mask FF0000000 write-back
    Jul 13 12:37:34 ma3x kernel: 2 base 000000000 mask F80000000 write-back
    Jul 13 12:37:34 ma3x kernel: 3 base 080000000 mask FC0000000 write-back
    Jul 13 12:37:34 ma3x kernel: 4 base 0C0000000 mask FF0000000 write-back
    Jul 13 12:37:34 ma3x kernel: 5 base 0CFF00000 mask FFFF00000 uncachable
    Jul 13 12:37:34 ma3x kernel: 6 disabled
    Jul 13 12:37:34 ma3x kernel: 7 disabled
    Jul 13 12:37:34 ma3x kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jul 13 12:37:34 ma3x kernel: e820: update [mem 0xcff00000-0xffffffff] usable ==> reserved
    Jul 13 12:37:34 ma3x kernel: e820: last_pfn = 0xcfe90 max_arch_pfn = 0x400000000
    Jul 13 12:37:34 ma3x kernel: found SMP MP-table at [mem 0x000f3ab0-0x000f3abf] mapped at [ffff8800000f3ab0]
    Jul 13 12:37:34 ma3x kernel: Scanning 1 areas for low memory corruption
    Jul 13 12:37:34 ma3x kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Jul 13 12:37:34 ma3x kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jul 13 12:37:34 ma3x kernel: [mem 0x00000000-0x000fffff] page 4k
    Jul 13 12:37:34 ma3x kernel: BRK [0x01b3e000, 0x01b3efff] PGTABLE
    Jul 13 12:37:34 ma3x kernel: BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    Jul 13 12:37:34 ma3x kernel: BRK [0x01b40000, 0x01b40fff] PGTABLE
    Jul 13 12:37:34 ma3x kernel: init_memory_mapping: [mem 0x12fe00000-0x12fffffff]
    Jul 13 12:37:34 ma3x kernel: [mem 0x12fe00000-0x12fffffff] page 2M
    Jul 13 12:37:34 ma3x kernel: BRK [0x01b41000, 0x01b41fff] PGTABLE
    Jul 13 12:37:34 ma3x kernel: init_memory_mapping: [mem 0x12c000000-0x12fdfffff]
    Jul 13 12:37:34 ma3x kernel: [mem 0x12c000000-0x12fdfffff] page 2M
    Jul 13 12:37:34 ma3x kernel: init_memory_mapping: [mem 0x100000000-0x12bffffff]
    Jul 13 12:37:34 ma3x kernel: [mem 0x100000000-0x12bffffff] page 2M
    Jul 13 12:37:34 ma3x kernel: init_memory_mapping: [mem 0x00100000-0xcfe8ffff]
    Jul 13 12:37:34 ma3x kernel: [mem 0x00100000-0x001fffff] page 4k
    Jul 13 12:37:34 ma3x kernel: [mem 0x00200000-0xcfdfffff] page 2M
    Jul 13 12:37:34 ma3x kernel: [mem 0xcfe00000-0xcfe8ffff] page 4k
    Jul 13 12:37:34 ma3x kernel: RAMDISK: [mem 0x379be000-0x37cd6fff]
    Jul 13 12:37:34 ma3x kernel: ACPI: RSDP 0x00000000000F7D00 000024 (v02 IntelR)
    Jul 13 12:37:34 ma3x kernel: ACPI: XSDT 0x00000000CFEE3080 000044 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
    Jul 13 12:37:34 ma3x kernel: ACPI: FACP 0x00000000CFEE80C0 0000F4 (v03 IntelR AWRDACPI 42302E31 AWRD 00000000)
    Jul 13 12:37:34 ma3x kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aEventBlock: 32/8 (20140214/tbfadt-603)
    Jul 13 12:37:34 ma3x kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/8 (20140214/tbfadt-603)
    Jul 13 12:37:34 ma3x kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/PmTimerBlock: 32/8 (20140214/tbfadt-603)
    Jul 13 12:37:34 ma3x kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/8 (20140214/tbfadt-603)
    Jul 13 12:37:34 ma3x kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aEventBlock: 8, using default 32 (20140214/tbfadt-684)
    Jul 13 12:37:34 ma3x kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 8, using default 16 (20140214/tbfadt-684)
    Jul 13 12:37:34 ma3x kernel: ACPI BIOS Warning (bug): Invalid length for FADT/PmTimerBlock: 8, using default 32 (20140214/tbfadt-684)
    Jul 13 12:37:34 ma3x kernel: ACPI: DSDT 0x00000000CFEE31C0 004EFC (v01 INTELR AWRDACPI 00001000 MSFT 03000000)
    Jul 13 12:37:34 ma3x kernel: ACPI: FACS 0x00000000CFEE0000 000040
    Jul 13 12:37:34 ma3x kernel: ACPI: MCFG 0x00000000CFEE8280 00003C (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
    Jul 13 12:37:34 ma3x kernel: ACPI: APIC 0x00000000CFEE81C0 000084 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
    Jul 13 12:37:34 ma3x kernel: ACPI: SSDT 0x00000000CFEE8920 000817 (v01 PmRef CpuPm 00003000 INTL 20060113)
    Jul 13 12:37:34 ma3x kernel: ACPI: Local APIC address 0xfee00000
    Jul 13 12:37:34 ma3x kernel: No NUMA configuration found
    Jul 13 12:37:34 ma3x kernel: Faking a node at [mem 0x0000000000000000-0x000000012fffffff]
    Jul 13 12:37:34 ma3x kernel: Initmem setup node 0 [mem 0x00000000-0x12fffffff]
    Jul 13 12:37:34 ma3x kernel: NODE_DATA [mem 0x12fff7000-0x12fffbfff]
    Jul 13 12:37:34 ma3x kernel: [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff88012b600000-ffff88012f5fffff] on node 0
    Jul 13 12:37:34 ma3x kernel: Zone ranges:
    Jul 13 12:37:34 ma3x kernel: DMA [mem 0x00001000-0x00ffffff]
    Jul 13 12:37:34 ma3x kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jul 13 12:37:34 ma3x kernel: Normal [mem 0x100000000-0x12fffffff]
    Jul 13 12:37:34 ma3x kernel: Movable zone start for each node
    Jul 13 12:37:34 ma3x kernel: Early memory node ranges
    Jul 13 12:37:34 ma3x kernel: node 0: [mem 0x00001000-0x0009efff]
    Jul 13 12:37:34 ma3x kernel: node 0: [mem 0x00100000-0xcfe8ffff]
    Jul 13 12:37:34 ma3x kernel: node 0: [mem 0x100000000-0x12fffffff]
    Jul 13 12:37:34 ma3x kernel: On node 0 totalpages: 1048110
    Jul 13 12:37:34 ma3x kernel: DMA zone: 64 pages used for memmap
    Jul 13 12:37:34 ma3x kernel: DMA zone: 21 pages reserved
    Jul 13 12:37:34 ma3x kernel: DMA zone: 3998 pages, LIFO batch:0
    Jul 13 12:37:34 ma3x kernel: DMA32 zone: 13243 pages used for memmap
    Jul 13 12:37:34 ma3x kernel: DMA32 zone: 847504 pages, LIFO batch:31
    Jul 13 12:37:34 ma3x kernel: Normal zone: 3072 pages used for memmap
    Jul 13 12:37:34 ma3x kernel: Normal zone: 196608 pages, LIFO batch:31
    Jul 13 12:37:34 ma3x kernel: ACPI: PM-Timer IO Port: 0x408
    Jul 13 12:37:34 ma3x kernel: ACPI: Local APIC address 0xfee00000
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Jul 13 12:37:34 ma3x kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Jul 13 12:37:34 ma3x kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Jul 13 12:37:34 ma3x kernel: IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    Jul 13 12:37:34 ma3x kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jul 13 12:37:34 ma3x kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jul 13 12:37:34 ma3x kernel: ACPI: IRQ0 used by override.
    Jul 13 12:37:34 ma3x kernel: ACPI: IRQ2 used by override.
    Jul 13 12:37:34 ma3x kernel: ACPI: IRQ9 used by override.
    Jul 13 12:37:34 ma3x kernel: Using ACPI (MADT) for SMP configuration information
    Jul 13 12:37:34 ma3x kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    Jul 13 12:37:34 ma3x kernel: nr_irqs_gsi: 40
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xcfe90000-0xcfedffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xcfee0000-0xcfee2fff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xcfee3000-0xcfeeffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xcfef0000-0xcfefffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xcff00000-0xdfffffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    Jul 13 12:37:34 ma3x kernel: PM: Registered nosave memory: [mem 0xfec00000-0xffffffff]
    Jul 13 12:37:34 ma3x kernel: e820: [mem 0xcff00000-0xdfffffff] available for PCI devices
    Jul 13 12:37:34 ma3x kernel: Booting paravirtualized kernel on bare hardware
    Jul 13 12:37:34 ma3x kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    Jul 13 12:37:34 ma3x kernel: PERCPU: Embedded 29 pages/cpu @ffff88012fc00000 s87168 r8192 d23424 u524288
    Jul 13 12:37:34 ma3x kernel: pcpu-alloc: s87168 r8192 d23424 u524288 alloc=1*2097152
    Jul 13 12:37:34 ma3x kernel: pcpu-alloc: [0] 0 1 2 3
    Jul 13 12:37:34 ma3x kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 1031710
    Jul 13 12:37:34 ma3x kernel: Policy zone: Normal
    Jul 13 12:37:34 ma3x kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=2f1b0e26-dfb8-4c78-8320-1675a6d5f935 rw quiet
    Jul 13 12:37:34 ma3x kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jul 13 12:37:34 ma3x kernel: xsave: enabled xstate_bv 0x3, cntxt size 0x240
    Jul 13 12:37:34 ma3x kernel: Checking aperture...
    Jul 13 12:37:34 ma3x kernel: No AGP bridge found
    Jul 13 12:37:34 ma3x kernel: Calgary: detecting Calgary via BIOS EBDA area
    Jul 13 12:37:34 ma3x kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Jul 13 12:37:34 ma3x kernel: Memory: 4045312K/4192440K available (5224K kernel code, 886K rwdata, 1644K rodata, 1116K init, 1284K bss, 147128K reserved)
    Jul 13 12:37:34 ma3x kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Jul 13 12:37:34 ma3x kernel: Preemptible hierarchical RCU implementation.
    Jul 13 12:37:34 ma3x kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jul 13 12:37:34 ma3x kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jul 13 12:37:34 ma3x kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    Jul 13 12:37:34 ma3x kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    Jul 13 12:37:34 ma3x kernel: NR_IRQS:8448 nr_irqs:712 16
    Jul 13 12:37:34 ma3x kernel: Console: colour dummy device 80x25
    Jul 13 12:37:34 ma3x kernel: console [tty0] enabled
    Jul 13 12:37:34 ma3x kernel: allocated 16777216 bytes of page_cgroup
    Jul 13 12:37:34 ma3x kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jul 13 12:37:34 ma3x kernel: tsc: Fast TSC calibration using PIT
    Jul 13 12:37:34 ma3x kernel: tsc: Detected 3012.601 MHz processor
    Jul 13 12:37:34 ma3x kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.25 BogoMIPS (lpj=10042003)
    Jul 13 12:37:34 ma3x kernel: pid_max: default: 32768 minimum: 301
    Jul 13 12:37:34 ma3x kernel: ACPI: Core revision 20140214
    Jul 13 12:37:34 ma3x kernel: ACPI: All ACPI Tables successfully acquired
    Jul 13 12:37:34 ma3x kernel: Security Framework initialized
    Jul 13 12:37:34 ma3x kernel: Yama: becoming mindful.
    Jul 13 12:37:34 ma3x kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jul 13 12:37:34 ma3x kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jul 13 12:37:34 ma3x kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Jul 13 12:37:34 ma3x kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys memory
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys devices
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys freezer
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys net_cls
    Jul 13 12:37:34 ma3x kernel: Initializing cgroup subsys blkio
    Jul 13 12:37:34 ma3x kernel: CPU: Physical Processor ID: 0
    Jul 13 12:37:34 ma3x kernel: CPU: Processor Core ID: 0
    Jul 13 12:37:34 ma3x kernel: mce: CPU supports 6 MCE banks
    Jul 13 12:37:34 ma3x kernel: CPU0: Thermal monitoring enabled (TM2)
    Jul 13 12:37:34 ma3x kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
    tlb_flushall_shift: -1
    Jul 13 12:37:34 ma3x kernel: Freeing SMP alternatives memory: 20K (ffffffff819f6000 - ffffffff819fb000)
    Jul 13 12:37:34 ma3x kernel: ftrace: allocating 20229 entries in 80 pages
    Jul 13 12:37:34 ma3x kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jul 13 12:37:34 ma3x kernel: smpboot: CPU0: Intel(R) Pentium(R) CPU E5700 @ 3.00GHz (fam: 06, model: 17, stepping: 0a)
    Jul 13 12:37:34 ma3x kernel: Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    Jul 13 12:37:34 ma3x kernel: ... version: 2
    Jul 13 12:37:34 ma3x kernel: ... bit width: 40
    Jul 13 12:37:34 ma3x kernel: ... generic registers: 2
    Jul 13 12:37:34 ma3x kernel: ... value mask: 000000ffffffffff
    Jul 13 12:37:34 ma3x kernel: ... max period: 000000007fffffff
    Jul 13 12:37:34 ma3x kernel: ... fixed-purpose events: 3
    Jul 13 12:37:34 ma3x kernel: ... event mask: 0000000700000003
    Jul 13 12:37:34 ma3x kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jul 13 12:37:34 ma3x kernel: x86: Booting SMP configuration:
    Jul 13 12:37:34 ma3x kernel: .... node #0, CPUs: #1
    Jul 13 12:37:34 ma3x kernel: x86: Booted up 1 node, 2 CPUs
    Jul 13 12:37:34 ma3x kernel: smpboot: Total of 2 processors activated (12055.50 BogoMIPS)
    Jul 13 12:37:34 ma3x kernel: devtmpfs: initialized
    Jul 13 12:37:34 ma3x kernel: PM: Registering ACPI NVS region [mem 0xcfee0000-0xcfee2fff] (12288 bytes)
    Jul 13 12:37:34 ma3x kernel: pinctrl core: initialized pinctrl subsystem
    Jul 13 12:37:34 ma3x kernel: RTC time: 9:37:31, date: 07/13/14
    Jul 13 12:37:34 ma3x kernel: NET: Registered protocol family 16
    Jul 13 12:37:34 ma3x kernel: cpuidle: using governor ladder
    Jul 13 12:37:34 ma3x kernel: cpuidle: using governor menu
    Jul 13 12:37:34 ma3x kernel: ACPI: bus type PCI registered
    Jul 13 12:37:34 ma3x kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jul 13 12:37:34 ma3x kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jul 13 12:37:34 ma3x kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jul 13 12:37:34 ma3x kernel: PCI: Using configuration type 1 for base access
    Jul 13 12:37:34 ma3x kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Jul 13 12:37:34 ma3x kernel: mtrr: probably your BIOS does not setup all CPUs.
    Jul 13 12:37:34 ma3x kernel: mtrr: corrected configuration.
    Jul 13 12:37:34 ma3x kernel: ACPI: Added _OSI(Module Device)
    Jul 13 12:37:34 ma3x kernel: ACPI: Added _OSI(Processor Device)
    Jul 13 12:37:34 ma3x kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jul 13 12:37:34 ma3x kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jul 13 12:37:34 ma3x kernel: ACPI: SSDT 0x00000000CFEE8300 0002F0 (v01 PmRef Cpu0Ist 00003000 INTL 20060113)
    Jul 13 12:37:34 ma3x kernel: ACPI: Dynamic OEM Table Load:
    Jul 13 12:37:34 ma3x kernel: ACPI: SSDT 0x0000000000000000 0002F0 (v01 PmRef Cpu0Ist 00003000 INTL 20060113)
    Jul 13 12:37:34 ma3x kernel: ACPI: SSDT 0x00000000CFEE87C0 000152 (v01 PmRef Cpu1Ist 00003000 INTL 20060113)
    Jul 13 12:37:34 ma3x kernel: ACPI: Dynamic OEM Table Load:
    Jul 13 12:37:34 ma3x kernel: ACPI: SSDT 0x0000000000000000 000152 (v01 PmRef Cpu1Ist 00003000 INTL 20060113)
    Jul 13 12:37:34 ma3x kernel: ACPI: Interpreter enabled
    Jul 13 12:37:34 ma3x kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140214/hwxface-580)
    Jul 13 12:37:34 ma3x kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20140214/hwxface-580)
    Jul 13 12:37:34 ma3x kernel: ACPI: (supports S0 S1 S4 S5)
    Jul 13 12:37:34 ma3x kernel: ACPI: Using IOAPIC for interrupt routing
    Jul 13 12:37:34 ma3x kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jul 13 12:37:34 ma3x kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Jul 13 12:37:34 ma3x kernel: acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Jul 13 12:37:34 ma3x kernel: acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Jul 13 12:37:34 ma3x kernel: acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Jul 13 12:37:34 ma3x kernel: acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Jul 13 12:37:34 ma3x kernel: acpi PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    Jul 13 12:37:34 ma3x kernel: acpi PNP0A08:00: host bridge window [mem 0xcff50000-0xfebfffff] (ignored)
    Jul 13 12:37:34 ma3x kernel: PCI: root bus 00: using default resources
    Jul 13 12:37:34 ma3x kernel: PCI host bridge to bus 0000:00
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: [8086:29c1] type 01 class 0x060400
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.0: reg 0x20: [io 0xff00-0xff1f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.1: reg 0x20: [io 0xfe00-0xfe1f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.1: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.2: reg 0x20: [io 0xfd00-0xfd1f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.2: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xfdfff000-0xfdfff3ff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1a.7: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfdff8000-0xfdffbfff 64bit]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: [8086:294a] type 01 class 0x060400
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.0: reg 0x20: [io 0xfc00-0xfc1f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.1: reg 0x20: [io 0xfb00-0xfb1f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.2: reg 0x20: [io 0xfa00-0xfa1f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfdffe000-0xfdffe3ff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: System wakeup disabled by ACPI
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH6 GPIO
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0294 (mask 0003)
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0080 (mask 0003)
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0800 (mask 001f)
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: [8086:2921] type 00 class 0x01018a
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: reg 0x10: [io 0x0000-0x0007]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: reg 0x14: [io 0x0000-0x0003]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: reg 0x18: [io 0x0000-0x0007]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x0000-0x0003]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: reg 0x20: [io 0xf900-0xf90f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: reg 0x24: [io 0xf800-0xf80f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: legacy IDE quirk: reg 0x14: [io 0x03f6]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.2: legacy IDE quirk: reg 0x1c: [io 0x0376]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfdffd000-0xfdffd0ff 64bit]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.3: reg 0x20: [io 0x0500-0x051f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.5: [8086:2926] type 00 class 0x010185
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.5: reg 0x10: [io 0xf600-0xf607]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.5: reg 0x14: [io 0xf500-0xf503]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.5: reg 0x18: [io 0xf400-0xf407]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.5: reg 0x1c: [io 0xf300-0xf303]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.5: reg 0x20: [io 0xf200-0xf20f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1f.5: reg 0x24: [io 0xf100-0xf10f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: [1002:68b8] type 00 class 0x030000
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: reg 0x18: [mem 0xfdac0000-0xfdadffff 64bit]
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: reg 0x20: [io 0xce00-0xceff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: supports D1 D2
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.1: [1002:aa58] type 00 class 0x040300
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.1: reg 0x10: [mem 0xfdafc000-0xfdafffff 64bit]
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.1: supports D1 D2
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: bridge window [mem 0xfda00000-0xfdafffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: bridge window [io 0xb000-0xbfff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: bridge window [mem 0xfd700000-0xfd7fffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: bridge window [mem 0xfd600000-0xfd6fffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: reg 0x10: [io 0xae00-0xaeff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: reg 0x18: [mem 0xfdeff000-0xfdefffff 64bit]
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: supports D1 D2
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: bridge window [mem 0xfde00000-0xfdefffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: bridge window [mem 0xfdd00000-0xfddfffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.0: [197b:2363] type 00 class 0x010185
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.0: reg 0x24: [mem 0xfdcfe000-0xfdcfffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.0: PME# supported from D3hot
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.1: [197b:2363] type 00 class 0x010185
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.1: reg 0x10: [io 0xdf00-0xdf07]
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.1: reg 0x14: [io 0xde00-0xde03]
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.1: reg 0x18: [io 0xdd00-0xdd07]
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.1: reg 0x1c: [io 0xdc00-0xdc03]
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.1: reg 0x20: [io 0xdb00-0xdb0f]
    Jul 13 12:37:34 ma3x kernel: pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: bridge window [mem 0xfdc00000-0xfdcfffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:05:00.0: [10ec:8139] type 00 class 0x020000
    Jul 13 12:37:34 ma3x kernel: pci 0000:05:00.0: reg 0x10: [io 0xee00-0xeeff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:05:00.0: reg 0x14: [mem 0xfd9ff000-0xfd9ff0ff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:05:00.0: supports D1 D2
    Jul 13 12:37:34 ma3x kernel: pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: PCI bridge to [bus 05] (subtractive decode)
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [mem 0xfd900000-0xfd9fffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [mem 0xfd800000-0xfd8fffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode)
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs *5 7 9 10 11 12 14 15)
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7 9 *10 11 12 14 15)
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 9 *10 11 12 14 15)
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 *11 12 14 15)
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 5 7 9 10 11 12 14 15) *0, disabled.
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 5 *7 9 10 11 12 14 15)
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNK0] (IRQs 5 7 *9 10 11 12 14 15)
    Jul 13 12:37:34 ma3x kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 *11 12 14 15)
    Jul 13 12:37:34 ma3x kernel: ACPI: Enabled 1 GPEs in block 00 to 3F
    Jul 13 12:37:34 ma3x kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jul 13 12:37:34 ma3x kernel: vgaarb: loaded
    Jul 13 12:37:34 ma3x kernel: vgaarb: bridge control possible 0000:01:00.0
    Jul 13 12:37:34 ma3x kernel: PCI: Using ACPI for IRQ routing
    Jul 13 12:37:34 ma3x kernel: PCI: pci_cache_line_size set to 64 bytes
    Jul 13 12:37:34 ma3x kernel: e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
    Jul 13 12:37:34 ma3x kernel: e820: reserve RAM buffer [mem 0xcfe90000-0xcfffffff]
    Jul 13 12:37:34 ma3x kernel: NetLabel: Initializing
    Jul 13 12:37:34 ma3x kernel: NetLabel: domain hash size = 128
    Jul 13 12:37:34 ma3x kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jul 13 12:37:34 ma3x kernel: NetLabel: unlabeled traffic allowed by default
    Jul 13 12:37:34 ma3x kernel: Switched to clocksource refined-jiffies
    Jul 13 12:37:34 ma3x kernel: pnp: PnP ACPI init
    Jul 13 12:37:34 ma3x kernel: ACPI: bus type PNP registered
    Jul 13 12:37:34 ma3x kernel: system 00:00: [io 0x04d0-0x04d1] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:00: [io 0x0290-0x029f] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:00: [io 0x0800-0x0805] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:00: [io 0x0290-0x0297] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:00: [io 0x0880-0x088f] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:01: [dma 4]
    Jul 13 12:37:34 ma3x kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:05: [dma 2]
    Jul 13 12:37:34 ma3x kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0700 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0400 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    Jul 13 12:37:34 ma3x kernel: system 00:09: [io 0x0400-0x04bf] could not be reserved
    Jul 13 12:37:34 ma3x kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jul 13 12:37:34 ma3x kernel: pnp 00:0a: Plug and Play ACPI device, IDs INT0800 (active)
    Jul 13 12:37:34 ma3x kernel: system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0x000f0000-0x000fffff] could not be reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xcff00000-0xcfffffff] could not be reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xcfee0000-0xcfefffff] could not be reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0x00100000-0xcfedffff] could not be reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xfed14000-0xfed1dfff] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xfed20000-0xfed9ffff] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xfee00000-0xfee00fff] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xffb00000-0xffb7ffff] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0xfff00000-0xffffffff] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: [mem 0x000e0000-0x000effff] has been reserved
    Jul 13 12:37:34 ma3x kernel: system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jul 13 12:37:34 ma3x kernel: pnp: PnP ACPI: found 13 devices
    Jul 13 12:37:34 ma3x kernel: ACPI: bus type PNP unregistered
    Jul 13 12:37:34 ma3x kernel: Switched to clocksource acpi_pm
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xfda00000-0xfda1ffff pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: bridge window [mem 0xfda00000-0xfdafffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: bridge window [io 0xb000-0xbfff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: bridge window [mem 0xfd700000-0xfd7fffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.0: bridge window [mem 0xfd600000-0xfd6fffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:03:00.0: BAR 6: assigned [mem 0xfdd00000-0xfdd1ffff pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: bridge window [mem 0xfde00000-0xfdefffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.4: bridge window [mem 0xfdd00000-0xfddfffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: PCI bridge to [bus 04]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: bridge window [io 0xd000-0xdfff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: bridge window [mem 0xfdc00000-0xfdcfffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1c.5: bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: PCI bridge to [bus 05]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [mem 0xfd900000-0xfd9fffff]
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1e.0: bridge window [mem 0xfd800000-0xfd8fffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:01: resource 1 [mem 0xfda00000-0xfdafffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:02: resource 0 [io 0xb000-0xbfff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:02: resource 1 [mem 0xfd700000-0xfd7fffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:02: resource 2 [mem 0xfd600000-0xfd6fffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:03: resource 0 [io 0xa000-0xafff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:03: resource 1 [mem 0xfde00000-0xfdefffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:03: resource 2 [mem 0xfdd00000-0xfddfffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:04: resource 1 [mem 0xfdc00000-0xfdcfffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:04: resource 2 [mem 0xfdb00000-0xfdbfffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:05: resource 0 [io 0xe000-0xefff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:05: resource 1 [mem 0xfd900000-0xfd9fffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:05: resource 2 [mem 0xfd800000-0xfd8fffff 64bit pref]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:05: resource 4 [io 0x0000-0xffff]
    Jul 13 12:37:34 ma3x kernel: pci_bus 0000:05: resource 5 [mem 0x00000000-0xfffffffff]
    Jul 13 12:37:34 ma3x kernel: NET: Registered protocol family 2
    Jul 13 12:37:34 ma3x kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    Jul 13 12:37:34 ma3x kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    Jul 13 12:37:34 ma3x kernel: TCP: Hash tables configured (established 32768 bind 32768)
    Jul 13 12:37:34 ma3x kernel: TCP: reno registered
    Jul 13 12:37:34 ma3x kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jul 13 12:37:34 ma3x kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jul 13 12:37:34 ma3x kernel: NET: Registered protocol family 1
    Jul 13 12:37:34 ma3x kernel: pci 0000:01:00.0: Boot video device
    Jul 13 12:37:34 ma3x kernel: PCI: CLS 64 bytes, default 64
    Jul 13 12:37:34 ma3x kernel: Unpacking initramfs...
    Jul 13 12:37:34 ma3x kernel: Freeing initrd memory: 3172K (ffff8800379be000 - ffff880037cd7000)
    Jul 13 12:37:34 ma3x kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jul 13 12:37:34 ma3x kernel: software IO TLB [mem 0xcbe90000-0xcfe90000] (64MB) mapped at [ffff8800cbe90000-ffff8800cfe8ffff]
    Jul 13 12:37:34 ma3x kernel: Scanning for low memory corruption every 60 seconds
    Jul 13 12:37:34 ma3x kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
    Jul 13 12:37:34 ma3x kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jul 13 12:37:34 ma3x kernel: zbud: loaded
    Jul 13 12:37:34 ma3x kernel: VFS: Disk quotas dquot_6.5.2
    Jul 13 12:37:34 ma3x kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jul 13 12:37:34 ma3x kernel: msgmni has been set to 7907
    Jul 13 12:37:34 ma3x kernel: Key type big_key registered
    Jul 13 12:37:34 ma3x kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jul 13 12:37:34 ma3x kernel: io scheduler noop registered
    Jul 13 12:37:34 ma3x kernel: io scheduler deadline registered
    Jul 13 12:37:34 ma3x kernel: io scheduler cfq registered (default)
    Jul 13 12:37:34 ma3x kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    Jul 13 12:37:34 ma3x kernel: pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    Jul 13 12:37:34 ma3x kernel: pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    Jul 13 12:37:34 ma3x kernel: pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
    Jul 13 12:37:34 ma3x kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jul 13 12:37:34 ma3x kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jul 13 12:37:34 ma3x kernel: vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    Jul 13 12:37:34 ma3x kernel: vesafb: scrolling: redraw
    Jul 13 12:37:34 ma3x kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    Jul 13 12:37:34 ma3x kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90010780000, using 5120k, total 5120k
    Jul 13 12:37:34 ma3x kernel: Console: switching to colour frame buffer device 160x64
    Jul 13 12:37:34 ma3x kernel: fb0: VESA VGA frame buffer device
    Jul 13 12:37:34 ma3x kernel: intel_idle: does not run on family 6 model 23
    Jul 13 12:37:34 ma3x kernel: GHES: HEST is not enabled!
    Jul 13 12:37:34 ma3x kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jul 13 12:37:34 ma3x kernel: 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    Jul 13 12:37:34 ma3x kernel: Linux agpgart interface v0.103
    Jul 13 12:37:34 ma3x kernel: rtc_cmos 00:02: RTC can wake from S4
    Jul 13 12:37:34 ma3x kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    Jul 13 12:37:34 ma3x kernel: rtc_cmos 00:02: alarms up to one month, 242 bytes nvram
    Jul 13 12:37:34 ma3x kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Jul 13 12:37:34 ma3x kernel: TCP: cubic registered
    Jul 13 12:37:34 ma3x kernel: NET: Registered protocol family 10
    Jul 13 12:37:34 ma3x kernel: NET: Registered protocol family 17
    Jul 13 12:37:34 ma3x kernel: registered taskstats version 1
    Jul 13 12:37:34 ma3x kernel: Magic number: 6:516:626
    Jul 13 12:37:34 ma3x kernel: pci 0000:00:1b.0: hash matches
    Jul 13 12:37:34 ma3x kernel: rtc_cmos 00:02: setting system clock to 2014-07-13 09:37:31 UTC (1405244251)
    Jul 13 12:37:34 ma3x kernel: PM: Hibernation image not present or could not be loaded.
    Jul 13 12:37:34 ma3x kernel: Freeing unused kernel memory: 1116K (ffffffff818df000 - ffffffff819f6000)
    Jul 13 12:37:34 ma3x kernel: Write protecting the kernel read-only data: 8192k
    Jul 13 12:37:34 ma3x kernel: Freeing unused kernel memory: 908K (ffff88000151d000 - ffff880001600000)
    Jul 13 12:37:34 ma3x kernel: Freeing unused kernel memory: 404K (ffff88000179b000 - ffff880001800000)
    Jul 13 12:37:34 ma3x kernel: random: systemd-tmpfile urandom read with 2 bits of entropy available
    Jul 13 12:37:34 ma3x systemd-udevd[47]: starting version 214
    Jul 13 12:37:34 ma3x kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    Jul 13 12:37:34 ma3x kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    Jul 13 12:37:34 ma3x kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jul 13 12:37:34 ma3x kernel: ACPI: bus type USB registered
    Jul 13 12:37:34 ma3x kernel: usbcore: registered new interface driver usbfs
    Jul 13 12:37:34 ma3x kernel: usbcore: registered new interface driver hub
    Jul 13 12:37:34 ma3x kernel: usbcore: registered new device driver usb
    Jul 13 12:37:34 ma3x kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jul 13 12:37:34 ma3x kernel: ehci-pci: EHCI PCI platform driver
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Jul 13 12:37:34 ma3x kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jul 13 12:37:34 ma3x kernel: SCSI subsystem initialized
    Jul 13 12:37:34 ma3x kernel: libata version 3.00 loaded.
    Jul 13 12:37:34 ma3x kernel: pata_jmicron 0000:04:00.1: enabling device (0000 -> 0001)
    Jul 13 12:37:34 ma3x kernel: scsi0 : pata_jmicron
    Jul 13 12:37:34 ma3x kernel: scsi1 : pata_jmicron
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1a.7: irq 18, io mem 0xfdfff000
    Jul 13 12:37:34 ma3x kernel: ata1: PATA max UDMA/100 cmd 0xdf00 ctl 0xde00 bmdma 0xdb00 irq 18
    Jul 13 12:37:34 ma3x kernel: ata2: PATA max UDMA/100 cmd 0xdd00 ctl 0xdc00 bmdma 0xdb08 irq 18
    Jul 13 12:37:34 ma3x kernel: ahci 0000:04:00.0: version 3.0
    Jul 13 12:37:34 ma3x kernel: FDC 0 is a post-1991 82077
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Jul 13 12:37:34 ma3x kernel: hub 1-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 1-0:1.0: 6 ports detected
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Jul 13 12:37:34 ma3x kernel: ahci 0000:04:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    Jul 13 12:37:34 ma3x kernel: ahci 0000:04:00.0: flags: 64bit ncq pm led clo pmp pio slum part
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xfdffe000
    Jul 13 12:37:34 ma3x kernel: scsi2 : ahci
    Jul 13 12:37:34 ma3x kernel: scsi3 : ahci
    Jul 13 12:37:34 ma3x kernel: ata3: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 17
    Jul 13 12:37:34 ma3x kernel: ata4: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 17
    Jul 13 12:37:34 ma3x kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Jul 13 12:37:34 ma3x kernel: hub 2-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 2-0:1.0: 6 ports detected
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff00
    Jul 13 12:37:34 ma3x kernel: hub 3-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 3-0:1.0: 2 ports detected
    Jul 13 12:37:34 ma3x kernel: ata_piix 0000:00:1f.2: version 2.13
    Jul 13 12:37:34 ma3x kernel: ata_piix 0000:00:1f.2: MAP [ P0 -- P1 -- ]
    Jul 13 12:37:34 ma3x kernel: scsi4 : ata_piix
    Jul 13 12:37:34 ma3x kernel: scsi5 : ata_piix
    Jul 13 12:37:34 ma3x kernel: ata5: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf900 irq 14
    Jul 13 12:37:34 ma3x kernel: ata6: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf908 irq 15
    Jul 13 12:37:34 ma3x kernel: ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    Jul 13 12:37:34 ma3x kernel: scsi6 : ata_piix
    Jul 13 12:37:34 ma3x kernel: scsi7 : ata_piix
    Jul 13 12:37:34 ma3x kernel: ata7: SATA max UDMA/133 cmd 0xf600 ctl 0xf500 bmdma 0xf200 irq 19
    Jul 13 12:37:34 ma3x kernel: ata8: SATA max UDMA/133 cmd 0xf400 ctl 0xf300 bmdma 0xf208 irq 19
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000fe00
    Jul 13 12:37:34 ma3x kernel: hub 4-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 4-0:1.0: 2 ports detected
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.2: detected 2 ports
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000fd00
    Jul 13 12:37:34 ma3x kernel: hub 5-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 5-0:1.0: 2 ports detected
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000fc00
    Jul 13 12:37:34 ma3x kernel: hub 6-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 6-0:1.0: 2 ports detected
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fb00
    Jul 13 12:37:34 ma3x kernel: hub 7-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 7-0:1.0: 2 ports detected
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
    Jul 13 12:37:34 ma3x kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fa00
    Jul 13 12:37:34 ma3x kernel: hub 8-0:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 8-0:1.0: 2 ports detected
    Jul 13 12:37:34 ma3x kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jul 13 12:37:34 ma3x kernel: ata1.00: ATAPI: HL-DT-ST DVDRAM GSA-H10N, JL10, max UDMA/33
    Jul 13 12:37:34 ma3x kernel: ata1.00: configured for UDMA/33
    Jul 13 12:37:34 ma3x kernel: scsi 0:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-H10N JL10 PQ: 0 ANSI: 5
    Jul 13 12:37:34 ma3x kernel: ata3: SATA link down (SStatus 0 SControl 300)
    Jul 13 12:37:34 ma3x kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Jul 13 12:37:34 ma3x kernel: ata8: SATA link down (SStatus 0 SControl 300)
    Jul 13 12:37:34 ma3x kernel: ata6: SATA link down (SStatus 0 SControl 300)
    Jul 13 12:37:34 ma3x kernel: ata7: SATA link down (SStatus 0 SControl 300)
    Jul 13 12:37:34 ma3x kernel: ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 13 12:37:34 ma3x kernel: ata5.00: ATA-8: WDC WD5000AAKS-00A7B0, 01.03B01, max UDMA/133
    Jul 13 12:37:34 ma3x kernel: ata5.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    Jul 13 12:37:34 ma3x kernel: ata5.00: configured for UDMA/133
    Jul 13 12:37:34 ma3x kernel: scsi 4:0:0:0: Direct-Access ATA WDC WD5000AAKS-0 01.0 PQ: 0 ANSI: 5
    Jul 13 12:37:34 ma3x kernel: sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    Jul 13 12:37:34 ma3x kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jul 13 12:37:34 ma3x kernel: sr 0:0:0:0: Attached scsi CD-ROM sr0
    Jul 13 12:37:34 ma3x kernel: sd 4:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Jul 13 12:37:34 ma3x kernel: sd 4:0:0:0: [sda] Write Protect is off
    Jul 13 12:37:34 ma3x kernel: sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jul 13 12:37:34 ma3x kernel: sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jul 13 12:37:34 ma3x kernel: usb 2-6: new high-speed USB device number 3 using ehci-pci
    Jul 13 12:37:34 ma3x kernel: sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
    Jul 13 12:37:34 ma3x kernel: sd 4:0:0:0: [sda] Attached SCSI disk
    Jul 13 12:37:34 ma3x kernel: hub 2-6:1.0: USB hub found
    Jul 13 12:37:34 ma3x kernel: hub 2-6:1.0: 4 ports detected
    Jul 13 12:37:34 ma3x kernel: tsc: Refined TSC clocksource calibration: 3012.484 MHz
    Jul 13 12:37:34 ma3x kernel: usb 8-1: new full-speed USB device number 2 using uhci_hcd
    Jul 13 12:37:34 ma3x kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jul 13 12:37:34 ma3x kernel: usbcore: registered new interface driver usbhid
    Jul 13 12:37:34 ma3x kernel: usbhid: USB HID core driver
    Jul 13 12:37:34 ma3x kernel: input: Razer Razer Abyssus as /devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.0/0003:1532:001C.0001/input/input1
    Jul 13 12:37:34 ma3x kernel: hid-generic 0003:1532:001C.0001: input,hidraw0: USB HID v1.11 Mouse [Razer Razer Abyssus] on usb-0000:00:1d.2-1/input0
    Jul 13 12:37:34 ma3x kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    Jul 13 12:37:34 ma3x kernel: Switched to clocksource tsc
    Jul 13 12:37:34 ma3x kernel: random: nonblocking pool is initialized
    Jul 13 12:37:34 ma3x systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    Jul 13 12:37:34 ma3x kernel: EXT4-fs (sda6): re-mounted. Opts: data=ordered
    Jul 13 12:37:34 ma3x systemd-journal[133]: Journal started
    Jul 13 12:37:34 ma3x systemd-udevd[152]: starting version 215
    Jul 13 12:37:35 ma3x kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Jul 13 12:37:35 ma3x kernel: parport_pc 00:07: reported by Plug and Play ACPI
    Jul 13 12:37:35 ma3x kernel: parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
    Jul 13 12:37:35 ma3x kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    Jul 13 12:37:35 ma3x kernel: ACPI: Power Button [PWRB]
    Jul 13 12:37:35 ma3x kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Jul 13 12:37:35 ma3x kernel: ACPI: Power Button [PWRF]
    Jul 13 12:37:35 ma3x kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Jul 13 12:37:35 ma3x kernel: ACPI: Thermal Zone [THRM] (23 C)
    Jul 13 12:37:35 ma3x kernel: ACPI: Fan [FAN] (on)
    Jul 13 12:37:35 ma3x kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000429-0x0000000000000429 (\PM2S) (20140214/utaddress-258)
    Jul 13 12:37:35 ma3x kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jul 13 12:37:35 ma3x kernel: ACPI Warning: SystemIO range 0x00000000000004b0-0x00000000000004bf conflicts with OpRegion 0x00000000000004b8-0x00000000000004bb (\GPO2) (20140214/utaddress-258)
    Jul 13 12:37:35 ma3x kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jul 13 12:37:35 ma3x kernel: ACPI Warning: SystemIO range 0x0000000000000480-0x00000000000004af conflicts with OpRegion 0x000000000000048c-0x000000000000048f (\GPO_) (20140214/utaddress-258)
    Jul 13 12:37:35 ma3x kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jul 13 12:37:35 ma3x kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Jul 13 12:37:35 ma3x kernel: i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    Jul 13 12:37:35 ma3x kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Jul 13 12:37:35 ma3x kernel: r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    Jul 13 12:37:35 ma3x kernel: r8169 0000:03:00.0: irq 44 for MSI/MSI-X
    Jul 13 12:37:35 ma3x kernel: r8169 0000:03:00.0 eth0: RTL8168b/8111b at 0xffffc90011468000, 00:30:18:ab:1c:1f, XID 98500000 IRQ 44
    Jul 13 12:37:35 ma3x kernel: r8169 0000:03:00.0 eth0: jumbo features [frames: 4080 bytes, tx checksumming: ko]
    Jul 13 12:37:35 ma3x kernel: microcode: CPU0 sig=0x1067a, pf=0x1, revision=0x0
    Jul 13 12:37:35 ma3x kernel: mousedev: PS/2 mouse device common for all mice
    Jul 13 12:37:35 ma3x kernel: ppdev: user-space parallel port driver
    Jul 13 12:37:35 ma3x kernel: [drm] Initialized drm 1.1.0 20060810
    Jul 13 12:37:35 ma3x kernel: iTCO_vendor_support: vendor-support=0
    Jul 13 12:37:35 ma3x kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    Jul 13 12:37:35 ma3x kernel: iTCO_wdt: Found a ICH9 TCO device (Version=2, TCOBASE=0x0460)
    Jul 13 12:37:35 ma3x kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Jul 13 12:37:35 ma3x kernel: 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004)
    Jul 13 12:37:35 ma3x kernel: 8139cp 0000:05:00.0: This (id 10ec:8139 rev 10) is not an 8139C+ compatible chip, use 8139too
    Jul 13 12:37:35 ma3x kernel: [drm] radeon kernel modesetting enabled.
    Jul 13 12:37:35 ma3x kernel: checking generic (d0000000 500000) vs hw (d0000000 10000000)
    Jul 13 12:37:35 ma3x kernel: fb: switching to radeondrmfb from VESA VGA
    Jul 13 12:37:35 ma3x kernel: Console: switching to colour dummy device 80x25
    Jul 13 12:37:35 ma3x kernel: [drm] initializing kernel modesetting (JUNIPER 0x1002:0x68B8 0x1002:0x2543).
    Jul 13 12:37:35 ma3x kernel: [drm] register mmio base: 0xFDAC0000
    Jul 13 12:37:35 ma3x kernel: [drm] register mmio size: 131072
    Jul 13 12:37:35 ma3x kernel: ATOM BIOS: JUNIPER
    Jul 13 12:37:35 ma3x kernel: radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
    Jul 13 12:37:35 ma3x kernel: radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
    Jul 13 12:37:35 ma3x kernel: [drm] Detected VRAM RAM=1024M, BAR=256M
    Jul 13 12:37:35 ma3x kernel: [drm] RAM width 128bits DDR
    Jul 13 12:37:35 ma3x kernel: [TTM] Zone kernel: Available graphics memory: 2025466 kiB
    Jul 13 12:37:35 ma3x kernel: [TTM] Initializing pool allocator
    Jul 13 12:37:35 ma3x kernel: [TTM] Initializing DMA pool allocator
    Jul 13 12:37:35 ma3x kernel: [drm] radeon: 1024M of VRAM memory ready
    Jul 13 12:37:35 ma3x kernel: [drm] radeon: 1024M of GTT memory ready.
    Jul 13 12:37:35 ma3x kernel: [drm] Loading JUNIPER Microcode
    Jul 13 12:37:36 ma3x systemd-udevd[164]: renamed network interface eth0 to enp3s0
    Jul 13 12:37:36 ma3x kernel: microcode: CPU1 sig=0x1067a, pf=0x1, revision=0x0
    Jul 13 12:37:36 ma3x kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Jul 13 12:37:36 ma3x kernel: 8139too: 8139too Fast Ethernet driver 0.9.28
    Jul 13 12:37:36 ma3x kernel: snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    Jul 13 12:37:36 ma3x kernel: 8139too 0000:05:00.0 eth0: RealTek RTL8139 at 0xffffc900117f2000, 00:a0:d2:13:48:7d, IRQ 21
    Jul 13 12:37:36 ma3x systemd-udevd[162]: renamed network interface eth0 to enp5s0
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: ignore pin 0x1b with mismatching assoc# 0x2 vs 0x1
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: mono: mono_out=0x0
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: dig-out=0x1e/0x0
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: inputs:
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: Front Mic=0x19
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: Rear Mic=0x18
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: Line=0x1a
    Jul 13 12:37:36 ma3x kernel: sound hdaudioC0D2: dig-in=0x1f
    Jul 13 12:37:36 ma3x kernel: input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
    Jul 13 12:37:36 ma3x kernel: input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
    Jul 13 12:37:36 ma3x kernel: input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    Jul 13 12:37:36 ma3x kernel: input: HDA Intel Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    Jul 13 12:37:36 ma3x kernel: input: HDA Intel Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    Jul 13 12:37:36 ma3x kernel: input: HDA Intel Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    Jul 13 12:37:36 ma3x kernel: input: HDA Intel Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    Jul 13 12:37:37 ma3x kernel: Adding 4000148k swap on /dev/sda8. Priority:-1 extents:1 across:4000148k FS
    Jul 13 12:37:37 ma3x kernel: [drm] Internal thermal controller with fan control
    Jul 13 12:37:37 ma3x kernel: [drm] radeon: dpm initialized
    Jul 13 12:37:37 ma3x systemd-fsck[177]: /dev/sda7: clean, 36140/11976704 files, 3922434/47884345 blocks
    Jul 13 12:37:37 ma3x kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
    Jul 13 12:37:37 ma3x kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000000025D000).
    Jul 13 12:37:37 ma3x kernel: radeon 0000:01:00.0: WB enabled
    Jul 13 12:37:37 ma3x kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff8801290c1c00
    Jul 13 12:37:37 ma3x kernel: radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff8801290c1c0c
    Jul 13 12:37:37 ma3x kernel: radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0xffffc9001309c418
    Jul 13 12:37:37 ma3x kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Jul 13 12:37:37 ma3x kernel: [drm] Driver supports precise vblank timestamp query.
    Jul 13 12:37:37 ma3x kernel: radeon 0000:01:00.0: irq 46 for MSI/MSI-X
    Jul 13 12:37:37 ma3x kernel: radeon 0000:01:00.0: radeon: using MSI.
    Jul 13 12:37:37 ma3x kernel: [drm] radeon: irq initialized.
    Jul 13 12:37:37 ma3x kernel: [drm] ring test on 0 succeeded in 1 usecs
    Jul 13 12:37:37 ma3x kernel: [drm] ring test on 3 succeeded in 1 usecs
    Jul 13 12:37:37 ma3x kernel: EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: data=ordered
    Jul 13 12:37:37 ma3x kernel: [drm] ring test on 5 succeeded in 1 usecs
    Jul 13 12:37:37 ma3x kernel: [drm] UVD initialized successfully.
    Jul 13 12:37:37 ma3x kernel: [drm] ib test on ring 0 succeeded in 0 usecs
    Jul 13 12:37:37 ma3x kernel: [drm] ib test on ring 3 succeeded in 0 usecs
    Jul 13 12:37:37 ma3x systemd-journal[133]: Permanent journal is using 40.0M (max allowed 2.0G, trying to leave 3.0G free of 12.3G available → current limit 2.0G).
    Jul 13 12:37:38 ma3x systemd-journal[133]: Time spent on flushing to /var is 734.588ms for 755 entries.
    Jul 13 12:37:39 ma3x kernel: [drm] ib test on ring 5 succeeded
    Jul 13 12:37:39 ma3x kernel: [drm] Radeon Display Connectors
    Jul 13 12:37:39 ma3x kernel: [drm] Connector 0:
    Jul 13 12:37:39 ma3x kernel: [drm] DP-1
    Jul 13 12:37:39 ma3x kernel: [drm] HPD4
    Jul 13 12:37:39 ma3x kernel: [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    Jul 13 12:37:39 ma3x ker

    The first part of your mcelog (the bit about " failed to prefill DIMM database from DMI data") strongly suggest one of the new RAM chips is defective. Start by simply putting the old one back in place and seeing if that helps. If it does, exchange the new faulty one with the seller for one that works. However, since you say yourself you aren't very tech savvy, it may be the case that you've simply purchased a RAM chip that is not compatible with your motherboard (although if both of the new chips are identical and the first one works, that may not be so).
    When deciding to upgrade all the most vital hardware components of a machine, it's best to do it one piece at a time, and reconfigure the operating system to account for the new hardware. Uninstall old drivers, install new ones, change any personal settings related to the old hardware, reboot, make sure everything's fine and then repeat the process for every other new piece of hardware. Replacing everything at once without ensuring it will all work together increases the chances problems like this immensely---the problem itself may be very simple, but you've undertaken so many changes in such a short time that finding out what the problem is in the first place can be very complicated.

  • Help with system upgrade for CS6

    Hello. I am hoping you can give me some advice on what to do (or buy) to improve my video editing system.  I am a bit of novice when it comes to the technical/hardware end of things and I’m having some issues with my current system. 
    I working in Adobe CS6 Master Suite on a Windows 7 Ultimate PC.  I mainly use Premiere Pro, After Effects, Photoshop, and Audition.  I create very complete animations and videos with many layers and effects (via Boris & Red Giant).  I also use Skype to record group video calls (with the program Evaer) for a reality T.V. recap show which I also edit with my Adobe suite.  However I have two main problems.
    When I render out a 20 minute premier pro project (with several HD video layers and effects) it takes almost 13 hours.  It seems like this is very long considering my high end components, and set up.  For example I run ONLY my OS off an SSD.  My programs are on another SSD.  The files I use for the video are on another HDD, and I render to another HDD.  I was told by keeping all the aspects on separate hard drives it would speed everything up.  Is that true?  I also am now reading that rendering to a SSD would speed things up.  Should I consider changing my workflow/hard drive set up that way? 
    My other problem is that when I record my Skype group calls of 4 people (with Evaer) to my SSD the audio is always off when I bring it into Premiere.  I don’t know if this is a problem with Evaer, a codec (it records it as H.264/MPEG-4 AVC Codec.  At 1280 X 720 and 30fps), that SSDs auto compress files, or that my system just cant handle it.  Plus Soundblaster & Nvida both seem to active as audio features on my system I don’t know if that effects anything.  Is there any advice any of you have on this issue as well?  Perhaps another program to record skype or group calls?
    Finally… all that aside.  Considering the work I am doing should I just upgrade my system to a better Mobo and graphics card.  I see a lot of people are recommending a dual processor work station.  If so what is a good motherboard, and processor(s) I should get if I build my own workstation?  I have about $4000.00 I could invest in building one if you think would greatly improve my work flow and render times.  I also have a quadro k5000 on the way, and id like to be able to use the memory I have already.
    I realize I am asking a lot of questions.  I would truly appreciate any help, advice or just a point in the right direction.  I have included my current system specs below incase that helps with any of my questions.  If you have any other questions or need more information just let me know.  Thank you again in advance for any help you can provide.
    -Eric
    MOTHERBOARD:
    Gigabyte G1.Assassin  http://www.gigabyte.com/products/product-page.aspx?pid=3752#ov
    PROCESSOR:
    Intel Core i7 X 980
    5 HARD DRIVES:
    (1) SATA II WD (WD15EADS-00P8B0) 3gb Hard Drive @ 1.5TB
    (2) OCZ SATA AGILITY II SSD drives @120GB: http://www.newegg.com/Product/Product.aspx?Item=N82E16820227543
    (2) Hitachi 6gb SATA III drives @2TB: http://www.newegg.com/Product/Product.aspx?Item=N82E16822145473
    3 DVD/CD/BLUERAY DRIVES:
    (1) SATA DVD DRIVE
    (1) SATA BlueRay Drive
    RAM:
    24GIGs of this ram: http://www.newegg.com/Product/Product.aspx?Item=N82E16820145321
    GRAPHICS:
    (1) NVIDIA GeForce GTX 680  http://www.geforce.com/hardware/desktop-gpus/geforce-gtx-680
    SOUND CARD:
    NONE DEDICATED: But Onboard Creative Soundblaster X-Fi Digital Audio Processor (20K2) with X-Fi Xtreme Fidelity™ and EAX® AHD 5.0™ Technologies built into MoBo.
    PLUS: NVIDIA High Definition Audio
    CONTROLLERS:
    Microsoft ISATAP Adapter
    Intel(R) ICH10R SATA AHCI Controller
    Realtek PCI GBE Family Controller
    Marvell 91xx SATA 6G Controller
    Renesas Electronics USB 3.0 Host Controller
    MY HARD DRIVE SETUP:
    *I also have a network server which I use to back up files, and access files across my other systems. 

    Eric,
    I would hardly call the Quadro card an upgrade to a GTX 680!
    Regarding getting more speed from a faster MB / CPU, since you already have a 6-core rig with 24GB of RAM I would think that any gains you would get would not be that dramatic.
    Check out your cpu usage (Task manager) and see how busy your cores are during a test render. I am guessing that the Boris and / or Red Giant effects could be jumping your projects from gaining the full multi-core capabilities of the Adobe software.
    Regards,
    Jim

Maybe you are looking for

  • Account Substitution in FB60

    Hi All, I have a requirement in which I need to substituted the intercompany GL accounts proposed by the system with vendor/customer accounts when a user enters an intercompany vendor invoice via FB60. I have tried substitution at call point 2( line

  • Urgent related to message type structure and proxy

    Hello, My outbound interface related message type structure is like this.... message type name : MSg1 Msg1 x y Z (under z) a b c ok,Now in generating the proxy how to populate this structure. For example ... if Msg type is emp_profile_msg Emp_name Em

  • How to set up POP mail

    I have a pop account I would like to attach to my IPhone. I put in my pop settings as guided on the phone and it is not working. It get an error message saying the certificate could not be verified for that address. I then press continue and it then

  • Excel Upoad issue

    Hi All, I have a requirement where I am upload the excel sheet using "File Upoad" UI element. The issue is that I am not able to fetch this data in an internal tabe. We have tried out a few standard methods, but no success. Can anyone please provide

  • No pressure sensitivity in krita/qt

    I'm trying to get my graphire 4 to work in krita (2.1, 2.2), everything seems to work fine except the pressure sensitivity... I've installed xf86-input-wacom and linuxwacom from aur (also tried linuxwacom-dev). /etc/hal/fdi/policy/10-wacom.fdi <?xml