Setting up the XSI interface

Hi All,
We have a requirement to use FedEx/UPS for its shipments. Do we have any way to support that? We found that XSI would be helpful in serving this purpose in standard SAP.
If anybody already worked on this requirement pls. provide us the information on feasibility of XSI for FedEx/UPS.
Also let us know the effort needed for the customization and configuration of XSI.
We are basicalyl looking for Configuration and Customization.
Regards,
Deepthi.K

Hi Deepthi
With Fedex, you need to establish and RFC call, through the Business connector.
Once done they will provide you with Fedex implementation guide documentation.
Do the rest of the configuration as per the documentation once the BC is established.
You will also need to configure an output type to send and receive the data from Fedex
So the requirement would be
1) Basis to set up Business Connector
2) Consultant to set up the configuration, partner profile, message type to send the idoc
You need to check with UPS if they are also ready to establish direct connectivity to their server.
If so, then follow the steps as above
and if not
You will need to manually set up the configuration and ask for files from UPS regarding their routes , destinations...etc
This needs to be uploaded in SAP asynchoronous method
Let me know if you need more information
Thanks
Sheetal

Similar Messages

  • How do I set up the port interface for the WAN side of my RVS4000 to 100T Full Duplex?

    How do I set up the port interface for the WAN side of my RVS4000? The ISP says I need to set it to 100T Full Duplex, but where would I do that? In the Router's administration GUI I can't find any options to make such settings for the WAN side.

    The setup of the folders in Finder is entirely up to you. Whatever suits your needs is what you should do. Lightroom will be fine no matter how you set it up.
    So I'm not really sure what your question is.

  • Preventing ejbgen generating a pk setter on the local interface

    The spec states (10.3.1) that the setter for the pk cmp-field should
    not be exposed on the component interface yet the interface
    generated by ejbgen does in fact generate the setter.
    How do I prevent this?

    Just make sure that you delete something like the following on top of the
    setter
    @ejbgen: local-method
    "Aaron" <[email protected]> wrote in message
    news:3f88ecce$[email protected]..
    >
    The spec states (10.3.1) that the setter for the pk cmp-field should
    not be exposed on the component interface yet the interface
    generated by ejbgen does in fact generate the setter.
    How do I prevent this?

  • ASA rpf-check DROP, ASA checking NAT in the incorrect interface

    Hi
    My current architecture is :
    Internet <--> FW <--> ASA <--> LAN
                          FW <--> ASA
    we have two links between ASA and the FW, the corresponding ASA interfaces are "outside" and "vpn"
    the "outside" interface is used for browsing Internet, also for making some services accessible to our partners by doing NAT to our servers
    the "vpn" interface is used to grant access to our LANs from remote Offices
    let say that firewall rules are OK and the remote offices have access to the whole LAN by port 80
    below the current configuration :
    interface GigabitEthernet0/0
      nameif inside
     security-level 100
     ip address 192.168.1.2 255.255.255.0
    interface GigabitEthernet0/1
     nameif outside
     security-level 0
     ip address 192.168.11.2 255.255.255.0
    interface GigabitEthernet0/2
     nameif vpn
     security-level 0
     ip address 192.168.12.2 255.255.255.0
    object-group network Inside_LANs
     network-object 192.168.3.0 255.255.255.0
     network-object 192.168.4.0 255.255.255.0
     network-object 192.168.5.0 255.255.255.0
    access-list Inside-to-outside extended permit icmp object-group Inside_LANs any echo 
    access-list Inside-to-outside extended permit udp any host TimeServer eq ntp 
    access-list Inside-to-outside extended permit ip object-group Inside_LANs any 
    global (outside) 1 interface
    global (outside) 2 192.168.11.60 netmask 255.255.255.255
    nat (inside) 1 access-list Inside-to-outside
    nat (inside) 2 192.168.6.0 255.255.255.0
    static (inside,outside) 192.168.11.10 192.168.2.10 netmask 255.255.255.255 
    static (inside,outside) 192.168.11.11 192.168.2.11 netmask 255.255.255.255 
    static (inside,outside) 192.168.11.12 192.168.2.12 netmask 255.255.255.255 
    route inside 192.168.2.0 255.255.255.0 192.168.1.1 1
    route inside 192.168.3.0 255.255.255.0 192.168.1.1 1
    route inside 192.168.4.0 255.255.255.0 192.168.1.1 1
    route inside 192.168.5.0 255.255.255.0 192.168.1.1 1
    route inside 192.168.6.0 255.255.255.0 192.168.1.1 1
    route vpn 192.168.20.0 255.255.255.0 192.168.12.1 1
    our problem is that packets are dropped from remote office to LAN, we are getting the rpf-check drop in packet tracer
    example 1 (to a server without NAT 192.168.2.13) ---> connection OK (not dropped)
    remote office 192.168.20.55 to 192.168.2.13
    Phase: 5
    Type: NAT
    Subtype: host-limits
    Result: ALLOW
    Config:
    nat (inside) 1 access-list Inside-to-outside
      match udp inside any inside host TimeServer eq 123
        dynamic translation to pool 1 (No matching global)
        translate_hits = 0, untranslate_hits = 0
    Additional Information:
    example 2 (to a server with static NAT 192.168.2.10) ---> connection OK (not dropped)
    remote office 192.168.20.55 to 192.168.2.10
    Phase: 6
    Type: NAT
    Subtype: host-limits
    Result: ALLOW
    Config:
    static (inside,outside) 192.168.11.10 192.168.2.10 netmask 255.255.255.255 
      match ip inside host 192.168.2.10 outside any
        static translation to 192.168.11.10
        translate_hits = 76643, untranslate_hits = 188597
    Additional Information:
    example 3 (to a host with dynamic ACL NAT 192.168.4.40) ---> connection NOK (dropped)
    remote office 192.168.20.55 to 192.168.4.40
    Phase: 5
    Type: NAT
    Subtype: rpf-check
    Result: DROP
    Config:
    nat (inside) 1 access-list Inside-to-outside
      match ip inside 192.168.4.0 255.255.255.0 vpn any
        dynamic translation to pool 1 (No matching global)
        translate_hits = 1, untranslate_hits = 0
    Additional Information:
    example 4 (to a host with dynamic Network NAT 192.168.6.30) ---> connection NOK (dropped)
    remote office 192.168.20.55 to 192.168.6.30
    Phase: 5
    Type: NAT
    Subtype: rpf-check
    Result: DROP
    Config:
    nat (inside) 2 192.168.6.0 255.255.255.0
      match ip inside 192.168.6.0 255.255.255.0 vpn any
        dynamic translation to pool 2 (No matching global)
        translate_hits = 117, untranslate_hits = 0
    Additional Information:
    our questions :
    1) why ASA don't check the reverse path route before checking the NAT ?
     if it does, the route back to the office is set to the "vpn" interface (route vpn 192.168.20.0 255.255.255.0 192.168.12.1 1), so ASA don't have to check NAT in other interface, currently it's checking the NAT in the "outside" interface even if it's not the route back to the office
    2) why it's working for static NAT servers and Not working for the dynamic NAT ones ?
    when ASA check a server with static NAT it find  a match in the outside interface but even so it discard it and the connection Work. (example 2)
    when ASA check a server/host with dynamic NAT (ACL or Network) if find a match in the outside interface but drop the connection
    3) we know that this behavior can be solved by adding a NAT exception for the dynamic NAT in the "outside" interface (nat (inside) 0 access-list Inside-NAT-Exceptions) but :
    why ASA checking the global NAT even if it's not the correct interface ?
    Why it's working for static NAT and not working for the dynamic one ?
    Thanks a lot

    Hi,
    It would be easier to troubleshoot if you shared the complete "packet-tracer" command you used and the full output of the command.
    But to me the situation in its current form looks the following.
    Example 1
    To me it seems this is working as it should. Connection is coming from "vpn" to "inside". There is no "static" configurations between "vpn" and "inside" and there is no "nat" command for "vpn" interface so the traffic should pass normally without any NAT related conflicts/problems as the traffic does not match any NAT configuration.
    Notice that the ASA might show some unrelated NAT information in the output of the "packet-tracer" command (commands related to other interfaces). In those NAT Phase sections there is a section saying "Additional Information:" If there is no text after this text that means that this NAT has not been applied. I am not sure why the ASA lists some NAT configurations in the output that are not related. I have seen this in many occasions and do not know the reason and I have not really put any time/effort into understanding why it shows the unrelated information in the output.
    Example 2
    This seems to be working as expected also.
    According to the configuration provided there is no existing NAT configurations related to either the source or destination IP address on the ASA between "vpn" and "inside" interface so the traffic passes through the ASA without facing any conflicts with NAT configurations.
    Again, the "packet-tracer" shows NAT information unrelated to this situation. And again the "Additional Information:" section lists no additional information so the NAT listed is not applied.
    Example 3 and 4
    These tests fail as expected since there is a Dynamic Policy PAT configuration for both internal destination hosts that the remote users are trying to connect to. The problem comes from the fact that the initial direction from remote to internal does not match any NAT configuration and the reverse direction from internal to remote matches the Dynamic Policy PAT and therefore the connection attempt is dropped. The connection must match the same NAT configuration on both directions.
    In this situation you would either have to configure NAT0, Static NAT , Static PAT or Static Policy NAT/PAT which all would prevent the connection from matching to the Dynamic Policy PAT (But would match the mentioned type of NAT in both directions as they have higher priority than Dynamic Policy PAT). Typically the prefererred solution would be to use NAT0 though you naturally have the option to use a NAT address if there is any overlap.
    Hope this helps :)
    - Jouni

  • Having issues after installing Essbase V9.3.1,configuring the SQL interface

    I am having issues after installing Essbase V9.3.1 and configuring the SQL interface. we are using UNIX/AIX box for our Essbase server and UDB DB2 9.1 SP6 as our SQL Interface.
    When tried to run an ESSCMD script to perform BUILDDIM operation on Essbase application using the load rule (with the SQL interface), got the error as recorded in the application log file and is attached at the bottom and the .odbc.ini file on the server looks as follows.
    Can somebody tell me whether .odbc.ini needs any correction or what else should I do to correct the issue and able to work thru using SQL interface? Appreciate any help provided in this regard. Thanks,
    .odbc.ini
    [ODBC Data Sources]
    DOLU003=IBM DB2 ODBC DRIVER
    [DOLU003]
    Driver=/home/db2inst1/sqllib/lib/libdb2.a
    Database=DOLU003
    [ODBC]
    Trace=0
    TraceFile=odbctrace.out
    InstallDir=/home/db2inst1/sqllib/odbclib
    [Mon Apr 20 15:16:29 2009]Local/New_Bud/Budget/Olapadm/Info(1021020)
    Cannot read SQL driver name for [] from [home/hyperion/.odbc.ini]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1013091)
    Received Command [SQLRetrieve] from user [Olapadm]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021020)
    Cannot read SQL driver name for [] from [home/hyperion/.odbc.ini]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021004)
    Connection String is generated
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021041)
    Connection String is [DSN=DOLU003;UID=...;PWD=...]
    [Mon Apr 20 15:16:43 2009]Local/New_Bud/Budget/Olapadm/Info(1021006)
    SELECT Statement [SELECT * FROM DB2OLADM.BD_DIMENSION_DEF_PC WHERE DIMENSION_ID
    = 12 ORDER BY TREE_NODE_NUM, PARENT_NODE, CHILD_NODE] is generated
    [Mon Apr 20 15:16:44 2009]Local/New_Bud/Budget/Olapadm/Info(1021013)
    ODBC Layer Error: [7] ==> [[DataDirect][ODBC 20101 driver]6013]
    [Mon Apr 20 15:16:44 2009]Local/New_Bud/Budget/Olapadm/Info(1021014)
    ODBC Layer Error: Native Error code [0]
    [Mon Apr 20 15:16:44 2009]Local/New_Bud/Budget/Olapadm/Error(1021001)
    Failed to Establish Connection With SQL Database Server. See log for more information
    --------------------------------------------------------------------------------------------------------------------------------------------

    I had similar errors when first setting up the SQL interface. Are you on a 64 bit operating system on the essbase server? If so Essbase needs to use the 32 bit odbc driver, not the default 64 bit driver.
    The 32 bit driver is still available here SysWOW64\odbcad32.exe <-----This is the 32 bit (Use)
    The Administrative tools by default uses system32\odbcad32.exe <----This is the 64 bit (Don't Use)
    Once I opened the 32 bit driver interface directly and set it up the errors went away.

  • Recommended MTU Size setting within the router and...

    Hello!
    I was wondering what MTU Size do you guys recomended me setting within the Router Interface
    and on Windows for best performance when on a BT Broadband service?
    Note: It's not a BT Router i'm using, i'm using a Netgear DG834N.
    I am sure BT Routers like the HomeHub have a MTU Size of 1500 set in the Router Interface, am I correct?
    My Netgear DG834N has a  MTU Size of 1458 in the Router Interface by default.
    Thanks for responding.

    Personally I was able to squeeze about 11KB/s more out of my 8128Kbps line by setting my MTU to '1430', maxing out my throughput at (after the change): 859KB/s. I'm on a 20CN DSLAM so it might be different on a 21CN MSAN.
    Why not experiment? You can't hurt your line (As long as your router's firmware doesn't reset your ADSL sync everytime you change it - If it does then DLM might have something to say ).
    Like this post? Give it a Star . If this post answers your question, please Mark it as the Accepted Solution.

  • Setting up the HR-PDC  interface to ext. system without direct RFC

    Hello,
    Setting up the HR-PDC  interface to external system without direct RFC - Uploading time events
    Following note number 647145, I tried to set up connection to external time collection system. As the external system isn't able to work with RFC, I setup a fileport using transaction WE21. When an outbound IDOC is created with transaction PT80, it will be stored at the outbound path. The IDOC then will be transfered to the external system with a unix script triggered by event.
    For inbound IDOCS, the fileport cannot be used as I don't see any way to configure it as the time events that  should come in via RFC port, will be uploaded and processed according the ALE distribution model. The BOR object "PTManagerExtPEvent" of type "BUS7014" with method "Insert" is used to insert the time events into the interface table CC1TEV from an HR-PDC certified subsystem. The message type is "HRCC1UPTEVEN".
    As standard process won't work in our case, I'd need alternative solution. Actually the time events are send via ftp to the SAP directory that points to incoming IDOC path setup on WE21.
    Maybe there should some way to setup RFC connection to own SAP system that points to the SAP directory where the inbound files are stored.
    Maybe using the FM IDOC_INPUT_HRCC1UPTEVEN can be used to trigger the upload manually but first the files have to be uploaded from file similiar to report RSEINB00. Testing this report using the SAP directory and port where the inbound files are located I get error message that IDOC control record is missing, that seems to be understandable as this report is used to upload IDOCS from file but HR-PDC upload file HRCC1UPTEVEN01 has no specific IDOC segments in this moment as it was created according specific HR-PDC interface description. The IDOC in the standard process will be created with the BAPI.
    As I'm new in HR and ALE, I'd be grateful for any help on this matter.
    Best regards
    Andreas

    Hello Andreas,
    thanks for Your contribution. Recently I've got the trial version and made some tests and found out that the bapi-handler works perfectly for managing HR-PDC interface.
    Nevertheless actually there's no compilation for OS/400 and the AS/400 I'm working with has an old OS release without C compiler and furthermore RFC libraries of SAP cannot be installed on this release.
    The Bapi-handler for testing runs on Windows
    and I'd need an intermediate machine to manage the data between AS/400 and SAP. I'd prefer direct connection between timecollection subsystem and SAP for obvios reason.
    Regards
    Andreas

  • Why is the tethering interface for iPhone5 ordered from Apple not in the Settings app while an iPhone5 ordered from Verizon does have the tethering setting present?

    My girlfriend and both bought iPhone5's and are on the family plan. I bought mine through the Apple store and she through Verizon directly. In her settings app the tethering interface is present, in mine it is not. Anyone how to or know who to contact to get my phone purchased through the apple store to get this enabled.

    Contact Verizon & make sure Tethering is provisioned on your account. That setting won't appear if it's not.

  • How to set a digital output using a switch on the operator interface?

    Hi, is it possible to set a digital output using a switch on the operator interface?
    Thanks,
    Mike

    Unfortunately, no.  It is on our hit list...
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Hi,using the COM interface how do you get/set

    Hi, using the COM Interface how do you get/set the Keep iTunes Music Folder Organised options, I cant seem to find it in the help. Secondly if I have the location of a file and the Track DatabaseId, is there any way to get get the IITrack object that relates to the location. As far as I can see the Search method only allows searching on artist/abum,title,composer , and GetITObjectByID() reuires both the track database id and the track in playlist id ,and I only have the first.
    Thanks for any help Paul

    Yes, I brute force my way through it. I analyzed the file before and after a preference change to find the data changed. FYI, the "data" portion of the iTunesPrefs.xml file appears to be Base64-encoded. Strings are UTF8.
    If you want more support from apple, you would probably need to buy an higher-level ADC account.
    You can also try submitting an enhancement request through http://bugreport.apple.com (requires at least a free ADC Online account)

  • Is there a list of software to set up the Labview Arduino interface?

    Hi all,
    I am new to Arduino programming but pretty familiar with Labview. When I saw there was a toolkit that would allow me to program my Arduino in the Labview environment I was very excited. However, I am having a very difficult time establishing communication between the two systems. Is there any chance someone could post a link that lists all the software required to set up the toolkit properly; as well as how things need to be configured. I uploaded the LIFA base firmware to my areduino and have downloaded NI VISA drivers (as other forum posts suggested), but still haven't gotten any positive results.
    Thanks.

    Hi lbvw,
    The driver shouldn't need to be configured for the Arduino to communicate with your system. I would suggest going to the LabVIEW Interface for Arduino discussions in the NI Community for LabVIEW Interface for Arduino group for more help with this issue. 
    Jordan G.
    Applications Engineer
    National Instruments

  • How to set up the communication channel for third party idoc

    Hello,
    I am trying to send an idoc from an sap 4.6c system to an third party system. The third party system is supporting idcos with trfc.
    My problem is to set up the communication channel in the integration builder (configuration) for the third party system. The idoc is waitung in XI to transport.
    My settings are:
    adapter type: idoc
    transport protocol: idoc
    message protocol: idoc
    adapter engine: integration engine
    rfc destination: xyz (is working fine)
    interface version: sap release 4.0 or higher
    port: ??
    sap release 46c
    My problem is the port. should i set up a port in idx1? But the third party is not an sap system and so i dont have a client.
    On the xi i have defined a port in transaction we21 (transactional rfc) for the third party with my rfc destination xyz. But if i enter that port in communication channel i got error messages.
    Thanks for any help.

    Hi Christian,
    yes, you have to mainztain that port in idx1.
    First ypi load the rfc-metadata from an SAP referenzsystem and afterwards copy this metadata to the third party port.
    For further details check the onlinedocumentation "IDoc Processing with the IDoc Adapter" XI -> runtime -> adapter
    Good luck,
    Holger

  • How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    If you want to listen to the sounds of your drum set, you should use an audio cable and connect it to the computer's line-in, then create a real instrument track.
    If you use a Midi/USB interface, you'll have to create a software instrument track and select one of GB's drumsets as the instrument. Hopefully your drumset's midi notes are mapped to the right sounds in GB.

  • Report to track changes to infotypes prior to running the  payroll interfac

    wants a report to track changes to infotypes prior to running the  payroll interface.  The attached report looks like it should work but it returns nothing.  Is there config that turns on "Track Changes": for select infotypes?  If so, can they be activated for key infotypes so this report will run?
    Name, Address, position, etc.
    Not attendance and absence ITs.

    Hi,
    IMG – Personnel Management – Personnel Admin – Tools – Revision – Set up change document:
    This node has three items:
    Infotypes to be logged
    Field Group Definitions
    Field Group Characteristics
    Using these three options you define which infotypes you wish to log, then which fields, then you define which groups of fields are to be saved. Click each link, or see the sections below:
    Infotypes to be logged
    Here you define which PA infotype numbers you require logging. Select New Entries and enter a transaction class (A for Pers Admin, B for recruitment), then enter the infotype number and save.
    Field Group Definition
    When changes are made to a logged infotype, the field contents before and after are recorded. This is the very reason for logging the infotype, but there is an overhead in performance and disk space used so it needs to be given consideration. Typically you will want to record fields that are pay relevant.
    Using the field group definition, you specify which fields you wish to record changes in. When any of the fields in the group are changed, all the fields in the group are saved. You can use an asterisk to log all the fields of the infotype but this is not recommended for space and performance, also there are many fields on an infotype that you will not be using, that will be saved also. Ideally you will pick individual fields of the infotype and enter them like so:
    The field group number is a freely defined number you allocate to the group, it will be used in the next step. For normal use, simply pick any number not already used in that infotype. All fields with the same field group number are recorded in the log, even if they have not changed.
    Click New Entries and enter the infotype number, field group number and field names that you wish to record.
    Field Group Characteristics
    When you have set up the field group numbers, use the field group characteristics to activate the logging of those fields. You can also specify a supplementary field group; this means that the contents of another field group can also be saved at the same time, even though the contents have not changed. In practise it is not used much. Simply select new entries, enter the transaction class, infotype, and in the DocFieldGr enter the number you assigned to the field names that you want to store, then enter L for Long Term Documents (short are not supported)
    The Audit Report
    To access the report showing the logged infotype changes, use the HR report tree available from various menu paths, including:
    Main Menu – Human Resources – Pers Management – Administration – Info System – Reports - Documents – Infotype change – logged changes in infotype data. (RPUAUD00).
    When you run the report, select the infotypes you require, and select and execute.
    Cheers
    Prasanth

  • 5 second delay when bringing up the SATA interface (HP dm1-3100ev)

    Hello everyone,
    I am using ArchLinux on a HP dm1-3100ev (aka dm1z). This little machine is equipped with an 80GB Intel X25-M SSD (2nd gen) and boots and runs nice and fast.
    However, I just noticed a curious issue, where the SATA interface takes 5.3 seconds to appear. According to dmesg:
    dmesg wrote:[    1.510296] Switching to clocksource tsc
    [    6.856991] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [    6.857578] ata1.00: ATA-7: INTEL SSDSA2M080G2GC, 2CV102HD, max UDMA/133
    [    6.857585] ata1.00: 156301488 sectors, multi 1: LBA48 NCQ (depth 31/32)
    [    6.858264] ata1.00: configured for UDMA/133
    [    6.858756] scsi 0:0:0:0: Direct-Access     ATA      INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5
    [    6.871132] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [    6.871271] sd 0:0:0:0: [sda] Write Protect is off
    [    6.871276] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [    6.871320] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [    6.872158]  sda: sda1
    [    6.873464] sd 0:0:0:0: [sda] Attached SCSI disk
    This is on linux 2.6.39. Anyone have any ideas why this is and how I can reduce this delay? This is by far the slowest part of the boot sequence right now!
    Full dmesg log below:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (tobias@T-POWA-LX) (gcc version 4.6.0 20110603 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011
    [ 0.000000] Command line: root=/dev/disk/by-uuid/3e8701ef-e777-4352-a42c-83dd9f68240a ro nomodeset quiet
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000dfa3f000 (usable)
    [ 0.000000] BIOS-e820: 00000000dfa3f000 - 00000000dfabf000 (reserved)
    [ 0.000000] BIOS-e820: 00000000dfabf000 - 00000000dfebf000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfebf000 - 00000000dfef6000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000dfef6000 - 00000000dff00000 (usable)
    [ 0.000000] BIOS-e820: 00000000dff00000 - 00000000e0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000187000000 (usable)
    [ 0.000000] BIOS-e820: 0000000187000000 - 000000019f000000 (reserved)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: Hewlett-Packard HP Pavilion dm1 Notebook PC /1611, BIOS F.12 04/26/2011
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x187000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FE0000000 write-back
    [ 0.000000] 3 base 0DFEBD000 mask FFFFFF000 uncachable
    [ 0.000000] 4 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000019f000000 aka 6640M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] last_pfn = 0xdff00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fe1b0] fe1b0
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000dff00000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00dfe00000 page 2M
    [ 0.000000] 00dfe00000 - 00dff00000 page 4k
    [ 0.000000] kernel direct mapping tables up to dff00000 @ dfefd000-dff00000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000187000000
    [ 0.000000] 0100000000 - 0180000000 page 1G
    [ 0.000000] 0180000000 - 0187000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 187000000 @ 186ffe000-187000000
    [ 0.000000] RAMDISK: 37e47000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HPQOEM)
    [ 0.000000] ACPI: XSDT 00000000dfef5120 00064 (v01 HPQOEM SLIC-MPC 00000003 01000013)
    [ 0.000000] ACPI: FACP 00000000dfef4000 000F4 (v04 HPQOEM SLIC-MPC 00000003 ACPI 00040000)
    [ 0.000000] ACPI: DSDT 00000000dfee7000 0972F (v01 HP INSYDE F0000000 ACPI 00040000)
    [ 0.000000] ACPI: FACS 00000000dfc96000 00040
    [ 0.000000] ACPI: HPET 00000000dfef3000 00038 (v01 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: APIC 00000000dfef2000 00084 (v02 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: MCFG 00000000dfef1000 0003C (v01 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 00000000dfee6000 00028 (v01 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SLIC 00000000dfee5000 00176 (v01 HPQOEM SLIC-MPC 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000dfee4000 003DE (v01 HP INSYDE 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 00000000dfee2000 012FA (v02 HP INSYDE 00000001 MSFT 04000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000187000000
    [ 0.000000] NUMA: Using 63 for the hash shift.
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000187000000
    [ 0.000000] NODE_DATA [0000000186ff9000 - 0000000186ffdfff]
    [ 0.000000] [ffffea0000000000-ffffea00055fffff] PMD -> [ffff880180c00000-ffff880185bfffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00187000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[4] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x000dfa3f
    [ 0.000000] 0: 0x000dfef6 -> 0x000dff00
    [ 0.000000] 0: 0x00100000 -> 0x00187000
    [ 0.000000] On node 0 totalpages: 1468888
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3922 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 897665 pages, LIFO batch:31
    [ 0.000000] Normal zone: 7560 pages used for memmap
    [ 0.000000] Normal zone: 545400 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000dfa3f000 - 00000000dfabf000
    [ 0.000000] PM: Registered nosave memory: 00000000dfabf000 - 00000000dfebf000
    [ 0.000000] PM: Registered nosave memory: 00000000dfebf000 - 00000000dfef6000
    [ 0.000000] PM: Registered nosave memory: 00000000dff00000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f8000000
    [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at e0000000 (gap: e0000000:18000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff880186c00000 s83136 r8192 d23360 u524288
    [ 0.000000] pcpu-alloc: s83136 r8192 d23360 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1446987
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/disk/by-uuid/3e8701ef-e777-4352-a42c-83dd9f68240a ro nomodeset quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 5715728k/6406144k available (4022k kernel code, 530592k absent, 159824k reserved, 3332k data, 724k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 47185920 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1596.101 MHz processor.
    [ 0.003340] Calibrating delay loop (skipped), value calculated using timer frequency.. 3193.21 BogoMIPS (lpj=5320336)
    [ 0.003347] pid_max: default: 32768 minimum: 301
    [ 0.003562] Security Framework initialized
    [ 0.003572] AppArmor: AppArmor disabled by boot time parameter
    [ 0.005092] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.012089] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.014996] Mount-cache hash table entries: 256
    [ 0.015789] Initializing cgroup subsys ns
    [ 0.015797] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.015802] Initializing cgroup subsys cpuacct
    [ 0.015866] Initializing cgroup subsys memory
    [ 0.015901] Initializing cgroup subsys devices
    [ 0.015905] Initializing cgroup subsys freezer
    [ 0.015908] Initializing cgroup subsys net_cls
    [ 0.015911] Initializing cgroup subsys blkio
    [ 0.016009] tseg: 00dff00000
    [ 0.016014] CPU: Physical Processor ID: 0
    [ 0.016016] CPU: Processor Core ID: 0
    [ 0.016019] mce: CPU supports 6 MCE banks
    [ 0.018003] ACPI: Core revision 20110316
    [ 0.026713] ftrace: allocating 15966 entries in 63 pages
    [ 0.030133] Setting APIC routing to flat
    [ 0.030496] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.064116] CPU0: AMD E-350 Processor stepping 00
    [ 0.066663] Performance Events: AMD PMU driver.
    [ 0.066663] ... version: 0
    [ 0.066663] ... bit width: 48
    [ 0.066663] ... generic registers: 4
    [ 0.066663] ... value mask: 0000ffffffffffff
    [ 0.066663] ... max period: 00007fffffffffff
    [ 0.066663] ... fixed-purpose events: 0
    [ 0.066663] ... event mask: 000000000000000f
    [ 0.083498] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.110105] Booting Node 0, Processors #1
    [ 0.110114] smpboot cpu 1: start_ip = 9a000
    [ 0.206704] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.213374] Brought up 2 CPUs
    [ 0.213387] Total of 2 processors activated (6386.16 BogoMIPS).
    [ 0.213856] devtmpfs: initialized
    [ 0.217207] PM: Registering ACPI NVS region at dfabf000 (4194304 bytes)
    [ 0.218611] print_constraints: dummy:
    [ 0.218770] NET: Registered protocol family 16
    [ 0.219087] Extended Config Space enabled on 0 nodes
    [ 0.219123] ACPI: bus type pci registered
    [ 0.220109] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.220115] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.230714] PCI: Using configuration type 1 for base access
    [ 0.231511] bio: create slab <bio-0> at 0
    [ 0.234922] ACPI: EC: Look up EC in DSDT
    [ 0.237245] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.241929] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.253590] ACPI: Interpreter enabled
    [ 0.253602] ACPI: (supports S0 S3 S4 S5)
    [ 0.253650] ACPI: Using IOAPIC for interrupt routing
    [ 0.294296] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 0.294593] ACPI: No dock devices found.
    [ 0.294598] HEST: Table not found.
    [ 0.294604] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.303828] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.304172] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.304177] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.304182] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.304186] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff]
    [ 0.304190] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff]
    [ 0.304194] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff]
    [ 0.304198] pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cffff]
    [ 0.304202] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [ 0.304206] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [ 0.304210] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [ 0.304214] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    [ 0.304218] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    [ 0.304222] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    [ 0.304226] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff]
    [ 0.304230] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff]
    [ 0.304234] pci_root PNP0A08:00: host bridge window [mem 0xe0000000-0xf7ffffff]
    [ 0.304238] pci_root PNP0A08:00: host bridge window [mem 0xfc000000-0xffffffff]
    [ 0.304265] pci 0000:00:00.0: [1022:1510] type 0 class 0x000600
    [ 0.304322] pci 0000:00:01.0: [1002:9802] type 0 class 0x000300
    [ 0.304337] pci 0000:00:01.0: reg 10: [mem 0xe0000000-0xefffffff pref]
    [ 0.304347] pci 0000:00:01.0: reg 14: [io 0x3000-0x30ff]
    [ 0.304357] pci 0000:00:01.0: reg 18: [mem 0xf0200000-0xf023ffff]
    [ 0.304404] pci 0000:00:01.0: supports D1 D2
    [ 0.304435] pci 0000:00:01.1: [1002:1314] type 0 class 0x000403
    [ 0.304448] pci 0000:00:01.1: reg 10: [mem 0xf0244000-0xf0247fff]
    [ 0.304506] pci 0000:00:01.1: supports D1 D2
    [ 0.304585] pci 0000:00:04.0: [1022:1512] type 1 class 0x000604
    [ 0.304645] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 0.304651] pci 0000:00:04.0: PME# disabled
    [ 0.304684] pci 0000:00:05.0: [1022:1513] type 1 class 0x000604
    [ 0.304743] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    [ 0.304748] pci 0000:00:05.0: PME# disabled
    [ 0.304811] pci 0000:00:11.0: [1002:4391] type 0 class 0x000106
    [ 0.304838] pci 0000:00:11.0: reg 10: [io 0x3118-0x311f]
    [ 0.304852] pci 0000:00:11.0: reg 14: [io 0x3124-0x3127]
    [ 0.304866] pci 0000:00:11.0: reg 18: [io 0x3110-0x3117]
    [ 0.304880] pci 0000:00:11.0: reg 1c: [io 0x3120-0x3123]
    [ 0.304893] pci 0000:00:11.0: reg 20: [io 0x3100-0x310f]
    [ 0.304907] pci 0000:00:11.0: reg 24: [mem 0xf024e000-0xf024e3ff]
    [ 0.304971] pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
    [ 0.304990] pci 0000:00:12.0: reg 10: [mem 0xf024d000-0xf024dfff]
    [ 0.305084] pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
    [ 0.305790] pci 0000:00:12.2: reg 10: [mem 0xf024c000-0xf024c0ff]
    [ 0.309643] pci 0000:00:12.2: supports D1 D2
    [ 0.309653] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.309661] pci 0000:00:12.2: PME# disabled
    [ 0.309703] pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
    [ 0.309726] pci 0000:00:13.0: reg 10: [mem 0xf024b000-0xf024bfff]
    [ 0.310052] pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
    [ 0.310717] pci 0000:00:13.2: reg 10: [mem 0xf024a000-0xf024a0ff]
    [ 0.314283] pci 0000:00:13.2: supports D1 D2
    [ 0.314293] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.314302] pci 0000:00:13.2: PME# disabled
    [ 0.314343] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
    [ 0.314451] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
    [ 0.314483] pci 0000:00:14.2: reg 10: [mem 0xf0240000-0xf0243fff 64bit]
    [ 0.314560] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.314567] pci 0000:00:14.2: PME# disabled
    [ 0.314600] pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
    [ 0.314701] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
    [ 0.314764] pci 0000:00:16.0: [1002:4397] type 0 class 0x000c03
    [ 0.314784] pci 0000:00:16.0: reg 10: [mem 0xf0249000-0xf0249fff]
    [ 0.314878] pci 0000:00:16.2: [1002:4396] type 0 class 0x000c03
    [ 0.315565] pci 0000:00:16.2: reg 10: [mem 0xf0248000-0xf02480ff]
    [ 0.319593] pci 0000:00:16.2: supports D1 D2
    [ 0.319602] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.319611] pci 0000:00:16.2: PME# disabled
    [ 0.319653] pci 0000:00:18.0: [1022:1700] type 0 class 0x000600
    [ 0.319704] pci 0000:00:18.1: [1022:1701] type 0 class 0x000600
    [ 0.319747] pci 0000:00:18.2: [1022:1702] type 0 class 0x000600
    [ 0.320021] pci 0000:00:18.3: [1022:1703] type 0 class 0x000600
    [ 0.320088] pci 0000:00:18.4: [1022:1704] type 0 class 0x000600
    [ 0.320131] pci 0000:00:18.5: [1022:1718] type 0 class 0x000600
    [ 0.320174] pci 0000:00:18.6: [1022:1716] type 0 class 0x000600
    [ 0.320216] pci 0000:00:18.7: [1022:1719] type 0 class 0x000600
    [ 0.320338] pci 0000:01:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.320359] pci 0000:01:00.0: reg 10: [io 0x2000-0x20ff]
    [ 0.320392] pci 0000:01:00.0: reg 18: [mem 0xf0004000-0xf0004fff 64bit pref]
    [ 0.320412] pci 0000:01:00.0: reg 20: [mem 0xf0000000-0xf0003fff 64bit pref]
    [ 0.320466] pci 0000:01:00.0: supports D1 D2
    [ 0.320470] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.320477] pci 0000:01:00.0: PME# disabled
    [ 0.326731] pci 0000:00:04.0: PCI bridge to [bus 01-01]
    [ 0.326751] pci 0000:00:04.0: bridge window [io 0x2000-0x2fff]
    [ 0.326762] pci 0000:00:04.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.326771] pci 0000:00:04.0: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
    [ 0.326884] pci 0000:02:00.0: [1814:539f] type 0 class 0x000280
    [ 0.326908] pci 0000:02:00.0: reg 10: [mem 0xf0100000-0xf010ffff]
    [ 0.333424] pci 0000:00:05.0: PCI bridge to [bus 02-02]
    [ 0.333437] pci 0000:00:05.0: bridge window [io 0xfffffffffffff000-0x0000] (disabled)
    [ 0.333445] pci 0000:00:05.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.333454] pci 0000:00:05.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.333600] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.333607] pci 0000:00:14.4: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.333615] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.333622] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.333627] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.333631] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.333636] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.333640] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
    [ 0.333645] pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
    [ 0.333649] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
    [ 0.333653] pci 0000:00:14.4: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode)
    [ 0.333657] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.333662] pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.333666] pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.333670] pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.333675] pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.333679] pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.333683] pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
    [ 0.333688] pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
    [ 0.333692] pci 0000:00:14.4: bridge window [mem 0xe0000000-0xf7ffffff] (subtractive decode)
    [ 0.333696] pci 0000:00:14.4: bridge window [mem 0xfc000000-0xffffffff] (subtractive decode)
    [ 0.333730] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.333965] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
    [ 0.334034] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
    [ 0.334166] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.334455] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.334981] pci0000:00: ACPI _OSC control (0x19) granted
    [ 0.346082] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346217] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346353] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346488] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346625] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346714] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346789] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346863] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.347047] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.347068] vgaarb: loaded
    [ 0.347225] PCI: Using ACPI for IRQ routing
    [ 0.347231] PCI: pci_cache_line_size set to 64 bytes
    [ 0.347435] reserve RAM buffer: 000000000009f800 - 000000000009ffff
    [ 0.347439] reserve RAM buffer: 00000000dfa3f000 - 00000000dfffffff
    [ 0.347444] reserve RAM buffer: 00000000dff00000 - 00000000dfffffff
    [ 0.347447] reserve RAM buffer: 0000000187000000 - 0000000187ffffff
    [ 0.347671] NetLabel: Initializing
    [ 0.347675] NetLabel: domain hash size = 128
    [ 0.347677] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.347700] NetLabel: unlabeled traffic allowed by default
    [ 0.347731] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.347738] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.349771] Switching to clocksource hpet
    [ 0.349869] Switched to NOHz mode on CPU #1
    [ 0.350046] Switched to NOHz mode on CPU #0
    [ 0.357491] pnp: PnP ACPI init
    [ 0.357525] ACPI: bus type pnp registered
    [ 0.357763] pnp 00:00: [bus 00-ff]
    [ 0.357768] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.357772] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.357777] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.357781] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.357785] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.357789] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.357793] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.357797] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.357800] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.357804] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.357808] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.357811] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.357815] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.357818] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.357822] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.357826] pnp 00:00: [mem 0xe0000000-0xf7ffffff window]
    [ 0.357829] pnp 00:00: [mem 0xfc000000-0xffffffff window]
    [ 0.357833] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.357945] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.358035] pnp 00:01: [mem 0xfec00000-0xfec00fff]
    [ 0.358039] pnp 00:01: [mem 0xfee00000-0xfee00fff]
    [ 0.358135] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.358141] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.358147] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.358359] pnp 00:02: [irq 0 disabled]
    [ 0.358392] pnp 00:02: [irq 8]
    [ 0.358396] pnp 00:02: [mem 0xfed00000-0xfed003ff]
    [ 0.358441] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.358562] pnp 00:03: [io 0x0000-0x000f]
    [ 0.358566] pnp 00:03: [io 0x0081-0x008f]
    [ 0.358570] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.358574] pnp 00:03: [dma 4]
    [ 0.358630] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.358647] pnp 00:04: [io 0x00f0-0x00fe]
    [ 0.358671] pnp 00:04: [irq 13]
    [ 0.358734] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.358812] pnp 00:05: [io 0x0070-0x0071]
    [ 0.358869] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.358889] pnp 00:06: [io 0x0060]
    [ 0.358892] pnp 00:06: [io 0x0064]
    [ 0.358901] pnp 00:06: [irq 1]
    [ 0.358958] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.358979] pnp 00:07: [irq 12]
    [ 0.359045] pnp 00:07: Plug and Play ACPI device, IDs SYN1e3b SYN1e00 SYN0002 PNP0f13 (active)
    [ 0.359066] pnp 00:08: [io 0x0010-0x001f]
    [ 0.359069] pnp 00:08: [io 0x002e-0x002f]
    [ 0.359072] pnp 00:08: [io 0x0072-0x0073]
    [ 0.359075] pnp 00:08: [io 0x0080]
    [ 0.359078] pnp 00:08: [io 0x00b0-0x00b1]
    [ 0.359081] pnp 00:08: [io 0x0092]
    [ 0.359084] pnp 00:08: [io 0x0400-0x04cf]
    [ 0.359088] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.359091] pnp 00:08: [io 0x04d6]
    [ 0.359094] pnp 00:08: [io 0x0680-0x06ff]
    [ 0.359097] pnp 00:08: [io 0x077a]
    [ 0.359100] pnp 00:08: [io 0x0c00-0x0c01]
    [ 0.359102] pnp 00:08: [io 0x0c14]
    [ 0.359106] pnp 00:08: [io 0x0c50-0x0c52]
    [ 0.359109] pnp 00:08: [io 0x0c6c]
    [ 0.359111] pnp 00:08: [io 0x0c6f]
    [ 0.359114] pnp 00:08: [io 0x0cd0-0x0cdb]
    [ 0.359216] system 00:08: [io 0x0400-0x04cf] has been reserved
    [ 0.359221] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.359225] system 00:08: [io 0x04d6] has been reserved
    [ 0.359230] system 00:08: [io 0x0680-0x06ff] has been reserved
    [ 0.359234] system 00:08: [io 0x077a] has been reserved
    [ 0.359238] system 00:08: [io 0x0c00-0x0c01] has been reserved
    [ 0.359242] system 00:08: [io 0x0c14] has been reserved
    [ 0.359246] system 00:08: [io 0x0c50-0x0c52] has been reserved
    [ 0.359251] system 00:08: [io 0x0c6c] has been reserved
    [ 0.359255] system 00:08: [io 0x0c6f] has been reserved
    [ 0.359259] system 00:08: [io 0x0cd0-0x0cdb] has been reserved
    [ 0.359265] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.359348] pnp 00:09: [mem 0x000e0000-0x000fffff]
    [ 0.359353] pnp 00:09: [mem 0xffe00000-0xffffffff]
    [ 0.359450] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.359456] system 00:09: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.359462] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.361159] pnp 00:0a: [irq 23]
    [ 0.361298] pnp 00:0a: Plug and Play ACPI device, IDs HPQ0004 (active)
    [ 0.361323] pnp: PnP ACPI: found 11 devices
    [ 0.361326] ACPI: ACPI bus type pnp unregistered
    [ 0.369286] pci 0000:00:04.0: PCI bridge to [bus 01-01]
    [ 0.369294] pci 0000:00:04.0: bridge window [io 0x2000-0x2fff]
    [ 0.369300] pci 0000:00:04.0: bridge window [mem disabled]
    [ 0.369307] pci 0000:00:04.0: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
    [ 0.369315] pci 0000:00:05.0: PCI bridge to [bus 02-02]
    [ 0.369318] pci 0000:00:05.0: bridge window [io disabled]
    [ 0.369325] pci 0000:00:05.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.369330] pci 0000:00:05.0: bridge window [mem pref disabled]
    [ 0.369337] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 0.369340] pci 0000:00:14.4: bridge window [io disabled]
    [ 0.369362] pci 0000:00:14.4: bridge window [mem disabled]
    [ 0.369368] pci 0000:00:14.4: bridge window [mem pref disabled]
    [ 0.369400] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.369408] pci 0000:00:04.0: setting latency timer to 64
    [ 0.369422] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 0.369428] pci 0000:00:05.0: setting latency timer to 64
    [ 0.369440] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.369444] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.369448] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.369452] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.369456] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.369460] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.369464] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.369468] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.369472] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.369476] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.369480] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.369484] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.369487] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.369491] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.369495] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.369499] pci_bus 0000:00: resource 19 [mem 0xe0000000-0xf7ffffff]
    [ 0.369503] pci_bus 0000:00: resource 20 [mem 0xfc000000-0xffffffff]
    [ 0.369507] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    [ 0.369512] pci_bus 0000:01: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
    [ 0.369516] pci_bus 0000:02: resource 1 [mem 0xf0100000-0xf01fffff]
    [ 0.369520] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.369524] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.369528] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.369532] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.369535] pci_bus 0000:03: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.369539] pci_bus 0000:03: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.369543] pci_bus 0000:03: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.369547] pci_bus 0000:03: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.369551] pci_bus 0000:03: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.369555] pci_bus 0000:03: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.369559] pci_bus 0000:03: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.369562] pci_bus 0000:03: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.369566] pci_bus 0000:03: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.369570] pci_bus 0000:03: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.369574] pci_bus 0000:03: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.369578] pci_bus 0000:03: resource 19 [mem 0xe0000000-0xf7ffffff]
    [ 0.369582] pci_bus 0000:03: resource 20 [mem 0xfc000000-0xffffffff]
    [ 0.369723] NET: Registered protocol family 2
    [ 0.370245] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.373075] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.378850] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.379526] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.379531] TCP reno registered
    [ 0.379569] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.379687] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.380300] NET: Registered protocol family 1
    [ 0.380331] pci 0000:00:01.0: Boot video device
    [ 0.460342] PCI: CLS 64 bytes, default 64
    [ 0.460446] Unpacking initramfs...
    [ 0.505657] Freeing initrd memory: 1700k freed
    [ 0.506819] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.506828] Placing 64MB software IO TLB between ffff8800dba3f000 - ffff8800dfa3f000
    [ 0.506832] software IO TLB at phys 0xdba3f000 - 0xdfa3f000
    [ 0.506921] Simple Boot Flag at 0x44 set to 0x1
    [ 0.507647] audit: initializing netlink socket (disabled)
    [ 0.507672] type=2000 audit(1308931391.506:1): initialized
    [ 0.509016] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.513968] VFS: Disk quotas dquot_6.5.2
    [ 0.514241] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.514554] msgmni has been set to 11166
    [ 0.515475] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.515770] io scheduler noop registered
    [ 0.515778] io scheduler deadline registered
    [ 0.515922] io scheduler cfq registered (default)
    [ 0.516411] ERST: Table is not found!
    [ 0.516539] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.740924] Linux agpgart interface v0.103
    [ 0.741073] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.747470] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.747529] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.747687] mousedev: PS/2 mouse device common for all mice
    [ 0.747867] rtc_cmos 00:05: RTC can wake from S4
    [ 0.753544] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.767132] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.767186] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs
    [ 0.767213] cpuidle: using governor ladder
    [ 0.767217] cpuidle: using governor menu
    [ 0.767576] TCP cubic registered
    [ 0.767581] NET: Registered protocol family 17
    [ 0.767593] Registering the dns_resolver key type
    [ 0.767764] PM: Hibernation image not present or could not be loaded.
    [ 0.767778] registered taskstats version 1
    [ 0.768843] rtc_cmos 00:05: setting system clock to 2011-06-24 16:03:12 UTC (1308931392)
    [ 0.768918] Initializing network drop monitor service
    [ 0.771516] Freeing unused kernel memory: 724k freed
    [ 0.771916] Write protecting the kernel read-only data: 6144k
    [ 0.772631] Freeing unused kernel memory: 56k freed
    [ 0.777964] Freeing unused kernel memory: 784k freed
    [ 0.815303] udevd[59]: starting version 171
    [ 0.987592] SCSI subsystem initialized
    [ 1.022258] libata version 3.00 loaded.
    [ 1.036343] ahci 0000:00:11.0: version 3.0
    [ 1.036385] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 1.036532] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
    [ 1.036539] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 1.037084] scsi0 : ahci
    [ 1.037252] ata1: SATA max UDMA/133 abar m1024@0xf024e000 port 0xf024e100 irq 19
    [ 1.510277] Refined TSC clocksource calibration: 1596.003 MHz.
    [ 1.510296] Switching to clocksource tsc
    [ 6.856991] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 6.857578] ata1.00: ATA-7: INTEL SSDSA2M080G2GC, 2CV102HD, max UDMA/133
    [ 6.857585] ata1.00: 156301488 sectors, multi 1: LBA48 NCQ (depth 31/32)
    [ 6.858264] ata1.00: configured for UDMA/133
    [ 6.858756] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5
    [ 6.871132] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 6.871271] sd 0:0:0:0: [sda] Write Protect is off
    [ 6.871276] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 6.871320] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 6.872158] sda: sda1
    [ 6.873464] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 7.051357] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.707862] udevd[230]: starting version 171
    [ 7.759090] ACPI: acpi_idle registered with cpuidle
    [ 7.766584] powernow-k8: Found 1 AMD E-350 Processor (2 cpu cores) (version 2.20.00)
    [ 7.766662] powernow-k8: 0 : pstate 0 (1600 MHz)
    [ 7.766699] powernow-k8: 1 : pstate 1 (1280 MHz)
    [ 7.766703] powernow-k8: 2 : pstate 2 (800 MHz)
    [ 7.798328] rt5390 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 7.798437] rt5390 0000:02:00.0: setting latency timer to 64
    [ 7.798971] <-- RTMPAllocAdapterBlock, Status=0
    [ 7.860369] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 7.860383] ACPI: Power Button [PWRB]
    [ 7.860558] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    [ 7.861604] ACPI: Lid Switch [LID]
    [ 7.861751] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 7.861761] ACPI: Power Button [PWRF]
    [ 7.897248] vboxdrv: Found 2 processor cores.
    [ 7.897357] VBoxDrv: dbg - g_abExecMemory=ffffffffa0276360
    [ 7.897405] vboxdrv: fAsync=0 offMin=0x35d offMax=0xcf6
    [ 7.897484] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 7.897488] vboxdrv: Successfully loaded version 4.0.8_OSE (interface 0x00180000).
    [ 7.932205] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 7.934073] ACPI: AC Adapter [AC] (off-line)
    [ 7.934370] wmi: Mapper loaded
    [ 7.961127] acpi device:02: registered as cooling_device2
    [ 7.961272] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 7.961285] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 8.003256] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    [ 8.003495] SP5100 TCO timer: mmio address 0xb8fe00 already in use
    [ 8.014954] ACPI Warning: For \_TZ_.THRM._AL0: Return Package has no elements (empty) (20110316/nspredef-456)
    [ 8.014969] ACPI: [Package] has zero elements (ffff88017c138cc0)
    [ 8.014973] ACPI: Invalid active0 threshold
    [ 8.025488] thermal LNXTHERM:00: registered as thermal_zone0
    [ 8.025495] ACPI: Thermal Zone [THRM] (52 C)
    [ 8.044849] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 8.044866] ACPI: Battery Slot [BAT0] (battery present)
    [ 8.076882] hp_accel: laptop model unknown, using default axes configuration
    [ 8.109541] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 8.112918] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.112984] r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 8.113075] r8169 0000:01:00.0: setting latency timer to 64
    [ 8.113083] r8169 0000:01:00.0: (unregistered net_device): unknown MAC, using family default
    [ 8.113141] r8169 0000:01:00.0: irq 40 for MSI/MSI-X
    [ 8.113883] r8169 0000:01:00.0: eth0: RTL8168b/8111b at 0xffffc90000c34000, 68:b5:99:e1:fa:b1, XID 0c200000 IRQ 40
    [ 8.145250] usbcore: registered new interface driver usbfs
    [ 8.145307] usbcore: registered new interface driver hub
    [ 8.146258] usbcore: registered new device driver usb
    [ 8.147469] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 8.211672] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 8.211773] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 8.211870] ehci_hcd 0000:00:12.2: setting latency timer to 64
    [ 8.211878] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 8.211930] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 8.226790] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 8.226839] QUIRK: Enable AMD PLL fix
    [ 8.226874] ehci_hcd 0000:00:12.2: debug port 1
    [ 8.226916] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf024c000
    [ 8.236710] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 8.237083] hub 1-0:1.0: USB hub found
    [ 8.237094] hub 1-0:1.0: 5 ports detected
    [ 8.237272] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 8.237336] ehci_hcd 0000:00:13.2: setting latency timer to 64
    [ 8.237342] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 8.237361] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    [ 8.246722] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 8.246777] ehci_hcd 0000:00:13.2: debug port 1
    [ 8.246803] ehci_hcd 0000:00:13.2: irq 17, io mem 0xf024a000
    [ 8.255280] [drm] Initialized drm 1.1.0 20060810
    [ 8.256809] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 8.257138] hub 2-0:1.0: USB hub found
    [ 8.257148] hub 2-0:1.0: 5 ports detected
    [ 8.257353] ehci_hcd 0000:00:16.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 8.257432] ehci_hcd 0000:00:16.2: setting latency timer to 64
    [ 8.257438] ehci_hcd 0000:00:16.2: EHCI Host Controller
    [ 8.257456] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 3
    [ 8.266735] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 8.266794] ehci_hcd 0000:00:16.2: debug port 1
    [ 8.266822] ehci_hcd 0000:00:16.2: irq 17, io mem 0xf0248000
    [ 8.280083] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 8.280419] hub 3-0:1.0: USB hub found
    [ 8.280429] hub 3-0:1.0: 4 ports detected
    [ 8.299920] input: HP WMI hotkeys as /devices/virtual/input/input5
    [ 8.368162] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 8.368219] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.368296] ohci_hcd 0000:00:12.0: setting latency timer to 64
    [ 8.368303] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 8.368334] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 4
    [ 8.383583] ohci_hcd 0000:00:12.0: irq 18, io mem 0xf024d000
    [ 8.438348] [drm] VGACON disable radeon kernel modesetting.
    [ 8.439661] pci 0000:00:01.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.439670] pci 0000:00:01.0: setting latency timer to 64
    [ 8.440157] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 8.440162] [drm] No driver support for vblank timestamp query.
    [ 8.440168] [drm] Initialized radeon 1.33.0 20080528 for 0000:00:01.0 on minor 0
    [ 8.441308] hub 4-0:1.0: USB hub found
    [ 8.441368] hub 4-0:1.0: 5 ports detected
    [ 8.441720] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.441833] ohci_hcd 0000:00:13.0: setting latency timer to 64
    [ 8.441841] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 8.441860] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
    [ 8.456856] ohci_hcd 0000:00:13.0: irq 18, io mem 0xf024b000
    [ 8.477927] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 8.477937] Disabling lock debugging due to kernel taint
    [ 8.514652] hub 5-0:1.0: USB hub found
    [ 8.514713] hub 5-0:1.0: 5 ports detected
    [ 8.514902] HDA Intel 0000:00:01.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 8.515007] HDA Intel 0000:00:01.1: irq 41 for MSI/MSI-X
    [ 8.515044] HDA Intel 0000:00:01.1: setting latency timer to 64
    [ 8.534738] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 8.534853] HDA Intel 0000:00:14.2: setting latency timer to 64
    [ 8.566706] usb 2-1: new high speed USB device number 2 using ehci_hcd
    [ 8.583897] [fglrx] Maximum main memory to use for locked dma buffers: 5393 MBytes.
    [ 8.583979] [fglrx] vendor: 1002 device: 9802 count: 1
    [ 8.584734] [fglrx] ioport: bar 1, base 0x3000, size: 0x100
    [ 8.584748] pci 0000:00:01.0: setting latency timer to 64
    [ 8.585495] [fglrx] Kernel PAT support is enabled
    [ 8.585539] [fglrx] module loaded - fglrx 8.86.5 [May 24 2011] with 1 minors
    [ 8.598000] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input6
    [ 8.614292] input: HDA ATI SB Mic at Ext Right Jack as /devices/pci0000:00/0000:00:14.2/sound/card1/input7
    [ 8.614454] input: HDA ATI SB HP Out at Ext Right Jack as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
    [ 8.614783] ohci_hcd 0000:00:16.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.614861] ohci_hcd 0000:00:16.0: setting latency timer to 64
    [ 8.614869] ohci_hcd 0000:00:16.0: OHCI Host Controller
    [ 8.614900] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 6
    [ 8.623464] ohci_hcd 0000:00:16.0: irq 18, io mem 0xf0249000
    [ 8.681124] hub 6-0:1.0: USB hub found
    [ 8.681137] hub 6-0:1.0: 4 ports detected
    [ 8.892947] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0x5a0400
    [ 8.940407] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 9.016651] lis3lv02d: 8 bits 3DC sensor found
    [ 9.403986] Linux media interface: v0.10
    [ 9.420636] Linux video capture interface: v2.00
    [ 9.429080] uvcvideo: Found UVC 1.00 device HP Webcam-101 (174f:112b)
    [ 9.455290] input: HP Webcam-101 as /devices/pci0000:00/0000:00:13.2/usb2/2-1/2-1:1.0/input/input10
    [ 9.455419] usbcore: registered new interface driver uvcvideo
    [ 9.455423] USB Video Class driver (v1.0.0)
    [ 9.460103] usb 2-2: new high speed USB device number 3 using ehci_hcd
    [ 9.960350] usb 6-1: new full speed USB device number 2 using ohci_hcd
    [ 10.246250] Bluetooth: Core ver 2.16
    [ 10.246292] NET: Registered protocol family 31
    [ 10.246295] Bluetooth: HCI device and connection manager initialized
    [ 10.246300] Bluetooth: HCI socket layer initialized
    [ 10.246303] Bluetooth: L2CAP socket layer initialized
    [ 10.250254] Bluetooth: SCO socket layer initialized
    [ 10.265755] Initializing USB Mass Storage driver...
    [ 10.265954] usbcore: registered new interface driver usb-storage
    [ 10.265957] USB Mass Storage support registered.
    [ 10.270760] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 10.271722] usbcore: registered new interface driver btusb
    [ 10.288479] scsi1 : usb-storage 2-2:1.0
    [ 10.288755] usbcore: registered new interface driver ums-realtek
    [ 10.293708] usbcore: registered new interface driver uas
    [ 10.430407] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input11
    [ 10.430745] Registered led device: hp::hddprotect
    [ 10.430769] hp_accel: driver loaded
    [ 10.526540] EXT4-fs (sda1): re-mounted. Opts: discard
    [ 11.289737] scsi 1:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
    [ 11.290445] sd 1:0:0:0: Attached scsi generic sg1 type 0
    [ 11.312911] fuse init (API version 7.16)
    [ 11.519361] r8169 0000:01:00.0: eth0: link down
    [ 11.527370] KH: Use High Memory for Beacon
    [ 11.531213] <-- RTMPAllocTxRxRingMemory, Status=0
    [ 11.588181] <==== rt28xx_init, Status=0
    [ 11.588301] 0x1300 = 00064300
    [ 12.021213] sd 1:0:0:0: [sdb] 3987456 512-byte logical blocks: (2.04 GB/1.90 GiB)
    [ 12.023162] sd 1:0:0:0: [sdb] Write Protect is off
    [ 12.023168] sd 1:0:0:0: [sdb] Mode Sense: 03 00 00 00
    [ 12.023172] sd 1:0:0:0: [sdb] Assuming drive cache: write through
    [ 12.025360] sd 1:0:0:0: [sdb] Assuming drive cache: write through
    [ 12.027256] sdb: sdb1
    [ 12.031613] sd 1:0:0:0: [sdb] Assuming drive cache: write through
    [ 12.031628] sd 1:0:0:0: [sdb] Attached SCSI removable disk
    [ 12.486029] fglrx_pci 0000:00:01.0: irq 42 for MSI/MSI-X
    [ 12.486918] [fglrx] Firegl kernel thread PID: 779
    [ 12.486999] [fglrx] Firegl kernel thread PID: 780
    [ 12.487080] [fglrx] Firegl kernel thread PID: 781
    [ 12.487290] [fglrx] IRQ 42 Enabled
    [ 12.612000] [fglrx] Gart USWC size:1280 M.
    [ 12.612007] [fglrx] Gart cacheable size:508 M.
    [ 12.612017] [fglrx] Reserved FB block: Shared offset:0, size:1000000
    [ 12.612021] [fglrx] Reserved FB block: Unshared offset:fbfd000, size:403000
    [ 12.612025] [fglrx] Reserved FB block: Unshared offset:17ff4000, size:c000
    [ 25.342715] EXT4-fs (sda1): re-mounted. Opts: discard,commit=600
    [ 39.000090] NET: Registered protocol family 10
    [ 39.001989] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 39.648846] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.

    Hello everyone,
    I am using ArchLinux on a HP dm1-3100ev (aka dm1z). This little machine is equipped with an 80GB Intel X25-M SSD (2nd gen) and boots and runs nice and fast.
    However, I just noticed a curious issue, where the SATA interface takes 5.3 seconds to appear. According to dmesg:
    dmesg wrote:[    1.510296] Switching to clocksource tsc
    [    6.856991] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [    6.857578] ata1.00: ATA-7: INTEL SSDSA2M080G2GC, 2CV102HD, max UDMA/133
    [    6.857585] ata1.00: 156301488 sectors, multi 1: LBA48 NCQ (depth 31/32)
    [    6.858264] ata1.00: configured for UDMA/133
    [    6.858756] scsi 0:0:0:0: Direct-Access     ATA      INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5
    [    6.871132] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [    6.871271] sd 0:0:0:0: [sda] Write Protect is off
    [    6.871276] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [    6.871320] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [    6.872158]  sda: sda1
    [    6.873464] sd 0:0:0:0: [sda] Attached SCSI disk
    This is on linux 2.6.39. Anyone have any ideas why this is and how I can reduce this delay? This is by far the slowest part of the boot sequence right now!
    Full dmesg log below:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (tobias@T-POWA-LX) (gcc version 4.6.0 20110603 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011
    [ 0.000000] Command line: root=/dev/disk/by-uuid/3e8701ef-e777-4352-a42c-83dd9f68240a ro nomodeset quiet
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000dfa3f000 (usable)
    [ 0.000000] BIOS-e820: 00000000dfa3f000 - 00000000dfabf000 (reserved)
    [ 0.000000] BIOS-e820: 00000000dfabf000 - 00000000dfebf000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000dfebf000 - 00000000dfef6000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000dfef6000 - 00000000dff00000 (usable)
    [ 0.000000] BIOS-e820: 00000000dff00000 - 00000000e0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000187000000 (usable)
    [ 0.000000] BIOS-e820: 0000000187000000 - 000000019f000000 (reserved)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: Hewlett-Packard HP Pavilion dm1 Notebook PC /1611, BIOS F.12 04/26/2011
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x187000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0C0000000 mask FE0000000 write-back
    [ 0.000000] 3 base 0DFEBD000 mask FFFFFF000 uncachable
    [ 0.000000] 4 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000019f000000 aka 6640M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] last_pfn = 0xdff00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fe1b0] fe1b0
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000dff00000
    [ 0.000000] 0000000000 - 00c0000000 page 1G
    [ 0.000000] 00c0000000 - 00dfe00000 page 2M
    [ 0.000000] 00dfe00000 - 00dff00000 page 4k
    [ 0.000000] kernel direct mapping tables up to dff00000 @ dfefd000-dff00000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000187000000
    [ 0.000000] 0100000000 - 0180000000 page 1G
    [ 0.000000] 0180000000 - 0187000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 187000000 @ 186ffe000-187000000
    [ 0.000000] RAMDISK: 37e47000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HPQOEM)
    [ 0.000000] ACPI: XSDT 00000000dfef5120 00064 (v01 HPQOEM SLIC-MPC 00000003 01000013)
    [ 0.000000] ACPI: FACP 00000000dfef4000 000F4 (v04 HPQOEM SLIC-MPC 00000003 ACPI 00040000)
    [ 0.000000] ACPI: DSDT 00000000dfee7000 0972F (v01 HP INSYDE F0000000 ACPI 00040000)
    [ 0.000000] ACPI: FACS 00000000dfc96000 00040
    [ 0.000000] ACPI: HPET 00000000dfef3000 00038 (v01 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: APIC 00000000dfef2000 00084 (v02 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: MCFG 00000000dfef1000 0003C (v01 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 00000000dfee6000 00028 (v01 HP INSYDE 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SLIC 00000000dfee5000 00176 (v01 HPQOEM SLIC-MPC 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000dfee4000 003DE (v01 HP INSYDE 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 00000000dfee2000 012FA (v02 HP INSYDE 00000001 MSFT 04000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000187000000
    [ 0.000000] NUMA: Using 63 for the hash shift.
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000187000000
    [ 0.000000] NODE_DATA [0000000186ff9000 - 0000000186ffdfff]
    [ 0.000000] [ffffea0000000000-ffffea00055fffff] PMD -> [ffff880180c00000-ffff880185bfffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00187000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[4] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x000dfa3f
    [ 0.000000] 0: 0x000dfef6 -> 0x000dff00
    [ 0.000000] 0: 0x00100000 -> 0x00187000
    [ 0.000000] On node 0 totalpages: 1468888
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3922 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 897665 pages, LIFO batch:31
    [ 0.000000] Normal zone: 7560 pages used for memmap
    [ 0.000000] Normal zone: 545400 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000dfa3f000 - 00000000dfabf000
    [ 0.000000] PM: Registered nosave memory: 00000000dfabf000 - 00000000dfebf000
    [ 0.000000] PM: Registered nosave memory: 00000000dfebf000 - 00000000dfef6000
    [ 0.000000] PM: Registered nosave memory: 00000000dff00000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f8000000
    [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at e0000000 (gap: e0000000:18000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff880186c00000 s83136 r8192 d23360 u524288
    [ 0.000000] pcpu-alloc: s83136 r8192 d23360 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1446987
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/disk/by-uuid/3e8701ef-e777-4352-a42c-83dd9f68240a ro nomodeset quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 5715728k/6406144k available (4022k kernel code, 530592k absent, 159824k reserved, 3332k data, 724k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptable hierarchical RCU implementation.
    [ 0.000000] RCU-based detection of stalled CPUs is disabled.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 47185920 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1596.101 MHz processor.
    [ 0.003340] Calibrating delay loop (skipped), value calculated using timer frequency.. 3193.21 BogoMIPS (lpj=5320336)
    [ 0.003347] pid_max: default: 32768 minimum: 301
    [ 0.003562] Security Framework initialized
    [ 0.003572] AppArmor: AppArmor disabled by boot time parameter
    [ 0.005092] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.012089] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.014996] Mount-cache hash table entries: 256
    [ 0.015789] Initializing cgroup subsys ns
    [ 0.015797] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.015802] Initializing cgroup subsys cpuacct
    [ 0.015866] Initializing cgroup subsys memory
    [ 0.015901] Initializing cgroup subsys devices
    [ 0.015905] Initializing cgroup subsys freezer
    [ 0.015908] Initializing cgroup subsys net_cls
    [ 0.015911] Initializing cgroup subsys blkio
    [ 0.016009] tseg: 00dff00000
    [ 0.016014] CPU: Physical Processor ID: 0
    [ 0.016016] CPU: Processor Core ID: 0
    [ 0.016019] mce: CPU supports 6 MCE banks
    [ 0.018003] ACPI: Core revision 20110316
    [ 0.026713] ftrace: allocating 15966 entries in 63 pages
    [ 0.030133] Setting APIC routing to flat
    [ 0.030496] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.064116] CPU0: AMD E-350 Processor stepping 00
    [ 0.066663] Performance Events: AMD PMU driver.
    [ 0.066663] ... version: 0
    [ 0.066663] ... bit width: 48
    [ 0.066663] ... generic registers: 4
    [ 0.066663] ... value mask: 0000ffffffffffff
    [ 0.066663] ... max period: 00007fffffffffff
    [ 0.066663] ... fixed-purpose events: 0
    [ 0.066663] ... event mask: 000000000000000f
    [ 0.083498] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.110105] Booting Node 0, Processors #1
    [ 0.110114] smpboot cpu 1: start_ip = 9a000
    [ 0.206704] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.213374] Brought up 2 CPUs
    [ 0.213387] Total of 2 processors activated (6386.16 BogoMIPS).
    [ 0.213856] devtmpfs: initialized
    [ 0.217207] PM: Registering ACPI NVS region at dfabf000 (4194304 bytes)
    [ 0.218611] print_constraints: dummy:
    [ 0.218770] NET: Registered protocol family 16
    [ 0.219087] Extended Config Space enabled on 0 nodes
    [ 0.219123] ACPI: bus type pci registered
    [ 0.220109] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.220115] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.230714] PCI: Using configuration type 1 for base access
    [ 0.231511] bio: create slab <bio-0> at 0
    [ 0.234922] ACPI: EC: Look up EC in DSDT
    [ 0.237245] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.241929] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.253590] ACPI: Interpreter enabled
    [ 0.253602] ACPI: (supports S0 S3 S4 S5)
    [ 0.253650] ACPI: Using IOAPIC for interrupt routing
    [ 0.294296] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 0.294593] ACPI: No dock devices found.
    [ 0.294598] HEST: Table not found.
    [ 0.294604] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.303828] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.304172] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.304177] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.304182] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.304186] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff]
    [ 0.304190] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff]
    [ 0.304194] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff]
    [ 0.304198] pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cffff]
    [ 0.304202] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [ 0.304206] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [ 0.304210] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [ 0.304214] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    [ 0.304218] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    [ 0.304222] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
    [ 0.304226] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff]
    [ 0.304230] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff]
    [ 0.304234] pci_root PNP0A08:00: host bridge window [mem 0xe0000000-0xf7ffffff]
    [ 0.304238] pci_root PNP0A08:00: host bridge window [mem 0xfc000000-0xffffffff]
    [ 0.304265] pci 0000:00:00.0: [1022:1510] type 0 class 0x000600
    [ 0.304322] pci 0000:00:01.0: [1002:9802] type 0 class 0x000300
    [ 0.304337] pci 0000:00:01.0: reg 10: [mem 0xe0000000-0xefffffff pref]
    [ 0.304347] pci 0000:00:01.0: reg 14: [io 0x3000-0x30ff]
    [ 0.304357] pci 0000:00:01.0: reg 18: [mem 0xf0200000-0xf023ffff]
    [ 0.304404] pci 0000:00:01.0: supports D1 D2
    [ 0.304435] pci 0000:00:01.1: [1002:1314] type 0 class 0x000403
    [ 0.304448] pci 0000:00:01.1: reg 10: [mem 0xf0244000-0xf0247fff]
    [ 0.304506] pci 0000:00:01.1: supports D1 D2
    [ 0.304585] pci 0000:00:04.0: [1022:1512] type 1 class 0x000604
    [ 0.304645] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 0.304651] pci 0000:00:04.0: PME# disabled
    [ 0.304684] pci 0000:00:05.0: [1022:1513] type 1 class 0x000604
    [ 0.304743] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    [ 0.304748] pci 0000:00:05.0: PME# disabled
    [ 0.304811] pci 0000:00:11.0: [1002:4391] type 0 class 0x000106
    [ 0.304838] pci 0000:00:11.0: reg 10: [io 0x3118-0x311f]
    [ 0.304852] pci 0000:00:11.0: reg 14: [io 0x3124-0x3127]
    [ 0.304866] pci 0000:00:11.0: reg 18: [io 0x3110-0x3117]
    [ 0.304880] pci 0000:00:11.0: reg 1c: [io 0x3120-0x3123]
    [ 0.304893] pci 0000:00:11.0: reg 20: [io 0x3100-0x310f]
    [ 0.304907] pci 0000:00:11.0: reg 24: [mem 0xf024e000-0xf024e3ff]
    [ 0.304971] pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
    [ 0.304990] pci 0000:00:12.0: reg 10: [mem 0xf024d000-0xf024dfff]
    [ 0.305084] pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
    [ 0.305790] pci 0000:00:12.2: reg 10: [mem 0xf024c000-0xf024c0ff]
    [ 0.309643] pci 0000:00:12.2: supports D1 D2
    [ 0.309653] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.309661] pci 0000:00:12.2: PME# disabled
    [ 0.309703] pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
    [ 0.309726] pci 0000:00:13.0: reg 10: [mem 0xf024b000-0xf024bfff]
    [ 0.310052] pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
    [ 0.310717] pci 0000:00:13.2: reg 10: [mem 0xf024a000-0xf024a0ff]
    [ 0.314283] pci 0000:00:13.2: supports D1 D2
    [ 0.314293] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.314302] pci 0000:00:13.2: PME# disabled
    [ 0.314343] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
    [ 0.314451] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
    [ 0.314483] pci 0000:00:14.2: reg 10: [mem 0xf0240000-0xf0243fff 64bit]
    [ 0.314560] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.314567] pci 0000:00:14.2: PME# disabled
    [ 0.314600] pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
    [ 0.314701] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
    [ 0.314764] pci 0000:00:16.0: [1002:4397] type 0 class 0x000c03
    [ 0.314784] pci 0000:00:16.0: reg 10: [mem 0xf0249000-0xf0249fff]
    [ 0.314878] pci 0000:00:16.2: [1002:4396] type 0 class 0x000c03
    [ 0.315565] pci 0000:00:16.2: reg 10: [mem 0xf0248000-0xf02480ff]
    [ 0.319593] pci 0000:00:16.2: supports D1 D2
    [ 0.319602] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.319611] pci 0000:00:16.2: PME# disabled
    [ 0.319653] pci 0000:00:18.0: [1022:1700] type 0 class 0x000600
    [ 0.319704] pci 0000:00:18.1: [1022:1701] type 0 class 0x000600
    [ 0.319747] pci 0000:00:18.2: [1022:1702] type 0 class 0x000600
    [ 0.320021] pci 0000:00:18.3: [1022:1703] type 0 class 0x000600
    [ 0.320088] pci 0000:00:18.4: [1022:1704] type 0 class 0x000600
    [ 0.320131] pci 0000:00:18.5: [1022:1718] type 0 class 0x000600
    [ 0.320174] pci 0000:00:18.6: [1022:1716] type 0 class 0x000600
    [ 0.320216] pci 0000:00:18.7: [1022:1719] type 0 class 0x000600
    [ 0.320338] pci 0000:01:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.320359] pci 0000:01:00.0: reg 10: [io 0x2000-0x20ff]
    [ 0.320392] pci 0000:01:00.0: reg 18: [mem 0xf0004000-0xf0004fff 64bit pref]
    [ 0.320412] pci 0000:01:00.0: reg 20: [mem 0xf0000000-0xf0003fff 64bit pref]
    [ 0.320466] pci 0000:01:00.0: supports D1 D2
    [ 0.320470] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.320477] pci 0000:01:00.0: PME# disabled
    [ 0.326731] pci 0000:00:04.0: PCI bridge to [bus 01-01]
    [ 0.326751] pci 0000:00:04.0: bridge window [io 0x2000-0x2fff]
    [ 0.326762] pci 0000:00:04.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.326771] pci 0000:00:04.0: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
    [ 0.326884] pci 0000:02:00.0: [1814:539f] type 0 class 0x000280
    [ 0.326908] pci 0000:02:00.0: reg 10: [mem 0xf0100000-0xf010ffff]
    [ 0.333424] pci 0000:00:05.0: PCI bridge to [bus 02-02]
    [ 0.333437] pci 0000:00:05.0: bridge window [io 0xfffffffffffff000-0x0000] (disabled)
    [ 0.333445] pci 0000:00:05.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.333454] pci 0000:00:05.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.333600] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.333607] pci 0000:00:14.4: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.333615] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.333622] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.333627] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.333631] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.333636] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.333640] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
    [ 0.333645] pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
    [ 0.333649] pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
    [ 0.333653] pci 0000:00:14.4: bridge window [mem 0x000cc000-0x000cffff] (subtractive decode)
    [ 0.333657] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.333662] pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.333666] pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.333670] pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.333675] pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.333679] pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.333683] pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
    [ 0.333688] pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
    [ 0.333692] pci 0000:00:14.4: bridge window [mem 0xe0000000-0xf7ffffff] (subtractive decode)
    [ 0.333696] pci 0000:00:14.4: bridge window [mem 0xfc000000-0xffffffff] (subtractive decode)
    [ 0.333730] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.333965] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
    [ 0.334034] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
    [ 0.334166] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
    [ 0.334455] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.334981] pci0000:00: ACPI _OSC control (0x19) granted
    [ 0.346082] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346217] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346353] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346488] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346625] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346714] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346789] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.346863] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0
    [ 0.347047] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.347068] vgaarb: loaded
    [ 0.347225] PCI: Using ACPI for IRQ routing
    [ 0.347231] PCI: pci_cache_line_size set to 64 bytes
    [ 0.347435] reserve RAM buffer: 000000000009f800 - 000000000009ffff
    [ 0.347439] reserve RAM buffer: 00000000dfa3f000 - 00000000dfffffff
    [ 0.347444] reserve RAM buffer: 00000000dff00000 - 00000000dfffffff
    [ 0.347447] reserve RAM buffer: 0000000187000000 - 0000000187ffffff
    [ 0.347671] NetLabel: Initializing
    [ 0.347675] NetLabel: domain hash size = 128
    [ 0.347677] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.347700] NetLabel: unlabeled traffic allowed by default
    [ 0.347731] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.347738] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.349771] Switching to clocksource hpet
    [ 0.349869] Switched to NOHz mode on CPU #1
    [ 0.350046] Switched to NOHz mode on CPU #0
    [ 0.357491] pnp: PnP ACPI init
    [ 0.357525] ACPI: bus type pnp registered
    [ 0.357763] pnp 00:00: [bus 00-ff]
    [ 0.357768] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.357772] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.357777] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.357781] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.357785] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.357789] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.357793] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.357797] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.357800] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.357804] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.357808] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.357811] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.357815] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.357818] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.357822] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.357826] pnp 00:00: [mem 0xe0000000-0xf7ffffff window]
    [ 0.357829] pnp 00:00: [mem 0xfc000000-0xffffffff window]
    [ 0.357833] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.357945] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.358035] pnp 00:01: [mem 0xfec00000-0xfec00fff]
    [ 0.358039] pnp 00:01: [mem 0xfee00000-0xfee00fff]
    [ 0.358135] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.358141] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.358147] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.358359] pnp 00:02: [irq 0 disabled]
    [ 0.358392] pnp 00:02: [irq 8]
    [ 0.358396] pnp 00:02: [mem 0xfed00000-0xfed003ff]
    [ 0.358441] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.358562] pnp 00:03: [io 0x0000-0x000f]
    [ 0.358566] pnp 00:03: [io 0x0081-0x008f]
    [ 0.358570] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.358574] pnp 00:03: [dma 4]
    [ 0.358630] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.358647] pnp 00:04: [io 0x00f0-0x00fe]
    [ 0.358671] pnp 00:04: [irq 13]
    [ 0.358734] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.358812] pnp 00:05: [io 0x0070-0x0071]
    [ 0.358869] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.358889] pnp 00:06: [io 0x0060]
    [ 0.358892] pnp 00:06: [io 0x0064]
    [ 0.358901] pnp 00:06: [irq 1]
    [ 0.358958] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.358979] pnp 00:07: [irq 12]
    [ 0.359045] pnp 00:07: Plug and Play ACPI device, IDs SYN1e3b SYN1e00 SYN0002 PNP0f13 (active)
    [ 0.359066] pnp 00:08: [io 0x0010-0x001f]
    [ 0.359069] pnp 00:08: [io 0x002e-0x002f]
    [ 0.359072] pnp 00:08: [io 0x0072-0x0073]
    [ 0.359075] pnp 00:08: [io 0x0080]
    [ 0.359078] pnp 00:08: [io 0x00b0-0x00b1]
    [ 0.359081] pnp 00:08: [io 0x0092]
    [ 0.359084] pnp 00:08: [io 0x0400-0x04cf]
    [ 0.359088] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.359091] pnp 00:08: [io 0x04d6]
    [ 0.359094] pnp 00:08: [io 0x0680-0x06ff]
    [ 0.359097] pnp 00:08: [io 0x077a]
    [ 0.359100] pnp 00:08: [io 0x0c00-0x0c01]
    [ 0.359102] pnp 00:08: [io 0x0c14]
    [ 0.359106] pnp 00:08: [io 0x0c50-0x0c52]
    [ 0.359109] pnp 00:08: [io 0x0c6c]
    [ 0.359111] pnp 00:08: [io 0x0c6f]
    [ 0.359114] pnp 00:08: [io 0x0cd0-0x0cdb]
    [ 0.359216] system 00:08: [io 0x0400-0x04cf] has been reserved
    [ 0.359221] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.359225] system 00:08: [io 0x04d6] has been reserved
    [ 0.359230] system 00:08: [io 0x0680-0x06ff] has been reserved
    [ 0.359234] system 00:08: [io 0x077a] has been reserved
    [ 0.359238] system 00:08: [io 0x0c00-0x0c01] has been reserved
    [ 0.359242] system 00:08: [io 0x0c14] has been reserved
    [ 0.359246] system 00:08: [io 0x0c50-0x0c52] has been reserved
    [ 0.359251] system 00:08: [io 0x0c6c] has been reserved
    [ 0.359255] system 00:08: [io 0x0c6f] has been reserved
    [ 0.359259] system 00:08: [io 0x0cd0-0x0cdb] has been reserved
    [ 0.359265] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.359348] pnp 00:09: [mem 0x000e0000-0x000fffff]
    [ 0.359353] pnp 00:09: [mem 0xffe00000-0xffffffff]
    [ 0.359450] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.359456] system 00:09: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.359462] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.361159] pnp 00:0a: [irq 23]
    [ 0.361298] pnp 00:0a: Plug and Play ACPI device, IDs HPQ0004 (active)
    [ 0.361323] pnp: PnP ACPI: found 11 devices
    [ 0.361326] ACPI: ACPI bus type pnp unregistered
    [ 0.369286] pci 0000:00:04.0: PCI bridge to [bus 01-01]
    [ 0.369294] pci 0000:00:04.0: bridge window [io 0x2000-0x2fff]
    [ 0.369300] pci 0000:00:04.0: bridge window [mem disabled]
    [ 0.369307] pci 0000:00:04.0: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
    [ 0.369315] pci 0000:00:05.0: PCI bridge to [bus 02-02]
    [ 0.369318] pci 0000:00:05.0: bridge window [io disabled]
    [ 0.369325] pci 0000:00:05.0: bridge window [mem 0xf0100000-0xf01fffff]
    [ 0.369330] pci 0000:00:05.0: bridge window [mem pref disabled]
    [ 0.369337] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 0.369340] pci 0000:00:14.4: bridge window [io disabled]
    [ 0.369362] pci 0000:00:14.4: bridge window [mem disabled]
    [ 0.369368] pci 0000:00:14.4: bridge window [mem pref disabled]
    [ 0.369400] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.369408] pci 0000:00:04.0: setting latency timer to 64
    [ 0.369422] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 0.369428] pci 0000:00:05.0: setting latency timer to 64
    [ 0.369440] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.369444] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.369448] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.369452] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.369456] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.369460] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.369464] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.369468] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.369472] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.369476] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.369480] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.369484] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.369487] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.369491] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.369495] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.369499] pci_bus 0000:00: resource 19 [mem 0xe0000000-0xf7ffffff]
    [ 0.369503] pci_bus 0000:00: resource 20 [mem 0xfc000000-0xffffffff]
    [ 0.369507] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    [ 0.369512] pci_bus 0000:01: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
    [ 0.369516] pci_bus 0000:02: resource 1 [mem 0xf0100000-0xf01fffff]
    [ 0.369520] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.369524] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.369528] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.369532] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.369535] pci_bus 0000:03: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.369539] pci_bus 0000:03: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.369543] pci_bus 0000:03: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.369547] pci_bus 0000:03: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.369551] pci_bus 0000:03: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.369555] pci_bus 0000:03: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.369559] pci_bus 0000:03: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.369562] pci_bus 0000:03: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.369566] pci_bus 0000:03: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.369570] pci_bus 0000:03: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.369574] pci_bus 0000:03: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.369578] pci_bus 0000:03: resource 19 [mem 0xe0000000-0xf7ffffff]
    [ 0.369582] pci_bus 0000:03: resource 20 [mem 0xfc000000-0xffffffff]
    [ 0.369723] NET: Registered protocol family 2
    [ 0.370245] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.373075] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.378850] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.379526] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.379531] TCP reno registered
    [ 0.379569] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.379687] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.380300] NET: Registered protocol family 1
    [ 0.380331] pci 0000:00:01.0: Boot video device
    [ 0.460342] PCI: CLS 64 bytes, default 64
    [ 0.460446] Unpacking initramfs...
    [ 0.505657] Freeing initrd memory: 1700k freed
    [ 0.506819] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.506828] Placing 64MB software IO TLB between ffff8800dba3f000 - ffff8800dfa3f000
    [ 0.506832] software IO TLB at phys 0xdba3f000 - 0xdfa3f000
    [ 0.506921] Simple Boot Flag at 0x44 set to 0x1
    [ 0.507647] audit: initializing netlink socket (disabled)
    [ 0.507672] type=2000 audit(1308931391.506:1): initialized
    [ 0.509016] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.513968] VFS: Disk quotas dquot_6.5.2
    [ 0.514241] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.514554] msgmni has been set to 11166
    [ 0.515475] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.515770] io scheduler noop registered
    [ 0.515778] io scheduler deadline registered
    [ 0.515922] io scheduler cfq registered (default)
    [ 0.516411] ERST: Table is not found!
    [ 0.516539] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.740924] Linux agpgart interface v0.103
    [ 0.741073] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.747470] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.747529] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.747687] mousedev: PS/2 mouse device common for all mice
    [ 0.747867] rtc_cmos 00:05: RTC can wake from S4
    [ 0.753544] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.767132] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.767186] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs
    [ 0.767213] cpuidle: using governor ladder
    [ 0.767217] cpuidle: using governor menu
    [ 0.767576] TCP cubic registered
    [ 0.767581] NET: Registered protocol family 17
    [ 0.767593] Registering the dns_resolver key type
    [ 0.767764] PM: Hibernation image not present or could not be loaded.
    [ 0.767778] registered taskstats version 1
    [ 0.768843] rtc_cmos 00:05: setting system clock to 2011-06-24 16:03:12 UTC (1308931392)
    [ 0.768918] Initializing network drop monitor service
    [ 0.771516] Freeing unused kernel memory: 724k freed
    [ 0.771916] Write protecting the kernel read-only data: 6144k
    [ 0.772631] Freeing unused kernel memory: 56k freed
    [ 0.777964] Freeing unused kernel memory: 784k freed
    [ 0.815303] udevd[59]: starting version 171
    [ 0.987592] SCSI subsystem initialized
    [ 1.022258] libata version 3.00 loaded.
    [ 1.036343] ahci 0000:00:11.0: version 3.0
    [ 1.036385] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 1.036532] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
    [ 1.036539] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 1.037084] scsi0 : ahci
    [ 1.037252] ata1: SATA max UDMA/133 abar m1024@0xf024e000 port 0xf024e100 irq 19
    [ 1.510277] Refined TSC clocksource calibration: 1596.003 MHz.
    [ 1.510296] Switching to clocksource tsc
    [ 6.856991] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 6.857578] ata1.00: ATA-7: INTEL SSDSA2M080G2GC, 2CV102HD, max UDMA/133
    [ 6.857585] ata1.00: 156301488 sectors, multi 1: LBA48 NCQ (depth 31/32)
    [ 6.858264] ata1.00: configured for UDMA/133
    [ 6.858756] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5
    [ 6.871132] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 6.871271] sd 0:0:0:0: [sda] Write Protect is off
    [ 6.871276] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 6.871320] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 6.872158] sda: sda1
    [ 6.873464] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 7.051357] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.707862] udevd[230]: starting version 171
    [ 7.759090] ACPI: acpi_idle registered with cpuidle
    [ 7.766584] powernow-k8: Found 1 AMD E-350 Processor (2 cpu cores) (version 2.20.00)
    [ 7.766662] powernow-k8: 0 : pstate 0 (1600 MHz)
    [ 7.766699] powernow-k8: 1 : pstate 1 (1280 MHz)
    [ 7.766703] powernow-k8: 2 : pstate 2 (800 MHz)
    [ 7.798328] rt5390 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 7.798437] rt5390 0000:02:00.0: setting latency timer to 64
    [ 7.798971] <-- RTMPAllocAdapterBlock, Status=0
    [ 7.860369] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 7.860383] ACPI: Power Button [PWRB]
    [ 7.860558] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    [ 7.861604] ACPI: Lid Switch [LID]
    [ 7.861751] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 7.861761] ACPI: Power Button [PWRF]
    [ 7.897248] vboxdrv: Found 2 processor cores.
    [ 7.897357] VBoxDrv: dbg - g_abExecMemory=ffffffffa0276360
    [ 7.897405] vboxdrv: fAsync=0 offMin=0x35d offMax=0xcf6
    [ 7.897484] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 7.897488] vboxdrv: Successfully loaded version 4.0.8_OSE (interface 0x00180000).
    [ 7.932205] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 7.934073] ACPI: AC Adapter [AC] (off-line)
    [ 7.934370] wmi: Mapper loaded
    [ 7.961127] acpi device:02: registered as cooling_device2
    [ 7.961272] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 7.961285] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 8.003256] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    [ 8.003495] SP5100 TCO timer: mmio address 0xb8fe00 already in use
    [ 8.014954] ACPI Warning: For \_TZ_.THRM._AL0: Return Package has no elements (empty) (20110316/nspredef-456)
    [ 8.014969] ACPI: [Package] has zero elements (ffff88017c138cc0)
    [ 8.014973] ACPI: Invalid active0 threshold
    [ 8.025488] thermal LNXTHERM:00: registered as thermal_zone0
    [ 8.025495] ACPI: Thermal Zone [THRM] (52 C)
    [ 8.044849] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 8.044866] ACPI: Battery Slot [BAT0] (battery present)
    [ 8.076882] hp_accel: laptop model unknown, using default axes configuration
    [ 8.109541] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 8.112918] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.112984] r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 8.113075] r8169 0000:01:00.0: setting latency timer to 64
    [ 8.113083] r8169 0000:01:00.0: (unregistered net_device): unknown MAC, using family default
    [ 8.113141] r8169 0000:01:00.0: irq 40 for MSI/MSI-X
    [ 8.113883] r8169 0000:01:00.0: eth0: RTL8168b/8111b at 0xffffc90000c34000, 68:b5:99:e1:fa:b1, XID 0c200000 IRQ 40
    [ 8.145250] usbcore: registered new interface driver usbfs
    [ 8.145307] usbcore: registered new interface driver hub
    [ 8.146258] usbcore: registered new device driver usb
    [ 8.147469] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 8.211672] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 8.211773] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 8.211870] ehci_hcd 0000:00:12.2: setting latency timer to 64
    [ 8.211878] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 8.211930] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 8.226790] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 8.226839] QUIRK: Enable AMD PLL fix
    [ 8.226874] ehci_hcd 0000:00:12.2: debug port 1
    [ 8.226916] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf024c000
    [ 8.236710] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 8.237083] hub 1-0:1.0: USB hub found
    [ 8.237094] hub 1-0:1.0: 5 ports detected
    [ 8.237272] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 8.237336] ehci_hcd 0000:00:13.2: setting latency timer to 64
    [ 8.237342] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 8.237361] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    [ 8.246722] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 8.246777] ehci_hcd 0000:00:13.2: debug port 1
    [ 8.246803] ehci_hcd 0000:00:13.2: irq 17, io mem 0xf024a000
    [ 8.255280] [drm] Initialized drm 1.1.0 20060810
    [ 8.256809] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 8.257138] hub 2-0:1.0: USB hub found
    [ 8.257148] hub 2-0:1.0: 5 ports detected
    [ 8.257353] ehci_hcd 0000:00:16.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 8.257432] ehci_hcd 0000:00:16.2: setting latency timer to 64
    [ 8.257438] ehci_hcd 0000:00:16.2: EHCI Host Controller
    [ 8.257456] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 3
    [ 8.266735] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 8.266794] ehci_hcd 0000:00:16.2: debug port 1
    [ 8.266822] ehci_hcd 0000:00:16.2: irq 17, io mem 0xf0248000
    [ 8.280083] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 8.280419] hub 3-0:1.0: USB hub found
    [ 8.280429] hub 3-0:1.0: 4 ports detected
    [ 8.299920] input: HP WMI hotkeys as /devices/virtual/input/input5
    [ 8.368162] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 8.368219] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.368296] ohci_hcd 0000:00:12.0: setting latency timer to 64
    [ 8.368303] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 8.368334] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 4
    [ 8.383583] ohci_hcd 0000:00:12.0: irq 18, io mem 0xf024d000
    [ 8.438348] [drm] VGACON disable radeon kernel modesetting.
    [ 8.439661] pci 0000:00:01.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.439670] pci 0000:00:01.0: setting latency timer to 64
    [ 8.440157] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 8.440162] [drm] No driver support for vblank timestamp query.
    [ 8.440168] [drm] Initialized radeon 1.33.0 20080528 for 0000:00:01.0 on minor 0
    [ 8.441308] hub 4-0:1.0: USB hub found
    [ 8.441368] hub 4-0:1.0: 5 ports detected
    [ 8.441720] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.441833] ohci_hcd 0000:00:13.0: setting latency timer to 64
    [ 8.441841] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 8.441860] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
    [ 8.456856] ohci_hcd 0000:00:13.0: irq 18, io mem 0xf024b000
    [ 8.477927] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 8.477937] Disabling lock debugging due to kernel taint
    [ 8.514652] hub 5-0:1.0: USB hub found
    [ 8.514713] hub 5-0:1.0: 5 ports detected
    [ 8.514902] HDA Intel 0000:00:01.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 8.515007] HDA Intel 0000:00:01.1: irq 41 for MSI/MSI-X
    [ 8.515044] HDA Intel 0000:00:01.1: setting latency timer to 64
    [ 8.534738] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 8.534853] HDA Intel 0000:00:14.2: setting latency timer to 64
    [ 8.566706] usb 2-1: new high speed USB device number 2 using ehci_hcd
    [ 8.583897] [fglrx] Maximum main memory to use for locked dma buffers: 5393 MBytes.
    [ 8.583979] [fglrx] vendor: 1002 device: 9802 count: 1
    [ 8.584734] [fglrx] ioport: bar 1, base 0x3000, size: 0x100
    [ 8.584748] pci 0000:00:01.0: setting latency timer to 64
    [ 8.585495] [fglrx] Kernel PAT support is enabled
    [ 8.585539] [fglrx] module loaded - fglrx 8.86.5 [May 24 2011] with 1 minors
    [ 8.598000] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input6
    [ 8.614292] input: HDA ATI SB Mic at Ext Right Jack as /devices/pci0000:00/0000:00:14.2/sound/card1/input7
    [ 8.614454] input: HDA ATI SB HP Out at Ext Right Jack as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
    [ 8.614783] ohci_hcd 0000:00:16.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 8.614861] ohci_hcd 0000:00:16.0: setting latency timer to 64
    [ 8.614869] ohci_hcd 0000:00:16.0: OHCI Host Controller
    [ 8.614900] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 6
    [ 8.623464] ohci_hcd 0000:00:16.0: irq 18, io mem 0xf0249000
    [ 8.681124] hub 6-0:1.0: USB hub found
    [ 8.681137] hub 6-0:1.0: 4 ports detected
    [ 8.892947] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0x5a0400
    [ 8.940407] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 9.016651] lis3lv02d: 8 bits 3DC sensor found
    [ 9.403986] Linux media interface: v0.10
    [ 9.420636] Linux video capture interface: v2.00
    [ 9.429080] uvcvideo: Found UVC 1.00 device HP Webcam-101 (174f:112b)
    [ 9.455290] input: HP Webcam-101 as /devices/pci0000:00/0000:00:13.2/usb2/2-1/2-1:1.0/input/input10
    [ 9.455419] usbcore: registered new interface driver uvcvideo
    [ 9.455423] USB Video Class driver (v1.0.0)
    [ 9.460103] usb 2-2: new high speed USB device number 3 using ehci_hcd
    [ 9.960350] usb 6-1: new full speed USB device number 2 using ohci_hcd
    [ 10.246250] Bluetooth: Core ver 2.16
    [ 10.246292] NET: Registered protocol family 31
    [ 10.246295] Bluetooth: HCI device and connection manager initialized
    [ 10.246300] Bluetooth: HCI socket layer initialized
    [ 10.246303] Bluetooth: L2CAP socket layer initialized
    [ 10.250254] Bluetooth: SCO socket layer initialized
    [ 10.265755] Initializing USB Mass Storage driver...
    [ 10.265954] usbcore: registered new interface driver usb-storage
    [ 10.265957] USB Mass Storage support registered.
    [ 10.270760] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 10.271722] usbcore: registered new interface driver btusb
    [ 10.288479] scsi1 : usb-storage 2-2:1.0
    [ 10.288755] usbcore: registered new interface driver ums-realtek
    [ 10.293708] usbcore: registered new interface driver uas
    [ 10.430407] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input11
    [ 10.430745] Registered led device: hp::hddprotect
    [ 10.430769] hp_accel: driver loaded
    [ 10.526540] EXT4-fs (sda1): re-mounted. Opts: discard
    [ 11.289737] scsi 1:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
    [ 11.290445] sd 1:0:0:0: Attached scsi generic sg1 type 0
    [ 11.312911] fuse init (API version 7.16)
    [ 11.519361] r8169 0000:01:00.0: eth0: link down
    [ 11.527370] KH: Use High Memory for Beacon
    [ 11.531213] <-- RTMPAllocTxRxRingMemory, Status=0
    [ 11.588181] <==== rt28xx_init, Status=0
    [ 11.588301] 0x1300 = 00064300
    [ 12.021213] sd 1:0:0:0: [sdb] 3987456 512-byte logical blocks: (2.04 GB/1.90 GiB)
    [ 12.023162] sd 1:0:0:0: [sdb] Write Protect is off
    [ 12.023168] sd 1:0:0:0: [sdb] Mode Sense: 03 00 00 00
    [ 12.023172] sd 1:0:0:0: [sdb] Assuming drive cache: write through
    [ 12.025360] sd 1:0:0:0: [sdb] Assuming drive cache: write through
    [ 12.027256] sdb: sdb1
    [ 12.031613] sd 1:0:0:0: [sdb] Assuming drive cache: write through
    [ 12.031628] sd 1:0:0:0: [sdb] Attached SCSI removable disk
    [ 12.486029] fglrx_pci 0000:00:01.0: irq 42 for MSI/MSI-X
    [ 12.486918] [fglrx] Firegl kernel thread PID: 779
    [ 12.486999] [fglrx] Firegl kernel thread PID: 780
    [ 12.487080] [fglrx] Firegl kernel thread PID: 781
    [ 12.487290] [fglrx] IRQ 42 Enabled
    [ 12.612000] [fglrx] Gart USWC size:1280 M.
    [ 12.612007] [fglrx] Gart cacheable size:508 M.
    [ 12.612017] [fglrx] Reserved FB block: Shared offset:0, size:1000000
    [ 12.612021] [fglrx] Reserved FB block: Unshared offset:fbfd000, size:403000
    [ 12.612025] [fglrx] Reserved FB block: Unshared offset:17ff4000, size:c000
    [ 25.342715] EXT4-fs (sda1): re-mounted. Opts: discard,commit=600
    [ 39.000090] NET: Registered protocol family 10
    [ 39.001989] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 39.648846] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.

Maybe you are looking for