Kernel Selection

Hi
I am installing SAP Netweaver 2004s in a new server where i need to install unicode system. My architecture is like this manner. System A --> AS ABAP
System B --> AS Java BI javaEP but together there should be one database whether it is possible. My solution for this is System A --> AS ABAP + AS Java
System B > BI Java+EP to refer system A.
could anyone guide me how to achieve this both the versions whether possible or not. and moreover
since NW2004s is always a unicode while installing thro the SAPinst GUI sometimes it asks for "Kernel NW2004s SR!" and sometimes " UC Kernel NW2004s SR!" while there are availablity of KN_WINDOWS_I386 and KU_WINDOWS_I386
if select KU_WINDOWS for the both the options what will happen
regards
bala

Hey there Bala,
  Some quick answers to your questions - first one is Unicode or Non-Unicode.  Doesn't really matter for a test system and if you have a small system to install on (not a lot of memory) then I would use Non-Unicode (the 'N' one).  Anything that will be used for supporting a real productive landscape (including sandboxes) - use Unicode (the 'U' one).  The differences between Unicode and Non-Unicode are significant enough that you don't want to do any development on a Non-Unicode enviornment to get ready to work on productive systems for proof of concent or anything else like that.  For a personal installation for messing around with, you will reduce your memory requirements in the ABAP Stack by half (UTF-16 in Unicode).
  As for the way in which to make a distributed or a central installation, that information is in the installation guide for your respective NW intallation that can be found in the Service Market Place - http://service.sap.com/instguides - it is too much detail and information to discuss here only.
  Be aware that one Db is supported by both of your scenarios - Central Installation under one SID is one Db - no issues - Distributed under multiple SID's can be two database instances or one MCOD instance.  Again more details in the installation guide that would be overwhelming to state in here what all this is.  Sorry to push the guide but want to make sure that you get all of the answer you are looking for.
  Thanks and if this answers your questions, please set this thread to answered - if not, please provide additional details.

Similar Messages

  • SAP ECC 6.0 IDES KERNEL Update

    Dear experts,
    i have installed a SAP ECC 6.0 IDES on a Windows Server 2003 Enterprise 64 bits + MS SQL from the MarketPlace:
    -> http://service.sap.com/swdc
    -> Download
    -> Installations and Upgrades
    -> My Company's Application Components
    -> SAP ERP
    -> SAP ERP 6.0
    -> IDES-Version
    -> Windows Server
    -> Microsoft SQL-Server
    and in order to update my solution into EHP3, i need to update the Kernel witch is in 7.00 version.
    How and Where could i get the kernel update file?
    Is there any difference between SAP Netweaver and SAP ERP Installation?
    Thank you very much for your great help.
    Best regards,
    Pascal.
    PS: i already update the SPAM/SAINT version (number 33) and have a well configured MOPZ for confirmed files.

    Hello Pascal,
    The kernel is at a differnt location. Please go to:
    1. http://service.sap.com/swdc
    2. Download
    3. Support Packages and Patches
    4. Entry by Application Group
    5. Additional Components
    6. SAP Kernel
    Select the corresponding platform.
    You should download 2 kernel files: SAPEXE and SAPEXEDB. One is database independent, one is DB dependent. Unpack them to the kernel directory and the kernel then is upgraded.
    Best Regards,
    Joseph

  • Selected model does not contain any target value prior

    Hi ODM experts,
    I have tried to apply the SVM alg in order to find anomalous records.The table source have rows like that:
    uniq_rec ID NAME A1 A2 A3 A4 A5 data
    577     2052956018     NAMEHDRCP8     2.27     0.4     85.46     0.01     14.54     24-JAN-13
    578     1250914484     NAMEDJDRVP3     11.45     1.24     56.24     0.01     43.77     24-JAN-13
    579     1968689283     NAMEDKEND12     0.000011     6.78     0.000029     0.01     0.091     24-JAN-13
    580     2063389130     NAMEDNMXG14     0.000011     0.65     36.65     0.02     0.091     24-JAN-13
    unq_rec is the pk, id is the id for the generic name and A1 .. A5 attributes ,data when collection occur etc
    I'm trying to execute the following code:
    drop table ALG_SET;
    exec dbms_data_mining.drop_model('SVMODEL');
    create table ALG_SET (setting_name varchar2(30), setting_value varchar2(4000));
    insert into ALG_SET values ('ALGO_NAME','ALGO_SUPPORT_VECTOR_MACHINES');
    insert into ALG_SET values ('PREP_AUTO','ON');
    commit;
    Begin
    dbms_data_mining.create_model('SVMODEL', 'CLASSIFICATION', 'ODM_PAR_FIN_HIST', 'UNQ_CRT', null, 'ALG_SET');
    end;
    The results is the following error:ORA-40104: invalid training data for model build ( if I run the code) .If I run from graphical interface I have obtained this
    error code " Selected model does not contain any target value prior"(using the similar model - SVM for anomaly detction plus the same source table )
    Please advice what is missing or wrong and if possible how to bypass this issue.
    Thanks in advance for support.
    Best Regards,
    Bogdan

    Here is also a newer example of creating a SVM Anomaly model from ODM sample code (12.1 version but this applies to 11.2):
    Rem
    Rem $Header: rdbms/demo/dmsvodem.sql /main/6 2012/04/15 16:31:56 xbarr Exp $
    Rem
    Rem dmsvodem.sql
    Rem
    Rem Copyright (c) 2004, 2012, Oracle and/or its affiliates.
    Rem All rights reserved.
    Rem
    Rem    NAME
    Rem      dmsvodem.sql - Sample program for the DBMS_DATA_MINING package.
    Rem
    Rem    DESCRIPTION
    Rem      This script creates an anomaly detection model
    Rem      for data analysis and outlier identification using the
    Rem      one-class SVM algorithm
    Rem      and data in the SH (Sales History)schema in the RDBMS.
    Rem
    Rem    NOTES
    Rem   
    Rem
    Rem    MODIFIED   (MM/DD/YY)
    Rem    amozes      01/23/12 - updates for 12c
    Rem    xbarr       01/10/12 - add prediction_details demo
    Rem    ramkrish    06/14/07 - remove commit after settings
    Rem    ramkrish    10/25/07 - replace deprecated get_model calls with catalog
    Rem                           queries
    Rem    ktaylor     07/11/05 - minor edits to comments
    Rem    jcjeon      01/18/05 - add column format
    Rem    bmilenov    10/28/04 - bmilenov_oneclass_demo
    Rem    bmilenov    10/25/04 - Remove dbms_output statements
    Rem    bmilenov    10/22/04 - Comment revision
    Rem    bmilenov    10/20/04 - Created
    Rem
    SET serveroutput ON
    SET trimspool ON 
    SET pages 10000
    SET echo ON
    --                            SAMPLE PROBLEM
    -- Given demographics about a set of customers that are known to have
    -- an affinity card, 1) find the most atypical members of this group
    -- (outlier identification), 2) discover the common demographic
    -- characteristics of the most typical customers with affinity card,
    -- and 3) compute how typical a given new/hypothetical customer is.
    -- DATA
    -- The data for this sample is composed from base tables in the SH schema
    -- (See Sample Schema Documentation) and presented through a view:
    -- mining_data_one_class_v
    -- (See dmsh.sql for view definition).
    --                            BUILD THE MODEL
    -- Cleanup old model with the same name (if any)
    BEGIN DBMS_DATA_MINING.DROP_MODEL('SVMO_SH_Clas_sample');
    EXCEPTION WHEN OTHERS THEN NULL; END;
    -- PREPARE DATA
    -- Automatic data preparation is used.
    -- SPECIFY SETTINGS
    -- Cleanup old settings table (if any)
    BEGIN
      EXECUTE IMMEDIATE 'DROP TABLE svmo_sh_sample_settings';
    EXCEPTION WHEN OTHERS THEN
      NULL;
    END;
    -- CREATE AND POPULATE A SETTINGS TABLE
    set echo off
    CREATE TABLE svmo_sh_sample_settings (
      setting_name  VARCHAR2(30),
      setting_value VARCHAR2(4000));
    set echo on
    BEGIN      
      -- Populate settings table
      -- SVM needs to be selected explicitly (default classifier: Naive Bayes)
      -- Examples of other possible overrides are:
      -- select a different rate of outliers in the data (default 0.1)
      -- (dbms_data_mining.svms_outlier_rate, ,0.05);
      -- select a kernel type (default kernel: selected by the algorithm)
      -- (dbms_data_mining.svms_kernel_function, dbms_data_mining.svms_linear);
      -- (dbms_data_mining.svms_kernel_function, dbms_data_mining.svms_gaussian);
      -- turn off active learning (enabled by default)
      -- (dbms_data_mining.svms_active_learning, dbms_data_mining.svms_al_disable);
      INSERT INTO svmo_sh_sample_settings (setting_name, setting_value) VALUES
      (dbms_data_mining.algo_name, dbms_data_mining.algo_support_vector_machines); 
      INSERT INTO svmo_sh_sample_settings (setting_name, setting_value) VALUES
      (dbms_data_mining.prep_auto, dbms_data_mining.prep_auto_on);
    END;
    -- CREATE A MODEL
    -- Build a new one-class SVM Model
    -- Note the NULL sprecification for target column name
    BEGIN
      DBMS_DATA_MINING.CREATE_MODEL(
        model_name          => 'SVMO_SH_Clas_sample',
        mining_function     => dbms_data_mining.classification,
        data_table_name     => 'mining_data_one_class_v',
        case_id_column_name => 'cust_id',
        target_column_name  => NULL,
        settings_table_name => 'svmo_sh_sample_settings');
    END;
    -- DISPLAY MODEL SETTINGS
    column setting_name format a30
    column setting_value format a30
    SELECT setting_name, setting_value
      FROM user_mining_model_settings
    WHERE model_name = 'SVMO_SH_CLAS_SAMPLE'
    ORDER BY setting_name;

  • Can I load updated kernel without reboot.....

    can i after an update just reboot my fresh installed kernel instead of rebooting the whole system.... is this possible ?
    Last edited by gregor (2012-01-27 14:48:09)

    Leonid.I wrote:You see, the kernel isn't the problem, udev is. Particularly, after updating the kernel you'd like to know if all your devices are correctly recognized and initialized. That's why you need a reboot. Kexec is more an emergency measure than a reboot-replacement.
    Debian, well: at least Squeeze, has kexec installed by default.  However you must still "reboot" except you end up skipping the Power On Self Test, and also the GRUB kernel selection, then everything re-initializes and reboots as normal.
    Edit
    And since kexec is installed by default: every "reboot" is a "kexec reboot."  Only power-off then power-on will show you a POST.  When I was using Debian kexec was the first package I removed.  I like to see a POST.
    Last edited by headkase (2012-01-27 23:53:14)

  • Has the "You shut down your computer because of a problem" message changed?

    When I restart the computer after a Kernal Panic I get the message "You shut down your computer because of a problem. Click Report to see detailed information and send a report to Apple"; 2 buttons are shown: "Ignore" and "Report...". For some time now, when I click on "Report..." the message disappears but I used to get a window allowing me to type in information about (something like) what I was doing prior to the problem occurring with a button (something like) 'Send Report". Since the "Report" button now causes the message to disappear, is a Report still going to Apple? Thank you.

    Open Console app
    View the System Diagnostic Reports by clicking on the disclosure triangle next to it in the log list. If the log list isn't visible, click the Show Log List button.
    Look for the latest report starting with "kernel"
    Select the report and it will show in the pane on the right.
    Select everything in the report except the Anonymous UUID.
    Copy and paste it into a reply here.

  • "You shut down your computer because of a problem" message at each starts

    hello, yesterday my mac restarts because of a problem, but since every time I turn on my mac or I restart, it tells me the same message ( want to keep open the last open application,or not ?)
    ( MacBook Pro (Retina, 13 inch, late 2013), 2,4 GHz Intel Core i5, 8 Go 1600 MHz DDR3, OS x Yosemite 10.10.1 )
    It show me that each time wen i start my computer, same if i shut down it without problems.
    So, do anyone know how to stop this
    thank you in advance
    OBrassard
    ps: sorry for my bad english

    Open Console app
    View the System Diagnostic Reports by clicking on the disclosure triangle next to it in the log list. If the log list isn't visible, click the Show Log List button.
    Look for the latest report starting with "kernel"
    Select the report and it will show in the pane on the right.
    Select everything in the report except the Anonymous UUID.
    Copy and paste it into a reply here.

  • RFC Problem:"I::001 Only available with the RFC library from 4.0C onwards."

    Hello,
    Ihave a VBA code that calls a BAPI via RFC to checkout a document. The Problem is that I get an error like in the subject. Here is my Code
    Private Declare Sub RfcAllowStartProgram Lib "librfc32.dll" (value As Any)
    Sub checkout_file()
    Dim oDocument As Object
    Dim oDocumentFile As Object
    Dim oDocumentFiles As Object
    Dim oReturn As Object
    Dim oBAPICtrl As Object
    'Creating BAPI object
    Set oBAPICtrl = CreateObject("SAP.BAPI.1")
    Set oConnection = oBAPICtrl.Connection
    If oConnection.Logon(0, False) = False Then
    MsgBox "No access to R/3 System"
    Exit Sub 'Programm beenden
    End If
    RfcAllowStartProgram ByVal 0&
    'Creating lokal instance of BO "Draw"
    Set oDocument = oBAPICtrl.GetSAPObject("DRAW", "PM2", "A5N00030059989", "D", "000")
    If Err.Number <> 0 Then
    MsgBox "No local BO 'Draw' created!"
    Exit Sub
    End If
    Set oDocumentFile = oBAPICtrl.DimAs(oDocument, "CheckOutView2", "DocumentFile")
    oDocumentFile("WSAPPLICATION") = "DOC"
    oDocument.CheckOutView2 OriginalPath:="D:\test\", _
    DocumentFile:=oDocumentFile, _
    DOCUMENTFILES:=oDocumentFiles, _
    DocumentStructure:=oDocumentStructure, Return:=oReturn
    MsgBox oDocumentFiles.RowCount
    MsgBox oReturn("MESSAGE")
    Set oConnection = Nothing
    Set oBAPICtrl = Nothing
    End Sub
    I have the newest librfc32.dll in my System32 folder (Version 7110.0.46.6208). Where is the problem? Can it be a problem on the application server or something?
    Thank you,
    Thomander

    Hi Thomander,
    Note 885058 indicates that the problem is resolved with the latest    
    RFC and ICU files. The RFC library is contained in the RFCSDK, please 
    ensure that you are using the latest SDK, it can be downloaded from the
    following location:                                                                               
    Support Packages and Patches                                          
        ==> Additional Components                                         
              ==> SAP NW RFC SDK                                          
                   ==> SAP NW RFC SDK 7.10                                
                        ==>Your OS                                                                               
    ICU libraries can be downloaded from service market place as part of  
    sap kernel. There are contained in the complete package sapexe.car    
    & in a seperate package UCLIB.sar                                     
    -> service.sap.com/patches                                           
    -> Entry by application group                                         
    -> additional component                                              
    -> SAP Kernel [ select the correct versions] & download the file                                                                               
    The naming convention of the library files varies depending on the    
    operating system, they may be called                                  
    "libicuuc.so.26", "libicuuc.sl.26", "libicuuc26.so" or "icuuc26.dll", 
    for example. You must therefore adjust the unpacking statements       
    accordingly.                                                                               
    Unpack the library to the temporary directory & then move it to the   
    kernel directory ("/usr/sap/<SID>/SYS/exe/run").                                                                               
    Caution: Make sure that the libicu* libraries do not overwrite any    
    existing files.                                                                               
    Once you are using the latest RFC and ICU files you should be ok.
    Maybe the information in the following link could also be useful for this kind of error:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/plm/i001Win32error+2
    Best regards,
    Christoph

  • SAPCAR

    Dear All,
    I try to uncar the files it show the error "Bus Error(Core Dumped).
    What is the problem?
    xxxxxxx:irdadm 8% SAPCAR -xvf SAPEXE_159-20001001.SAR
    SAPCAR: processing archive SAPEXE_159-20001001.SAR (version 2.01)
    x ABAP.pad
    x R3check
    x R3ta
    x R3trans
    x SAPCAR
    Bus Error (core dumped)
    Regards,
    Muthu

    Hi,
    whenever you are doing kernel upgrade and trying to uncar the files, then don't use SAPCAR of exe to extract it because when it uncar the kernel files then it gives new SAPCAR file which tried to overwrite present SAPCAR file but it is in use as you are using it.
    So, it is not able to overwrite it and through errors.
    So, copy the SAPCAR to some other directory and use it.
    By the way path to new SAPCAR on service market place is:
    Support Packaeges --> Entry by Application group --> Additional Components --> SAP Kernel --> <Select your kernel type > --> <select kernel version> ---> <select operationg systems> --> Database independent
    Thanks sunny

  • Long time Gentoo user on the fence...

    So, Gentoo's kind of fallen off the wagon. I don't have any problems with the compile times -- but I do have issues with compiling. I love portage, I love ebuilds, I love useflags. But it's all gotten so horribly broken lately that I'm strongly considering switching to a binary distro next time I reformat. I'm sick of dealing with arcane gcc errors that I can't trace back to anything or bizarre blocks and dependency breakage.
    I keep hearing, "well, if you like Gentoo's customability but you're sick of screwing with compiles, then switch to Arch."
    I want to know if they're right. I would like to give Arch a shot.
    But binary distros and me tend to not agree much of the time. It's not so much that their binary based -- I have no issues with binaries. I just don't like their methodology of "since you're using a binary distro, you must be a recent Windows convert and want the computer to hold your hand.". So I need to know some things from some users with first-hand experience.
    - Pacman & package selection: better than apt (please god say yes)? No dependency hell? Is it easy to switch to testing/unstable versions and back? Can I compile select things if I so choose? Is package selection as good as with Portage? Can I find smaller apps and libraries that are useful in a niche in the Pacman reps easily? (like Nitrogen, tint2, pypanel, etc.). It'd be REALLY annoying to have to hunt down 500 tar.gz and compile stuff -- it'd be like using Gentoo without Portage.
    - Kernel selection: Good selections for laptops or certain builds of computers (i.e AMD or Intel?), as opposed to a huge 120 MB kernel with every option enabled? Possibility of easily foregoing Pacman and letting people compile their own (i.e zen-sources, mm-patchset based kernels, etc.)?
    - Sensible defaults: None of this "you're forced to use Gnome with an ugly default themeset and you can't uninstall it" Ubuntu crap, I do hope. If I wanna use Openbox and KDM, I use Openbox and KDM.
    - Sensible core config file locations: This one is a big one for me. For Gentoo, all of the system config files/init scripts were easy to find (/etc/conf.d and /etc/init.d). I used Ubuntu for a while and the damn things were strewn all over the place (stuff like /etc/local/user/net/config/heresanotherdirforsomereason/symlinktohell/config makes me cry).
    - Hands-on-edness: I want to use bash. I want to get in and get a little bit dirty. I don't want GUI-based Windows-esque nonsense ALL of the time. This is my primary complaint for Ubuntu: it shields you for everything, so that you spend more time undoing it's "ease of use" automatic crap than you do actually using the system. I can forgo all of this if it's in Arch at all, right?
    I realize I'm being a bit preening and overbearing, but I just want something that doesn't break every 3rd package due to compile errors, but still offers a bit of leeway for experienced Linux users instead of this "let's make Linux more like Windows" idea that seems to be ever-so-pervasive in distros today. I really hope Arch can do this.

    mm23 wrote:.- Pacman & package selection: better than apt (please god say yes)? No dependency hell? Is it easy to switch to testing/unstable versions and back? Can I compile select things if I so choose? Is package selection as good as with Portage? Can I find smaller apps and libraries that are useful in a niche in the Pacman reps easily? (like Nitrogen, tint2, pypanel, etc.). It'd be REALLY annoying to have to hunt down 500 tar.gz and compile stuff -- it'd be like using Gentoo without Portage.
    It is better than apt. Dependency hell is a lot less painful then apt.
    You can't easily switch to testing and back, but Arch Testing and Gentoo/Debian Testing are very different. Currently all that's in Arch's Testing (besides all the Xorg 7.4 packages) is like really new versions of stuff that's a bit too unstable to go into Core/Extra so unless you want to help test stuff, or really want Xorg 7.4, there's no real reason to run Arch's Testing branch.
    You can easily compile stuff if you choose with the abs (think of it like FreeBSD's ports tree).
    I'd say with the AUR, package selection is better than in Portage, without the AUR, not so much...and yes, all those small things you mentioned...I know for a fact they're either in the AUR, Extra or Community.
    mm23 wrote:- Kernel selection: Good selections for laptops or certain builds of computers (i.e AMD or Intel?), as opposed to a huge 120 MB kernel with every option enabled? Possibility of easily foregoing Pacman and letting people compile their own (i.e zen-sources, mm-patchset based kernels, etc.)?
    The default kernel is VERY small, but it has most of the stuff you'd want enabled, however, there are plenty of extra kernels in the AUR. I believe Zen is in there, the latest 2.6.28 RC is in there and i think mm is in there among others.
    mm23 wrote:- Sensible defaults: None of this "you're forced to use Gnome with an ugly default themeset and you can't uninstall it" Ubuntu crap, I do hope. If I wanna use Openbox and KDM, I use Openbox and KDM.
    Everything is configurable and nothing is set unless you explicitly set it for the most part.
    mm23 wrote:- Sensible core config file locations: This one is a big one for me. For Gentoo, all of the system config files/init scripts were easy to find (/etc/conf.d and /etc/init.d). I used Ubuntu for a while and the damn things were strewn all over the place (stuff like /etc/local/user/net/config/heresanotherdirforsomereason/symlinktohell/config makes me cry).
    Most config files are in /etc or a subdirectory of /etc (usually only one layer down) and all init scripts are in /etc/rc.d
    mm23 wrote:- Hands-on-edness: I want to use bash. I want to get in and get a little bit dirty. I don't want GUI-based Windows-esque nonsense ALL of the time. This is my primary complaint for Ubuntu: it shields you for everything, so that you spend more time undoing it's "ease of use" automatic crap than you do actually using the system. I can forgo all of this if it's in Arch at all, right?
    Everything is manual. I'd consider Arch (in this case) a cross between Gentoo and Debian
    mm23 wrote:I realize I'm being a bit preening and overbearing, but I just want something that doesn't break every 3rd package due to compile errors, but still offers a bit of leeway for experienced Linux users instead of this "let's make Linux more like Windows" idea that seems to be ever-so-pervasive in distros today. I really hope Arch can do this.
    Just a suggestion, you should really Just Try Arch and browse the AUR and do some package searches. You'd probably have found all the answers to these questions yourself if you did that (mind you, i'm not complaining).

  • "You are not authorized to download selected object" when trying to download SAP Kernel 7.21 EXT PL 500 with DL

    Hello everyone,
    Yesterday (April 30, 2015) SAP released the new patch 500 for SAP KERNEL 7.21 EXT 64-bit.
    I am using Download Manager and I was able to download the Kernel Part II (DB-Dependent) .SAR file and other files as you can see in the screenshot, but for the Kernel Part I and disp+work files I get the error: "You are not authorized to download selected object".
    On the other hand, I am able to download older versions of the Kernel Part I (SAPEXE_XXX.SAR).
    Is this a technical problem on SAP side (SMP)? Did anyone encounter the same issue and found a solution?
    Thanks.
    BR,
    Michel

    Hello Michel,
    Kernel Patch 500 is yet to release, to the customer.
    Have a look at the below blog.
    Surprise for Kernel version 7.21 patch level 500 !
    Hope the above one helps.
    regards,
    pavan

  • Kernel Panic Followed by Selective Application Crashes

    I recently encountered a problem with my 15-inch MacBook Pro that I have not been able to solve. I was attempting to log-in to a university wireless network as a guest (University of Virginia) with the help of local staff. I turned on Aiport, located the network, and connected briefly (4-5 seconds). This was followed by a rapid disconnect/connect fluttering that produced the following series of messages on the system.log:
    Mar 3 15:58:00 david-gants-computer mDNSResponder: Repeated transitions for interface en1 (FE80:0000:0000:0000:0217:F2FF:FE44:0F44); delaying packets by 5 seconds
    Mar 3 15:58:00 david-gants-computer mDNSResponder: Repeated transitions for interface en1 (169.254.42.220); delaying packets by 5 seconds
    Mar 3 15:58:20 david-gants-computer mDNSResponder: Repeated transitions for interface en1 (FE80:0000:0000:0000:0217:F2FF:FE44:0F44); delaying packets by 5 seconds
    Mar 3 15:58:20 david-gants-computer mDNSResponder: Repeated transitions for interface en1 (169.254.42.220); delaying packets by 5 seconds
    Mar 3 15:58:42 david-gants-computer mDNSResponder: Repeated transitions for interface en1 (FE80:0000:0000:0000:0217:F2FF:FE44:0F44); delaying packets by 5 seconds
    etc.....
    We tried turning Aiport off, then on, but the same phenomenon occured. At this point I experienced a kernel panic:
    panic(cpu 0 caller 0x001A3135): Unresolved kernel trap (CPU 0, Type 14=page fault), registers:
    CR0: 0x80010033, CR2: 0x00000008, CR3: 0x00da6000, CR4: 0x000006e0
    EAX: 0x00000000, EBX: 0x02d9f540, ECX: 0x02be2da4, EDX: 0x02be2dac
    CR2: 0x00000008, EBP: 0x1403bcc8, ESI: 0x02be2da8, EDI: 0x00000001
    EFL: 0x00010006, EIP: 0x0013ee1e, CS: 0x00000008, DS: 0x14030010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x1403baf8 : 0x128d1f (0x3c9540 0x1403bb1c 0x131df4 0x0)
    0x1403bb38 : 0x1a3135 (0x3cf1f4 0x0 0xe 0x3cea24)
    0x1403bc48 : 0x19a8d4 (0x1403bc58 0x0 0xe 0x48)
    0x1403bcc8 : 0x1267a4 (0x2be2da4 0x2d9f540 0x1403bcf8 0x121ae3)
    0x1403bcf8 : 0x1268f4 (0x2d9f528 0x2be2d68 0x400 0x1344c000)
    0x1403bd78 : 0x14a189 (0x24ccf78 0x4f03 0x3aa27b4 0x3aa27c8)
    0x1403bdb8 : 0x12b4da (0x25ceda8 0x3aa2798 0x0 0x0)
    0x1403bdf8 : 0x124b2b (0x25ced00 0x0 0x24 0x1403bedc)
    0x1403bf08 : 0x1955a1 (0x1403bf44 0x0 0x0 0x0)
    0x1403bfc8 : 0x19ad4e (0x2512654 0x0 0x8 0x2512654) No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xb009dcd8
    Kernel version:
    Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386
    When this happened, I was also running MS Word and two small utilities (Space, for multiple desktops, and smcFanControl). None of these apps had caused problems before.
    When I rebooted, things appeared to run smoothly. The OS loads without a hiccup and I can't see any error messages in the system log. However, from this point on I have not been able to load any MS Office applications (Word, Excel, Entourage, etc.), Internet Explorer, or Mozilla/Firefox. They initiate for a few seconds, but then crash. Other apps still load smoothly, including fairly cpu-intensive ones such as Acrobat Professional 6.0 and the oXygen XML editor, as well as the Safari browser. Cold reboots don't make any difference at all.
    I suspected Airport might be the problem, but it works fine on all other networks I to which I subsequently connected--only the UVa net continued producing the repeated transition phenonenon.
    I also ran memtest with no problems detected.
    Has anyone seen a similar problem or have thoughts on how to un-lobotomize my machine?
    Thanks in advance.
    MacBook Pro 15-inch   Mac OS X (10.4.8)  
    MacBook Pro 15-inch   Mac OS X (10.4.8)  

    First off, here is my kernel panic FAQ*:
    http://www.macmaps.com/kernelpanic.html
    Good books including Mac OS X Tiger: The Missing Manual and The Little Mac Book: Tiger Edition by Robin Williams (not the actor!). Both these authors have great books regarding Mac OS X and other parts of Mac OS X.
    * Links to my pages may give me compensation.

  • Select query hangs on Oracle 9i but works fine in Oracle 8i

    Hi Guys,
    For a recap of what happened:
    Migrated from Oracle 8i to 9i for a customer, all queries and statements are working fine, except for this particular query. If i run the same query on 8i it works like a charm.
    In 9i, if i remove even one field from the query, it works else it just hangs.
    Any idea, any one???
    **Added 2:09PM: When i removed some ltrim and rtrim that i believe not necessary, the query works fine, is there any field length limitation in Oracle 9i???
    Below is the query:
    set pagesize 100;
    set linesize 1024;
    set heading off;
    set echo off;
    spool scb_xfer_hdr_npsx;
    select ltrim(rtrim(to_char(hdr_srl_no,'99'))) || ';' ||
    'P' || ';' || rtrim(ltrim(payment_type))|| ';'|| ';' ||
    ltrim(rtrim(our_ref_no))|| ';'|| 'MY;KUL;' ||
         rtrim(ltrim(debit_account_no))||';'||
    rtrim(ltrim(to_char(scb_batch_date,'YYYY/MM/DD'))) || ';'|| ';' ||
    rtrim(ltrim(payee_name_1))|| ';'|| ';' ||
    rtrim(ltrim(address_1))|| ';'||
    rtrim(ltrim(address_2))|| ';'||
    rtrim(ltrim(address_3))|| ';'|| ';' ||
    rtrim(ltrim(payee_name_11))|| ';' ||
    rtrim(ltrim(address_11))|| ';'||
    rtrim(ltrim(address_21))|| ';'||
    rtrim(ltrim(address_31))|| ';'|| ';' ||
         rtrim(ltrim(payee_bank_code)) || ';' || ';' ||
         rtrim(ltrim(payee_account_no)) || ';' ||
         rtrim(ltrim(our_ref_no2)) || ';' || ';' ||
         rtrim(ltrim(our_ref_no2)) || ';' || ';' || ';' || ';' ||
    rtrim(ltrim(payment_currency))|| ';'||
    rtrim(ltrim(to_char(payment_amount,'9999999999.99')))|| ';'||
         'C;P;;' || rtrim(ltrim(payee_bank_name))|| ';' ||
         'KL;;' ||
         rtrim(ltrim(delivery_method)) || ';' ||
         rtrim(ltrim(delivery_by)) || ';' ||
         rtrim(ltrim(counter_pickup_location))
    from scb_xfer_hdr_npsx
    order by hdr_srl_no;
    select distinct 'T;' || ltrim(rtrim(to_char(total_payments))) || ';' ||
         ltrim(rtrim(to_char(total_pay_amount,'9999999999.99')))
    from scb_xfer_hdr_npsx;
    spool off;
    spool scb_xfer_dtl_npsx;
    select ltrim(rtrim(to_char(srl_no,'99'))) || ';' || 'I' || ';' ||
         ltrim(rtrim(doc_no)) || ';' || ltrim(rtrim(to_char(doc_date,'yyyy/mm/dd'))) || ';' ||
         ltrim(rtrim(doc_description)) || ';' ||
         ltrim(rtrim(to_char(doc_amount,'9999999999.99')))
    from scb_xfer_dtl_npsx
    order by srl_no;
    spool off;
    set echo on;
    exit;
    Message was edited by:
    Logesh

    Hi,
    are you still on a 32bit kernel on AIX?
    How are the Form4.5 connected, are they on the same box, or are they using the forms GUI?
    What about the statistics, how do you collect them? Is the database set to the COST based optimizer?
    Do you use dbms_utility.analyze_schema, or this:
    exec dbms_stats.gather_schema_stats( -
    ownname => '$OWNER', -
    estimate_percent => 10, -
    granularity => 'ALL', -
    method_opt => 'FOR ALL COLUMNS SIZE 75', -
    degree => NULL , -
    options => 'GATHER $GATH', -
    cascade => TRUE -
    What does it mean the SQL hangs? Can you cancel the query? Do you have to kill the session? Do you use any diagnostic tools like TOAD to trace the session, see what it is doing? Usually if this is a performance/tuning issue, you will see the session is not dead, but you will see advancing reads.
    Regards,
    Richard.

  • Intel wireless iwl3945 does not work after kernel upgrade?

    My wireless ethernet will not longer connect to access points. I am on a Toshiba Tecra M5-S4332 running kernel 2.6.39.2-1 with linux-firmware 20110512-2 installed. This problem seemed to have started once I upgraded the kernel from 2.6.39.1-1, but I have tried downgrading (back to 2.6.38) and upgrading (to 3.0-rc6) the kernel to no avail. Other possibly relevant packages that were upgraded at that system upgrade were module-init-tools (3.13-1 -> 3.16-1), mkinitcpio (0.6.14-1 -> 0.6.15-1), nvidia-utils (270.41.19-1 -> 275.09.07-1), nvidia (270.41.19-3 -> 275.09.07-1), and netcfg (2.5.5-1 -> 2.6.1-1).
    My complete dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (thomas@evey) (gcc version 4.6.0 20110603 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jun 27 21:26:22 CEST 2011
    [ 0.000000] Command line: root=/dev/sda3 ro
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 00000000000eee00 (reserved)
    [ 0.000000] BIOS-e820: 00000000000eee00 - 00000000000ef000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000000ef000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cff90000 (usable)
    [ 0.000000] BIOS-e820: 00000000cff90000 - 00000000d0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec28000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
    [ 0.000000] BIOS-e820: 00000000feda0000 - 00000000fedc0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffb00000 - 00000000ffc00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: TOSHIBA TECRA M/Portable PC, BIOS Version 3.40 05/28/2007
    [ 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 = 0xcff90 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-DFFFF uncachable
    [ 0.000000] E0000-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-back
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FEDA0000 mask FFFFE0000 write-back
    [ 0.000000] 1 base 0FFF00000 mask FFFF00000 write-protect
    [ 0.000000] 2 base 000000000 mask F80000000 write-back
    [ 0.000000] 3 base 080000000 mask FC0000000 write-back
    [ 0.000000] 4 base 0C0000000 mask FF0000000 write-back
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000cff90000
    [ 0.000000] 0000000000 - 00cfe00000 page 2M
    [ 0.000000] 00cfe00000 - 00cff90000 page 4k
    [ 0.000000] kernel direct mapping tables up to cff90000 @ cff8a000-cff90000
    [ 0.000000] RAMDISK: 37ddb000 - 37ff0000
    [ 0.000000] ACPI: RSDP 00000000000f01e0 00014 (v00 TOSHIB)
    [ 0.000000] ACPI: RSDT 00000000cff90000 0004C (v01 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: FACP 00000000cff90074 00084 (v02 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: DSDT 00000000cff900f8 07B63 (v02 TOSHIB A003B 20070222 MSFT 0100000E)
    [ 0.000000] ACPI: FACS 00000000000eee00 00040
    [ 0.000000] ACPI: SSDT 00000000cff97c5b 00306 (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.000000] ACPI: BOOT 00000000cff9004c 00028 (v01 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: APIC 00000000cff98813 00068 (v01 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: MCFG 00000000cff9887b 0003C (v01 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: HPET 00000000cff988b7 00038 (v01 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: TCPA 00000000cff988ef 00032 (v02 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: SLIC 00000000cff98921 00176 (v01 TOSHIB A003B 20060821 TASM 04010000)
    [ 0.000000] ACPI: SSDT 00000000cff98a97 00076 (v02 TOSHIB A003B 20060912 MSFT 0100000E)
    [ 0.000000] ACPI: SSDT 00000000cff98b0d 00327 (v02 TOSHIB A003B 20061102 MSFT 0100000E)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-00000000cff90000
    [ 0.000000] NUMA: Using 63 for the hash shift.
    [ 0.000000] Initmem setup node 0 0000000000000000-00000000cff90000
    [ 0.000000] NODE_DATA [00000000cff85000 - 00000000cff89fff]
    [ 0.000000] [ffffea0000000000-ffffea0002dfffff] PMD -> [ffff8800cc200000-ffff8800ceffffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[2] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x000cff90
    [ 0.000000] On node 0 totalpages: 851743
    [ 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: 11591 pages used for memmap
    [ 0.000000] DMA32 zone: 836169 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0xd808
    [ 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_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 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 - 00000000000ee000
    [ 0.000000] PM: Registered nosave memory: 00000000000ee000 - 00000000000ef000
    [ 0.000000] PM: Registered nosave memory: 00000000000ef000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:2ec00000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff8800cfc00000 s83136 r8192 d23360 u1048576
    [ 0.000000] pcpu-alloc: s83136 r8192 d23360 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 840091
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: root=/dev/sda3 ro
    [ 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: 3347820k/3407424k available (4019k kernel code, 452k absent, 59152k reserved, 3335k data, 712k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, 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 27262976 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 1995.050 MHz processor.
    [ 0.003339] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.35 BogoMIPS (lpj=6650166)
    [ 0.003494] pid_max: default: 32768 minimum: 301
    [ 0.003694] Security Framework initialized
    [ 0.003778] AppArmor: AppArmor disabled by boot time parameter
    [ 0.004309] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.009415] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.011099] Mount-cache hash table entries: 256
    [ 0.011683] Initializing cgroup subsys ns
    [ 0.011765] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.011858] Initializing cgroup subsys cpuacct
    [ 0.011970] Initializing cgroup subsys memory
    [ 0.012068] Initializing cgroup subsys devices
    [ 0.012147] Initializing cgroup subsys freezer
    [ 0.012223] Initializing cgroup subsys net_cls
    [ 0.012300] Initializing cgroup subsys blkio
    [ 0.012440] CPU: Physical Processor ID: 0
    [ 0.012517] CPU: Processor Core ID: 0
    [ 0.012593] mce: CPU supports 6 MCE banks
    [ 0.012675] CPU0: Thermal monitoring handled by SMI
    [ 0.012681] using mwait in idle threads.
    [ 0.014125] ACPI: Core revision 20110316
    [ 0.018114] ftrace: allocating 15965 entries in 63 pages
    [ 0.020057] Setting APIC routing to flat
    [ 0.020510] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.056062] CPU0: Intel(R) Core(TM)2 CPU T7200 @ 2.00GHz stepping 06
    [ 0.056663] Performance Events: PEBS fmt0-, Core2 events, Intel PMU driver.
    [ 0.056663] PEBS disabled due to CPU errata.
    [ 0.056663] ... version: 2
    [ 0.056663] ... bit width: 40
    [ 0.056663] ... generic registers: 2
    [ 0.056663] ... value mask: 000000ffffffffff
    [ 0.056663] ... max period: 000000007fffffff
    [ 0.056663] ... fixed-purpose events: 3
    [ 0.056663] ... event mask: 0000000700000003
    [ 0.073453] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.100008] Booting Node 0, Processors #1 Ok.
    [ 0.100146] smpboot cpu 1: start_ip = 9a000
    [ 0.006666] CPU1: Thermal monitoring handled by SMI
    [ 0.196691] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.203326] Brought up 2 CPUs
    [ 0.203404] Total of 2 processors activated (7983.62 BogoMIPS).
    [ 0.204795] devtmpfs: initialized
    [ 0.207100] PM: Registering ACPI NVS region at eee00 (512 bytes)
    [ 0.207684] print_constraints: dummy:
    [ 0.207851] NET: Registered protocol family 16
    [ 0.208056] ACPI: bus type pci registered
    [ 0.208302] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.208397] PCI: not using MMCONFIG
    [ 0.208471] PCI: Using configuration type 1 for base access
    [ 0.209016] bio: create slab <bio-0> at 0
    [ 0.211054] ACPI: EC: Look up EC in DSDT
    [ 0.212357] ACPI: Actual Package length (12) is larger than NumElements field (4), truncated
    [ 0.212511]
    [ 0.214491] ACPI: SSDT 00000000cff982a3 000F3 (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.214999] ACPI: Dynamic OEM Table Load:
    [ 0.215194] ACPI: SSDT (null) 000F3 (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.215455] ACPI: SSDT 00000000cff9840c 0034E (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.215954] ACPI: Dynamic OEM Table Load:
    [ 0.216148] ACPI: SSDT (null) 0034E (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.216495] ACPI: SSDT 00000000cff98396 00076 (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.216949] ACPI: Dynamic OEM Table Load:
    [ 0.217144] ACPI: SSDT (null) 00076 (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.217381] ACPI: SSDT 00000000cff9875a 00079 (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.217882] ACPI: Dynamic OEM Table Load:
    [ 0.218158] ACPI: SSDT (null) 00079 (v02 TOSHIB A003B 20060907 MSFT 0100000E)
    [ 0.218524] ACPI: Interpreter enabled
    [ 0.218602] ACPI: (supports S0 S3 S4 S5)
    [ 0.218924] ACPI: Using IOAPIC for interrupt routing
    [ 0.219016] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.227009] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in ACPI motherboard resources
    [ 0.271058] ACPI: ACPI Dock Station Driver: 2 docks/bays found
    [ 0.271139] HEST: Table not found.
    [ 0.271215] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.271475] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.271657] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.271660] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.271663] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.271666] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff] (ignored)
    [ 0.271668] pci_root PNP0A08:00: host bridge window [mem 0xd0000000-0xefffffff] (ignored)
    [ 0.271671] pci_root PNP0A08:00: host bridge window [mem 0xf4000000-0xfebfffff] (ignored)
    [ 0.271674] pci_root PNP0A08:00: host bridge window [mem 0xfec28000-0xfecfffff] (ignored)
    [ 0.271676] pci_root PNP0A08:00: host bridge window [mem 0xfed00400-0xfed13fff] (ignored)
    [ 0.271679] pci_root PNP0A08:00: host bridge window [mem 0xfed1a000-0xfed1bfff] (ignored)
    [ 0.271681] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff] (ignored)
    [ 0.271684] pci_root PNP0A08:00: host bridge window [mem 0xfed90000-0xfed9ffff] (ignored)
    [ 0.271687] pci_root PNP0A08:00: host bridge window [mem 0xfedc0000-0xfedfffff] (ignored)
    [ 0.271689] pci_root PNP0A08:00: host bridge window [mem 0xfee01000-0xffafffff] (ignored)
    [ 0.271692] pci_root PNP0A08:00: host bridge window [mem 0xffc00000-0xffdfffff] (ignored)
    [ 0.271704] pci 0000:00:00.0: [8086:27a0] type 0 class 0x000600
    [ 0.271752] pci 0000:00:01.0: [8086:27a1] type 1 class 0x000604
    [ 0.271790] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.271794] pci 0000:00:01.0: PME# disabled
    [ 0.271860] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
    [ 0.271882] pci 0000:00:1b.0: reg 10: [mem 0x00000000-0x00003fff 64bit]
    [ 0.271965] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.271970] pci 0000:00:1b.0: PME# disabled
    [ 0.271999] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
    [ 0.272083] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.272088] pci 0000:00:1c.0: PME# disabled
    [ 0.272120] pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
    [ 0.272205] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.272210] pci 0000:00:1c.1: PME# disabled
    [ 0.272243] pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
    [ 0.272328] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.272333] pci 0000:00:1c.2: PME# disabled
    [ 0.272367] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
    [ 0.272424] pci 0000:00:1d.0: reg 20: [io 0xafe0-0xafff]
    [ 0.272464] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
    [ 0.272521] pci 0000:00:1d.1: reg 20: [io 0xaf80-0xaf9f]
    [ 0.272561] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
    [ 0.272617] pci 0000:00:1d.2: reg 20: [io 0xaf60-0xaf7f]
    [ 0.272657] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
    [ 0.272713] pci 0000:00:1d.3: reg 20: [io 0xaf40-0xaf5f]
    [ 0.272765] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
    [ 0.272790] pci 0000:00:1d.7: reg 10: [mem 0xffaffc00-0xffafffff]
    [ 0.272879] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.272885] pci 0000:00:1d.7: PME# disabled
    [ 0.272909] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [ 0.272995] pci 0000:00:1f.0: [8086:27b9] type 0 class 0x000601
    [ 0.273109] pci 0000:00:1f.0: quirk: [io 0xd800-0xd87f] claimed by ICH6 ACPI/GPIO/TCO
    [ 0.273206] pci 0000:00:1f.0: quirk: [io 0xeec0-0xeeff] claimed by ICH6 GPIO
    [ 0.273322] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f)
    [ 0.273466] pci 0000:00:1f.2: [8086:27c4] type 0 class 0x000101
    [ 0.273487] pci 0000:00:1f.2: reg 10: [io 0xaf38-0xaf3f]
    [ 0.273500] pci 0000:00:1f.2: reg 14: [io 0xaf34-0xaf37]
    [ 0.273512] pci 0000:00:1f.2: reg 18: [io 0xaf28-0xaf2f]
    [ 0.273524] pci 0000:00:1f.2: reg 1c: [io 0xaf24-0xaf27]
    [ 0.273536] pci 0000:00:1f.2: reg 20: [io 0xaf10-0xaf1f]
    [ 0.273581] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.273586] pci 0000:00:1f.2: PME# disabled
    [ 0.273651] pci 0000:01:00.0: [10de:01da] type 0 class 0x000300
    [ 0.273667] pci 0000:01:00.0: reg 10: [mem 0xfd000000-0xfdffffff]
    [ 0.273685] pci 0000:01:00.0: reg 14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.273703] pci 0000:01:00.0: reg 1c: [mem 0xfc000000-0xfcffffff 64bit]
    [ 0.273725] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.273775] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.273876] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.273947] pci 0000:00:01.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.273950] pci 0000:00:01.0: bridge window [mem 0xfc000000-0xfdffffff]
    [ 0.273955] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.274108] pci 0000:02:00.0: [8086:109a] type 0 class 0x000200
    [ 0.274139] pci 0000:02:00.0: reg 10: [mem 0xffde0000-0xffdfffff]
    [ 0.274181] pci 0000:02:00.0: reg 18: [io 0xcfe0-0xcfff]
    [ 0.274322] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.274330] pci 0000:02:00.0: PME# disabled
    [ 0.274367] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.274526] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.274597] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.274602] pci 0000:00:1c.0: bridge window [mem 0xffd00000-0xffdfffff]
    [ 0.274610] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.274672] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.274743] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.274748] pci 0000:00:1c.1: bridge window [mem 0xfa000000-0xfbffffff]
    [ 0.274756] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.274876] pci 0000:05:00.0: [8086:4222] type 0 class 0x000280
    [ 0.274932] pci 0000:05:00.0: reg 10: [mem 0xffcff000-0xffcfffff]
    [ 0.276851] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
    [ 0.276864] pci 0000:05:00.0: PME# disabled
    [ 0.276934] pci 0000:05:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.277043] pci 0000:00:1c.2: PCI bridge to [bus 05-05]
    [ 0.277114] pci 0000:00:1c.2: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.277119] pci 0000:00:1c.2: bridge window [mem 0xffc00000-0xffcfffff]
    [ 0.277127] pci 0000:00:1c.2: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.277197] pci 0000:06:0b.0: [104c:8039] type 2 class 0x000607
    [ 0.277223] pci 0000:06:0b.0: reg 10: [mem 0x00000000-0x00000fff]
    [ 0.277252] pci 0000:06:0b.0: supports D1 D2
    [ 0.277254] pci 0000:06:0b.0: PME# supported from D0 D1 D2 D3hot
    [ 0.277261] pci 0000:06:0b.0: PME# disabled
    [ 0.277286] pci 0000:06:0b.1: [104c:803a] type 0 class 0x000c00
    [ 0.277312] pci 0000:06:0b.1: reg 10: [mem 0x00000000-0x000007ff]
    [ 0.277327] pci 0000:06:0b.1: reg 14: [mem 0x00000000-0x00003fff]
    [ 0.277418] pci 0000:06:0b.1: supports D1 D2
    [ 0.277421] pci 0000:06:0b.1: PME# supported from D0 D1 D2 D3hot
    [ 0.277427] pci 0000:06:0b.1: PME# disabled
    [ 0.277454] pci 0000:06:0b.3: [104c:803c] type 0 class 0x000805
    [ 0.277479] pci 0000:06:0b.3: reg 10: [mem 0x00000000-0x000000ff]
    [ 0.277580] pci 0000:06:0b.3: supports D1 D2
    [ 0.277582] pci 0000:06:0b.3: PME# supported from D0 D1 D2 D3hot
    [ 0.277588] pci 0000:06:0b.3: PME# disabled
    [ 0.277643] pci 0000:00:1e.0: PCI bridge to [bus 06-07] (subtractive decode)
    [ 0.277716] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.277722] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.277730] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.277733] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.277736] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode)
    [ 0.277790] pci_bus 0000:07: [bus 07-0a] partially hidden behind transparent bridge 0000:06 [bus 06-07]
    [ 0.277903] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.277967] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    [ 0.278039] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
    [ 0.278076] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXCB._PRT]
    [ 0.278108] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.MPEX._PRT]
    [ 0.278144] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
    [ 0.278295] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.278836] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 0.281796] ACPI: PCI Interrupt Link [LNKA] (IRQs *10)
    [ 0.282073] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *11)
    [ 0.282602] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *11)
    [ 0.283130] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *11)
    [ 0.283636] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 *11)
    [ 0.284164] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *11)
    [ 0.284691] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *11)
    [ 0.285223] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11)
    [ 0.285810] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.285895] vgaarb: loaded
    [ 0.286058] PCI: Using ACPI for IRQ routing
    [ 0.286126] PCI: pci_cache_line_size set to 64 bytes
    [ 0.286226] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    [ 0.286229] reserve RAM buffer: 00000000cff90000 - 00000000cfffffff
    [ 0.286371] NetLabel: Initializing
    [ 0.286437] NetLabel: domain hash size = 128
    [ 0.286504] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.286586] NetLabel: unlabeled traffic allowed by default
    [ 0.286664] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.286739] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.287010] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.296665] Switching to clocksource hpet
    [ 0.299803] Switched to NOHz mode on CPU #0
    [ 0.299891] Switched to NOHz mode on CPU #1
    [ 0.304354] pnp: PnP ACPI init
    [ 0.304444] ACPI: bus type pnp registered
    [ 0.305074] pnp 00:00: [mem 0x00000000-0x0009ffff]
    [ 0.305077] pnp 00:00: [mem 0x000e0000-0x000fffff]
    [ 0.305079] pnp 00:00: [mem 0x00100000-0xcff8ffff]
    [ 0.305081] pnp 00:00: [mem 0xcff90000-0xcff9ffff]
    [ 0.305084] pnp 00:00: [mem 0xcffa0000-0xcfffffff]
    [ 0.305086] pnp 00:00: [mem 0xfec00000-0xfec27fff]
    [ 0.305088] pnp 00:00: [mem 0xfed14000-0xfed19fff]
    [ 0.305090] pnp 00:00: [mem 0xfed1c000-0xfed1ffff]
    [ 0.305092] pnp 00:00: [mem 0xfed20000-0xfed3ffff]
    [ 0.305094] pnp 00:00: [mem 0xfed45000-0xfed8ffff]
    [ 0.305096] pnp 00:00: [mem 0xfeda0000-0xfedbffff]
    [ 0.305098] pnp 00:00: [mem 0xfee00000-0xfee00fff]
    [ 0.305100] pnp 00:00: [mem 0xffb00000-0xffbfffff]
    [ 0.305102] pnp 00:00: [mem 0xffe00000-0xffffffff]
    [ 0.305176] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.305248] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.305318] system 00:00: [mem 0x00100000-0xcff8ffff] could not be reserved
    [ 0.305389] system 00:00: [mem 0xcff90000-0xcff9ffff] has been reserved
    [ 0.305459] system 00:00: [mem 0xcffa0000-0xcfffffff] has been reserved
    [ 0.305530] system 00:00: [mem 0xfec00000-0xfec27fff] could not be reserved
    [ 0.305600] system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
    [ 0.305671] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.305741] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.305812] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.305882] system 00:00: [mem 0xfeda0000-0xfedbffff] has been reserved
    [ 0.305952] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.306023] system 00:00: [mem 0xffb00000-0xffbfffff] has been reserved
    [ 0.306097] system 00:00: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.306169] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.320363] pnp 00:01: [mem 0xf0000000-0xf3ffffff]
    [ 0.320409] system 00:01: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.320482] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.346696] pnp 00:02: [bus 00-ff]
    [ 0.346698] pnp 00:02: [io 0x0cf8-0x0cff]
    [ 0.346701] pnp 00:02: [io 0x0000-0x0cf7 window]
    [ 0.346703] pnp 00:02: [io 0x0d00-0xffff window]
    [ 0.346705] pnp 00:02: [mem 0x000a0000-0x000bffff window]
    [ 0.346708] pnp 00:02: [mem 0x000d0000-0x000dffff window]
    [ 0.346710] pnp 00:02: [mem 0xd0000000-0xefffffff window]
    [ 0.346712] pnp 00:02: [mem 0xf4000000-0xfebfffff window]
    [ 0.346714] pnp 00:02: [mem 0xfec28000-0xfecfffff window]
    [ 0.346717] pnp 00:02: [mem 0xfed00400-0xfed13fff window]
    [ 0.346719] pnp 00:02: [mem 0xfed1a000-0xfed1bfff window]
    [ 0.346721] pnp 00:02: [mem 0xfed40000-0xfed44fff window]
    [ 0.346724] pnp 00:02: [mem 0xfed90000-0xfed9ffff window]
    [ 0.346726] pnp 00:02: [mem 0xfedc0000-0xfedfffff window]
    [ 0.346728] pnp 00:02: [mem 0xfee01000-0xffafffff window]
    [ 0.346730] pnp 00:02: [mem 0xffc00000-0xffdfffff window]
    [ 0.346792] pnp 00:02: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.346941] pnp 00:03: [io 0x0000-0x000f]
    [ 0.346943] pnp 00:03: [io 0x0081-0x0083]
    [ 0.346945] pnp 00:03: [io 0x0087]
    [ 0.346947] pnp 00:03: [io 0x0089-0x008b]
    [ 0.346949] pnp 00:03: [io 0x008f]
    [ 0.346951] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.346953] pnp 00:03: [dma 4]
    [ 0.346985] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.347002] pnp 00:04: [io 0x0061]
    [ 0.347037] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.347048] pnp 00:05: [io 0x00f0-0x00ff]
    [ 0.347060] pnp 00:05: [irq 13]
    [ 0.347091] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.347116] pnp 00:06: [io 0x0060]
    [ 0.347119] pnp 00:06: [io 0x0064]
    [ 0.347125] pnp 00:06: [irq 1]
    [ 0.347157] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.347183] pnp 00:07: [irq 12]
    [ 0.347219] pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active)
    [ 0.347230] pnp 00:08: [io 0x0070-0x0071]
    [ 0.347236] pnp 00:08: [irq 8]
    [ 0.347268] pnp 00:08: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.347639] pnp 00:09: [io 0x0080]
    [ 0.347641] pnp 00:09: [io 0x0084-0x0086]
    [ 0.347643] pnp 00:09: [io 0x0088]
    [ 0.347645] pnp 00:09: [io 0x008c-0x008e]
    [ 0.347647] pnp 00:09: [io 0x002e-0x002f]
    [ 0.347649] pnp 00:09: [io 0x0062]
    [ 0.347650] pnp 00:09: [io 0x0066]
    [ 0.347652] pnp 00:09: [io 0x0480-0x048f]
    [ 0.347654] pnp 00:09: [io 0xe000-0xe07f]
    [ 0.347656] pnp 00:09: [io 0xe080-0xe0ff]
    [ 0.347658] pnp 00:09: [io 0xe400-0xe47f]
    [ 0.347660] pnp 00:09: [io 0xe480-0xe4ff]
    [ 0.347662] pnp 00:09: [io 0xe800-0xe87f]
    [ 0.347664] pnp 00:09: [io 0xe880-0xe8ff]
    [ 0.347666] pnp 00:09: [io 0xec00-0xec7f]
    [ 0.347667] pnp 00:09: [io 0xec80-0xecff]
    [ 0.347669] pnp 00:09: [io 0xd800-0xd87f]
    [ 0.347671] pnp 00:09: [io 0xd880-0xd89f]
    [ 0.347673] pnp 00:09: [io 0xeeb0-0xeebf]
    [ 0.347675] pnp 00:09: [io 0xeec0-0xeeff]
    [ 0.347677] pnp 00:09: [io 0x0690-0x06ff]
    [ 0.347679] pnp 00:09: [io 0x0010-0x001f]
    [ 0.347681] pnp 00:09: [io 0x0024-0x0025]
    [ 0.347683] pnp 00:09: [io 0x0028-0x0029]
    [ 0.347685] pnp 00:09: [io 0x002c-0x002d]
    [ 0.347686] pnp 00:09: [io 0x0030-0x0031]
    [ 0.347692] pnp 00:09: [io 0x0034-0x0035]
    [ 0.347694] pnp 00:09: [io 0x0038-0x0039]
    [ 0.347696] pnp 00:09: [io 0x003c-0x003d]
    [ 0.347698] pnp 00:09: [io 0x0050-0x0053]
    [ 0.347700] pnp 00:09: [io 0x0063]
    [ 0.347701] pnp 00:09: [io 0x0065]
    [ 0.347703] pnp 00:09: [io 0x0072-0x0077]
    [ 0.347705] pnp 00:09: [io 0x0090-0x009f]
    [ 0.347707] pnp 00:09: [io 0x00a4-0x00a5]
    [ 0.347709] pnp 00:09: [io 0x00a8-0x00a9]
    [ 0.347711] pnp 00:09: [io 0x00ac-0x00ad]
    [ 0.347713] pnp 00:09: [io 0x00b0-0x00b5]
    [ 0.347715] pnp 00:09: [io 0x00b8-0x00b9]
    [ 0.347717] pnp 00:09: [io 0x00bc-0x00bd]
    [ 0.347719] pnp 00:09: [io 0x04d0-0x04d1]
    [ 0.347814] system 00:09: [io 0x0480-0x048f] has been reserved
    [ 0.347884] system 00:09: [io 0xe000-0xe07f] has been reserved
    [ 0.347954] system 00:09: [io 0xe080-0xe0ff] has been reserved
    [ 0.348023] system 00:09: [io 0xe400-0xe47f] has been reserved
    [ 0.348092] system 00:09: [io 0xe480-0xe4ff] has been reserved
    [ 0.348161] system 00:09: [io 0xe800-0xe87f] has been reserved
    [ 0.348231] system 00:09: [io 0xe880-0xe8ff] has been reserved
    [ 0.348300] system 00:09: [io 0xec00-0xec7f] has been reserved
    [ 0.348372] system 00:09: [io 0xec80-0xecff] has been reserved
    [ 0.348442] system 00:09: [io 0xd800-0xd87f] has been reserved
    [ 0.348511] system 00:09: [io 0xd880-0xd89f] has been reserved
    [ 0.348580] system 00:09: [io 0xeeb0-0xeebf] has been reserved
    [ 0.348649] system 00:09: [io 0xeec0-0xeeff] has been reserved
    [ 0.348719] system 00:09: [io 0x0690-0x06ff] has been reserved
    [ 0.348790] system 00:09: [io 0x04d0-0x04d1] has been reserved
    [ 0.348860] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.373796] pnp 00:0a: [mem 0xfed40000-0xfed44fff]
    [ 0.373798] pnp 00:0a: [io 0x004e-0x004f]
    [ 0.373800] pnp 00:0a: [io 0x0680-0x068f]
    [ 0.373836] pnp 00:0a: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
    [ 0.373854] pnp 00:0b: [mem 0xfed00000-0xfed003ff]
    [ 0.373888] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.400457] pnp 00:0c: [io 0x03f8-0x03ff]
    [ 0.400464] pnp 00:0c: [irq 4]
    [ 0.427076] pnp 00:0c: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.453838] pnp 00:0d: Plug and Play ACPI device, IDs PNP0401 (disabled)
    [ 0.480366] pnp: PnP ACPI: found 14 devices
    [ 0.480434] ACPI: ACPI bus type pnp unregistered
    [ 0.487001] pci 0000:00:1e.0: BAR 15: assigned [mem 0xd0000000-0xd3ffffff pref]
    [ 0.487085] pci 0000:00:1e.0: BAR 14: assigned [mem 0xd4000000-0xd9ffffff]
    [ 0.487157] pci 0000:00:1b.0: BAR 0: assigned [mem 0xda000000-0xda003fff 64bit]
    [ 0.487245] pci 0000:00:1b.0: BAR 0: set to [mem 0xda000000-0xda003fff 64bit] (PCI address [0xda000000-0xda003fff])
    [ 0.487331] pci 0000:00:1e.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.487402] pci 0000:00:1c.1: BAR 15: assigned [mem 0xda100000-0xda2fffff 64bit pref]
    [ 0.487485] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x20000)
    [ 0.487555] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.487623] pci 0000:00:01.0: bridge window [io disabled]
    [ 0.487693] pci 0000:00:01.0: bridge window [mem 0xfc000000-0xfdffffff]
    [ 0.487765] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.487849] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    [ 0.487918] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.487991] pci 0000:00:1c.0: bridge window [mem 0xffd00000-0xffdfffff]
    [ 0.488064] pci 0000:00:1c.0: bridge window [mem pref disabled]
    [ 0.488138] pci 0000:00:1c.1: PCI bridge to [bus 03-04]
    [ 0.488208] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.488282] pci 0000:00:1c.1: bridge window [mem 0xfa000000-0xfbffffff]
    [ 0.488355] pci 0000:00:1c.1: bridge window [mem 0xda100000-0xda2fffff 64bit pref]
    [ 0.488441] pci 0000:00:1c.2: PCI bridge to [bus 05-05]
    [ 0.488508] pci 0000:00:1c.2: bridge window [io disabled]
    [ 0.488581] pci 0000:00:1c.2: bridge window [mem 0xffc00000-0xffcfffff]
    [ 0.488654] pci 0000:00:1c.2: bridge window [mem pref disabled]
    [ 0.488730] pci 0000:06:0b.0: BAR 15: assigned [mem 0xd0000000-0xd3ffffff pref]
    [ 0.488811] pci 0000:06:0b.0: BAR 16: assigned [mem 0xd4000000-0xd7ffffff]
    [ 0.488882] pci 0000:06:0b.1: BAR 1: assigned [mem 0xd8000000-0xd8003fff]
    [ 0.488956] pci 0000:06:0b.1: BAR 1: set to [mem 0xd8000000-0xd8003fff] (PCI address [0xd8000000-0xd8003fff])
    [ 0.489041] pci 0000:06:0b.0: BAR 0: assigned [mem 0xd8004000-0xd8004fff]
    [ 0.489115] pci 0000:06:0b.0: BAR 0: set to [mem 0xd8004000-0xd8004fff] (PCI address [0xd8004000-0xd8004fff])
    [ 0.489200] pci 0000:06:0b.1: BAR 0: assigned [mem 0xd8005000-0xd80057ff]
    [ 0.489274] pci 0000:06:0b.1: BAR 0: set to [mem 0xd8005000-0xd80057ff] (PCI address [0xd8005000-0xd80057ff])
    [ 0.489358] pci 0000:06:0b.0: BAR 13: assigned [io 0x1000-0x10ff]
    [ 0.489427] pci 0000:06:0b.0: BAR 14: assigned [io 0x1400-0x14ff]
    [ 0.489497] pci 0000:06:0b.3: BAR 0: assigned [mem 0xd8005800-0xd80058ff]
    [ 0.489572] pci 0000:06:0b.3: BAR 0: set to [mem 0xd8005800-0xd80058ff] (PCI address [0xd8005800-0xd80058ff])
    [ 0.489656] pci 0000:06:0b.0: CardBus bridge to [bus 07-0a]
    [ 0.489724] pci 0000:06:0b.0: bridge window [io 0x1000-0x10ff]
    [ 0.489796] pci 0000:06:0b.0: bridge window [io 0x1400-0x14ff]
    [ 0.489871] pci 0000:06:0b.0: bridge window [mem 0xd0000000-0xd3ffffff pref]
    [ 0.489954] pci 0000:06:0b.0: bridge window [mem 0xd4000000-0xd7ffffff]
    [ 0.490039] pci 0000:00:1e.0: PCI bridge to [bus 06-07]
    [ 0.490108] pci 0000:00:1e.0: bridge window [io 0x1000-0x1fff]
    [ 0.490182] pci 0000:00:1e.0: bridge window [mem 0xd4000000-0xd9ffffff]
    [ 0.490254] pci 0000:00:1e.0: bridge window [mem 0xd0000000-0xd3ffffff pref]
    [ 0.490349] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.490420] pci 0000:00:01.0: setting latency timer to 64
    [ 0.490429] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 0.490502] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.490510] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    [ 0.490583] pci 0000:00:1c.1: setting latency timer to 64
    [ 0.490592] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.490665] pci 0000:00:1c.2: setting latency timer to 64
    [ 0.490673] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.490682] pci 0000:06:0b.0: enabling device (0000 -> 0003)
    [ 0.490756] pci 0000:06:0b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    [ 0.490832] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
    [ 0.490834] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff]
    [ 0.490837] pci_bus 0000:01: resource 1 [mem 0xfc000000-0xfdffffff]
    [ 0.490840] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.490842] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 0.490845] pci_bus 0000:02: resource 1 [mem 0xffd00000-0xffdfffff]
    [ 0.490847] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 0.490849] pci_bus 0000:03: resource 1 [mem 0xfa000000-0xfbffffff]
    [ 0.490852] pci_bus 0000:03: resource 2 [mem 0xda100000-0xda2fffff 64bit pref]
    [ 0.490855] pci_bus 0000:05: resource 1 [mem 0xffc00000-0xffcfffff]
    [ 0.490857] pci_bus 0000:06: resource 0 [io 0x1000-0x1fff]
    [ 0.490859] pci_bus 0000:06: resource 1 [mem 0xd4000000-0xd9ffffff]
    [ 0.490862] pci_bus 0000:06: resource 2 [mem 0xd0000000-0xd3ffffff pref]
    [ 0.490864] pci_bus 0000:06: resource 4 [io 0x0000-0xffff]
    [ 0.490867] pci_bus 0000:06: resource 5 [mem 0x00000000-0xfffffffff]
    [ 0.490869] pci_bus 0000:07: resource 0 [io 0x1000-0x10ff]
    [ 0.490872] pci_bus 0000:07: resource 1 [io 0x1400-0x14ff]
    [ 0.490874] pci_bus 0000:07: resource 2 [mem 0xd0000000-0xd3ffffff pref]
    [ 0.490877] pci_bus 0000:07: resource 3 [mem 0xd4000000-0xd7ffffff]
    [ 0.490963] NET: Registered protocol family 2
    [ 0.491248] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.492732] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.499013] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.499934] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.500037] TCP reno registered
    [ 0.500113] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.500238] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.500664] NET: Registered protocol family 1
    [ 0.500886] pci 0000:01:00.0: Boot video device
    [ 0.500912] PCI: CLS 32 bytes, default 64
    [ 0.500979] Unpacking initramfs...
    [ 0.535672] Freeing initrd memory: 2132k freed
    [ 0.536590] Simple Boot Flag value 0xb read from CMOS RAM was invalid
    [ 0.536662] Simple Boot Flag at 0x7c set to 0x1
    [ 0.537206] audit: initializing netlink socket (disabled)
    [ 0.537289] type=2000 audit(1310243563.536:1): initialized
    [ 0.537864] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.540443] VFS: Disk quotas dquot_6.5.2
    [ 0.540667] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.540930] msgmni has been set to 6542
    [ 0.541262] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.541390] io scheduler noop registered
    [ 0.541459] io scheduler deadline registered
    [ 0.541578] io scheduler cfq registered (default)
    [ 0.541776] pcieport 0000:00:01.0: setting latency timer to 64
    [ 0.541814] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.541889] pcieport 0000:00:1c.0: setting latency timer to 64
    [ 0.541942] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.542049] pcieport 0000:00:1c.1: setting latency timer to 64
    [ 0.542102] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
    [ 0.542218] pcieport 0000:00:1c.2: setting latency timer to 64
    [ 0.542271] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
    [ 0.542391] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
    [ 0.542462] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 0.542533] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
    [ 0.542560] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.542631] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.542704] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.542725] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
    [ 0.542799] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
    [ 0.542821] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
    [ 0.542891] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
    [ 0.542964] pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
    [ 0.543061] intel_idle: MWAIT substates: 0x22220
    [ 0.543063] intel_idle: does not run on family 6 model 15
    [ 0.543073] ERST: Table is not found!
    [ 0.543213] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.564034] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.757615] 00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.810208] Linux agpgart interface v0.103
    [ 0.810379] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.814755] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.814861] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.815104] mousedev: PS/2 mouse device common for all mice
    [ 0.815258] rtc_cmos 00:08: RTC can wake from S4
    [ 0.834943] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.836797] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
    [ 0.836896] rtc0: alarms up to one year, 114 bytes nvram, hpet irqs
    [ 0.836976] cpuidle: using governor ladder
    [ 0.837042] cpuidle: using governor menu
    [ 0.837348] TCP cubic registered
    [ 0.837415] NET: Registered protocol family 17
    [ 0.837490] Registering the dns_resolver key type
    [ 0.837659] PM: Hibernation image not present or could not be loaded.
    [ 0.837665] registered taskstats version 1
    [ 0.838340] rtc_cmos 00:08: setting system clock to 2011-07-09 20:32:44 UTC (1310243564)
    [ 0.838465] Initializing network drop monitor service
    [ 0.840013] Freeing unused kernel memory: 712k freed
    [ 0.840372] Write protecting the kernel read-only data: 6144k
    [ 0.840765] Freeing unused kernel memory: 60k freed
    [ 0.844098] Freeing unused kernel memory: 784k freed
    [ 0.855991] udevd[48]: starting version 171
    [ 0.939897] usbcore: registered new interface driver usbfs
    [ 0.940955] usbcore: registered new interface driver hub
    [ 0.941892] usbcore: registered new device driver usb
    [ 0.969586] SCSI subsystem initialized
    [ 0.976084] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.976200] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 0.976293] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 0.976297] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 0.976415] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    [ 0.983378] ehci_hcd 0000:00:1d.7: using broken periodic workaround
    [ 0.983460] ehci_hcd 0000:00:1d.7: debug port 1
    [ 0.987430] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    [ 0.987451] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xffaffc00
    [ 0.999115] libata version 3.00 loaded.
    [ 1.000039] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.000272] hub 1-0:1.0: USB hub found
    [ 1.000342] hub 1-0:1.0: 8 ports detected
    [ 1.002403] ata_piix 0000:00:1f.2: version 2.13
    [ 1.002506] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 1.002584] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ]
    [ 1.005170] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.153375] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 1.153767] scsi0 : ata_piix
    [ 1.153945] scsi1 : ata_piix
    [ 1.154611] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xaf10 irq 14
    [ 1.154682] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xaf18 irq 15
    [ 1.154800] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 1.154904] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.154923] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.155059] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.160051] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000afe0
    [ 1.160289] hub 2-0:1.0: USB hub found
    [ 1.160360] hub 2-0:1.0: 2 ports detected
    [ 1.160502] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 1.160577] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.160581] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.160655] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 1.180052] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000af80
    [ 1.180261] hub 3-0:1.0: USB hub found
    [ 1.180332] hub 3-0:1.0: 2 ports detected
    [ 1.180469] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 1.180544] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.180548] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.180622] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 1.206720] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000af60
    [ 1.206935] hub 4-0:1.0: USB hub found
    [ 1.207006] hub 4-0:1.0: 2 ports detected
    [ 1.207144] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    [ 1.207220] uhci_hcd 0000:00:1d.3: setting latency timer to 64
    [ 1.207224] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 1.207298] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 1.216718] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000af40
    [ 1.216926] hub 5-0:1.0: USB hub found
    [ 1.216996] hub 5-0:1.0: 2 ports detected
    [ 1.313799] ata1.00: ATA-7: TOSHIBA MK1234GSX, AH001M, max UDMA/100
    [ 1.313873] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 1.320342] ata1.00: configured for UDMA/100
    [ 1.320580] scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1234GS AH00 PQ: 0 ANSI: 5
    [ 1.331080] ata2.00: ATAPI: PIONEER DVD-RW DVR-K16S, 1.17, max UDMA/33
    [ 1.360458] ata2.00: configured for UDMA/33
    [ 1.383510] scsi 1:0:0:0: CD-ROM PIONEER DVD-RW DVR-K16S 1.17 PQ: 0 ANSI: 5
    [ 1.395021] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    [ 1.395170] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.395242] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.395268] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.409585] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.409668] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.410066] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.429811] sda: sda1 sda2 sda3 sda4
    [ 1.430324] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.486697] usb 3-1: new full speed USB device number 2 using uhci_hcd
    [ 1.540020] Refined TSC clocksource calibration: 1994.999 MHz.
    [ 1.540095] Switching to clocksource tsc
    [ 2.014954] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.951205] udevd[245]: starting version 171
    [ 4.375423] Detected Toshiba ACPI Bluetooth device - installing RFKill handler
    [ 4.377182] toshiba_bluetooth: Re-enabling Toshiba Bluetooth
    [ 4.464646] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 4.464694] ACPI: Lid Switch [LID]
    [ 4.464751] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 4.464757] ACPI: Power Button [PWRB]
    [ 4.464806] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 4.464810] ACPI: Power Button [PWRF]
    [ 4.468874] acpi device:1e: registered as cooling_device0
    [ 4.469003] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:1d/LNXVIDEO:00/input/input4
    [ 4.469010] ACPI: Video Device [VGA] (multi-head: yes rom: yes post: no)
    [ 4.470072] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 4.470966] ACPI: AC Adapter [ADP1] (on-line)
    [ 4.472259] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 4.472266] ACPI: Battery Slot [BAT1] (battery present)
    [ 4.472287] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 4.472294] ACPI: Battery Slot [BAT2] (battery absent)
    [ 4.511094] iTCO_vendor_support: vendor-support=0
    [ 4.639541] thermal LNXTHERM:00: registered as thermal_zone0
    [ 4.639544] ACPI: Thermal Zone [THRM] (43 C)
    [ 4.693186] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 4.693282] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0xd860)
    [ 4.693360] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 4.711995] parport_pc 00:0d: [io 0x0378-0x037a]
    [ 4.712003] parport_pc 00:0d: [io 0x0778-0x077a]
    [ 4.712080] parport_pc 00:0d: [irq 7]
    [ 4.712083] parport_pc 00:0d: [dma 1]
    [ 4.721387] sdhci: Secure Digital Host Controller Interface driver
    [ 4.721390] sdhci: Copyright(c) Pierre Ossman
    [ 4.723125] sdhci-pci 0000:06:0b.3: SDHCI controller found [104c:803c] (rev 0)
    [ 4.723223] sdhci-pci 0000:06:0b.3: enabling device (0000 -> 0002)
    [ 4.723232] sdhci-pci 0000:06:0b.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
    [ 4.723275] _regulator_get: 0000:06:0b.3 supply vmmc not found, using dummy regulator
    [ 4.723317] Registered led device: mmc0::
    [ 4.723379] mmc0: SDHCI controller on PCI [0000:06:0b.3] using DMA
    [ 4.737354] parport_pc 00:0d: activated
    [ 4.737359] parport_pc 00:0d: reported by Plug and Play ACPI
    [ 4.737430] parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
    [ 4.820210] tpm_tis 00:0a: 1.2 TPM (device-id 0xB, rev-id 16)
    [ 4.927881] intel_rng: FWH not detected
    [ 4.960488] ppdev: user-space parallel port driver
    [ 4.964564] leds_ss4200: no LED devices found
    [ 5.067658] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.084335] firewire_ohci 0000:06:0b.1: enabling device (0000 -> 0002)
    [ 5.084352] firewire_ohci 0000:06:0b.1: PCI INT B -> GSI 20 (level, low) -> IRQ 20
    [ 5.136777] firewire_ohci: Added fw-ohci device 0000:06:0b.1, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
    [ 5.336838] input: Toshiba input device as /devices/virtual/input/input5
    [ 5.336895] toshiba_acpi: Toshiba Laptop ACPI Extras version 0.19
    [ 5.336897] toshiba_acpi: HCI method: \_SB_.VALZ.GHCI
    [ 5.337522] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 5.344122] Registered led device: toshiba::illumination
    [ 5.348189] ACPI: acpi_idle registered with cpuidle
    [ 5.348320] Marking TSC unstable due to TSC halts in idle
    [ 5.348764] Switching to clocksource hpet
    [ 5.510961] input: DualPoint Stick as /devices/platform/i8042/serio1/input/input7
    [ 5.530064] e1000e: Intel(R) PRO/1000 Network Driver - 1.3.10-k2
    [ 5.530067] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    [ 5.530097] e1000e 0000:02:00.0: Disabling ASPM L1
    [ 5.530118] e1000e 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 5.530141] e1000e 0000:02:00.0: setting latency timer to 64
    [ 5.530347] e1000e 0000:02:00.0: irq 44 for MSI/MSI-X
    [ 5.530741] e1000e 0000:02:00.0: Disabling ASPM L0s
    [ 5.542011] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input8
    [ 5.611580] yenta_cardbus 0000:06:0b.0: CardBus bridge found [1179:0001]
    [ 5.611604] yenta_cardbus 0000:06:0b.0: Enabling burst memory read transactions
    [ 5.611610] yenta_cardbus 0000:06:0b.0: Using CSCINT to route CSC interrupts to PCI
    [ 5.611613] yenta_cardbus 0000:06:0b.0: Routing CardBus interrupts to PCI
    [ 5.611619] yenta_cardbus 0000:06:0b.0: TI: mfunc 0x01aa1022, devctl 0x64
    [ 5.636892] firewire_core: created device fw0: GUID 0000390000886031, S400
    [ 5.654088] e1000e 0000:02:00.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:15:b7:a8:5b:e9
    [ 5.654091] e1000e 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection
    [ 5.654169] e1000e 0000:02:00.0: eth0: MAC: 2, PHY: 2, PBA No: FFFFFF-0FF
    [ 5.696863] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 5.696933] sr 1:0:0:0: Attached scsi generic sg1 type 5
    [ 5.813113] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0
    [ 5.813119] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0
    [ 5.813126] HDA Intel 0000:00:1b.0: enabling device (0000 -> 0002)
    [ 5.813140] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 5.813203] HDA Intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 5.813240] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 5.844531] yenta_cardbus 0000:06:0b.0: ISA IRQ mask 0x0c78, PCI irq 21
    [ 5.844536] yenta_cardbus 0000:06:0b.0: Socket status: 30000006
    [ 5.844541] pci_bus 0000:06: Raising subordinate bus# of parent bus (#06) from #07 to #0a
    [ 5.844554] yenta_cardbus 0000:06:0b.0: pcmcia: parent PCI bridge window: [io 0x1000-0x1fff]
    [ 5.844557] yenta_cardbus 0000:06:0b.0: pcmcia: parent PCI bridge window: [mem 0xd4000000-0xd9ffffff]
    [ 5.844561] pcmcia_socket pcmcia_socket0: cs: memory probe 0xd4000000-0xd9ffffff: excluding 0xd4000000-0xd81fffff
    [ 5.844574] yenta_cardbus 0000:06:0b.0: pcmcia: parent PCI bridge window: [mem 0xd0000000-0xd3ffffff pref]
    [ 5.844577] pcmcia_socket pcmcia_socket0: cs: memory probe 0xd0000000-0xd3ffffff: excluding 0xd0000000-0xd3ffffff
    [ 5.879954] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
    [ 5.879958] iwl3945: Copyright(c) 2003-2011 Intel Corporation
    [ 5.880080] iwl3945 0000:05:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 5.880095] iwl3945 0000:05:00.0: setting latency timer to 64
    [ 5.921779] vboxdrv: Found 2 processor cores.
    [ 5.922150] VBoxDrv: dbg - g_abExecMemory=ffffffffa05e5360
    [ 5.922177] vboxdrv: fAsync=0 offMin=0x3c0 offMax=0x3294
    [ 5.922677] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 5.922680] vboxdrv: Successfully loaded version 4.0.8_OSE (interface 0x00180000).
    [ 5.935088] iwl3945 0000:05:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
    [ 5.935092] iwl3945 0000:05:00.0: Detected Intel Wireless WiFi Link 3945ABG
    [ 5.935238] iwl3945 0000:05:00.0: irq 46 for MSI/MSI-X
    [ 5.935471] Registered led device: phy0-led
    [ 6.076734] usb 3-2: new full speed USB device number 3 using uhci_hcd
    [ 6.260350] input: HDA Intel Line In at Sep Rear Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 6.365648] Bluetooth: Core ver 2.16
    [ 6.365675] NET: Registered protocol family 31
    [ 6.365678] Bluetooth: HCI device and connection manager initialized
    [ 6.365681] Bluetooth: HCI socket layer initialized
    [ 6.365682] Bluetooth: L2CAP socket layer initialized
    [ 6.367059] Bluetooth: SCO socket layer initialized
    [ 6.397150] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
    [ 6.423864] nvidia: module license 'NVIDIA' taints kernel.
    [ 6.423869] Disabling lock debugging due to kernel taint
    [ 6.470309] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 6.470788] usbcore: registered new interface driver btusb
    [ 6.490429] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xe0000-0xfffff
    [ 6.490499] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: excluding 0xa0000000-0xa0ffffff
    [ 6.490563] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: excluding 0x60000000-0x60ffffff
    [ 6.589542] cfg80211: World regulatory domain updated:
    [ 6.589546] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 6.589549] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.589552] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    [ 6.589555] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    [ 6.589558] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.589561] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.589575] cfg80211: Calling CRDA for country: US
    [ 6.592441] cfg80211: Regulatory domain changed to country: US
    [ 6.592444] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    [ 6.592447] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
    [ 6.592450] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
    [ 6.592453] cfg80211: (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.592456] cfg80211: (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.592459] cfg80211: (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    [ 6.592461] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
    [ 7.230839] nvidia 0000:01:00.0: power state changed by ACPI to D0
    [ 7.230845] nvidia 0000:01:00.0: power state changed by ACPI to D0
    [ 7.230855] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 7.230864] nvidia 0000:01:00.0: setting latency timer to 64
    [ 7.230869] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 7.231025] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 275.09.07 Wed Jun 8 14:16:46 PDT 2011
    [ 7.672048] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 8.024321] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 8.235206] Adding 4000180k swap on /dev/sda2. Priority:-1 extents:1 across:4000180k
    [ 10.230429] e1000e 0000:02:00.0: irq 44 for MSI/MSI-X
    [ 10.283546] e1000e 0000:02:00.0: irq 44 for MSI/MSI-X
    [ 11.855962] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
    [ 11.855968] e1000e 0000:02:00.0: eth0: 10/100 speed: disabling TSO
    [ 35.639276] NET: Registered protocol family 10
    [ 46.030030] eth0: no IPv6 routers present
    [ 542.872512] iwl3945 0000:05:00.0: loaded firmware version 15.32.2.9
    [ 542.941963] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Those last two lines are after running `sudo ifconfig wlan0 up`. Running the program, `sudo iwlist wlan0 scan`, comes up with an appropriate list of access points. Yet when I run `sudo netcfg -u profile`, I get a "FAIL" message and "wlan0: link is not ready" shows up again in dmesg.
    Output of lsmod | grep iwl
    iwl3945 74149 0
    iwl_legacy 52750 1 iwl3945
    mac80211 211822 2 iwl3945,iwl_legacy
    cfg80211 146401 3 iwl3945,iwl_legacy,mac80211
    Output of lspci for my networking cards
    02:00.0 Ethernet controller: Intel Corporation 82573L Gigabit Ethernet Controller
    05:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)
    My ethernet controller (wired) works fine.

    EDIT: SOLVED
    Solution: I feel sort of silly. I had mistaken my wifi switch for some sort of card eject/lock switch. Oh well, live and learn I suppose....
    Hello I am having a similar problem. I tried to manually bring up my wireless device with the "ifconfig wlan0 up" but I get the following error:
    SIOCSIFFLAGS: Operation not possible due to RF-kill
    After some research I found a suggestion to install rfkill and ensure the following line was uncommented in /etc/conf.d/rfkill
    RFKILL_UNBLOCK="all"
    Then add rfkill to my /etc/rc.d/conf under daemons and restart. Despite this I still get the same error when I try to run the ifconfig command.
    Here is my demsg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 2.6.39-ARCH (thomas@evey) (gcc version 4.6.1 (GCC) ) #1 SMP PREEMPT Sat Jul 9 15:31:04 CEST 2011
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000003f692400 (usable)
    [ 0.000000] BIOS-e820: 000000003f692400 - 0000000040000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1c000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed20000 - 00000000fed90000 (reserved)
    [ 0.000000] BIOS-e820: 00000000feda0000 - 00000000feda6000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    [ 0.000000] Notice: NX (Execute Disable) protection missing in CPU!
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Dell Inc. Inspiron 1420 /0DT492, BIOS A01 07/10/2007
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0x3f692 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask FC0000000 write-back
    [ 0.000000] 1 base 03F800000 mask FFF800000 uncachable
    [ 0.000000] 2 base 03F700000 mask FFFF00000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] initial memory mapped : 0 - 01c00000
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 0000400000 page 4k
    [ 0.000000] 0000400000 - 0037400000 page 2M
    [ 0.000000] 0037400000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
    [ 0.000000] RAMDISK: 3f468000 - 3f682000
    [ 0.000000] Allocated new RAMDISK: 375e4000 - 377fdc50
    [ 0.000000] Move RAMDISK from 000000003f468000 - 000000003f681c4f to 375e4000 - 377fdc4f
    [ 0.000000] ACPI: RSDP 000fbbf0 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 3f693e00 0005C (v01 DELL M08 27D7070A ASL 00000061)
    [ 0.000000] ACPI: FACP 3f693c9c 000F4 (v04 DELL M08 27D7070A ASL 00000061)
    [ 0.000000] ACPI: DSDT 3f694400 05633 (v02 INT430 SYSFexxx 00001001 INTL 20050624)
    [ 0.000000] ACPI: FACS 3f6a2c00 00040
    [ 0.000000] ACPI: HPET 3f693f00 00038 (v01 DELL M08 00000001 ASL 00000061)
    [ 0.000000] ACPI: APIC 3f694000 00068 (v01 DELL M08 27D7070A ASL 00000047)
    [ 0.000000] ACPI: MCFG 3f693fc0 0003E (v16 DELL M08 27D7070A ASL 00000061)
    [ 0.000000] ACPI: SLIC 3f69409c 00024 (v01 DELL M08 27D7070A ASL 00000061)
    [ 0.000000] ACPI: BOOT 3f693bc0 00028 (v01 DELL M08 27D7070A ASL 00000061)
    [ 0.000000] ACPI: SSDT 3f6927b1 004CC (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 126MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x0003f692
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[2] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x0003f692
    [ 0.000000] On node 0 totalpages: 259617
    [ 0.000000] free_area_init_node: node 0, pgdat c14a1980, node_mem_map f6df3200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 254 pages used for memmap
    [ 0.000000] HighMem zone: 32150 pages, LIFO batch:7
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
    [ 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_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:b8000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 12 pages/cpu @f6800000 s27648 r0 d21504 u2097152
    [ 0.000000] pcpu-alloc: s27648 r0 d21504 u2097152 alloc=1*4194304
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257587
    [ 0.000000] Kernel command line: root=/dev/disk/by-uuid/5872116e-5d3c-4b91-8061-d3f4e14e0ada ro
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 4155424 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0003f692)
    [ 0.000000] Memory: 1016960k/1038920k available (3376k kernel code, 21508k reserved, 1390k data, 512k init, 129616k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc14a8000 - 0xc1528000 ( 512 kB)
    [ 0.000000] .data : 0xc134c3bf - 0xc14a7c00 (1390 kB)
    [ 0.000000] .text : 0xc1000000 - 0xc134c3bf (3376 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, 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:512
    [ 0.000000] CPU 0 irqstacks, hard=f600c000 soft=f600e000
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1496.306 MHz processor.
    [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 2993.30 BogoMIPS (lpj=4987686)
    [ 0.003469] pid_max: default: 32768 minimum: 301
    [ 0.003587] Security Framework initialized
    [ 0.003655] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003749] Mount-cache hash table entries: 512
    [ 0.004058] Initializing cgroup subsys ns
    [ 0.004125] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
    [ 0.004209] Initializing cgroup subsys cpuacct
    [ 0.004289] Initializing cgroup subsys memory
    [ 0.004366] Initializing cgroup subsys devices
    [ 0.004432] Initializing cgroup subsys freezer
    [ 0.004498] Initializing cgroup subsys net_cls
    [ 0.004564] Initializing cgroup subsys blkio
    [ 0.006717] CPU: Physical Processor ID: 0
    [ 0.006782] CPU: Processor Core ID: 0
    [ 0.006847] mce: CPU supports 6 MCE banks
    [ 0.006918] CPU0: Thermal monitoring enabled (TM2)
    [ 0.006986] using mwait in idle threads.
    [ 0.008485] ACPI: Core revision 20110316
    [ 0.013347] ftrace: allocating 15225 entries in 30 pages
    [ 0.016721] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.017179] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.050261] CPU0: Intel(R) Core(TM)2 Duo CPU T5250 @ 1.50GHz stepping 0d
    [ 0.053330] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    [ 0.053330] PEBS disabled due to CPU errata.
    [ 0.053330] ... version: 2
    [ 0.053330] ... bit width: 40
    [ 0.053330] ... generic registers: 2
    [ 0.053330] ... value mask: 000000ffffffffff
    [ 0.053330] ... max period: 000000007fffffff
    [ 0.053330] ... fixed-purpose events: 3
    [ 0.053330] ... event mask: 0000000700000003
    [ 0.070120] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.096678] CPU 1 irqstacks, hard=f60c8000 soft=f60ca000
    [ 0.096681] Booting Node 0, Processors #1 Ok.
    [ 0.096793] smpboot cpu 1: start_ip = 9b000
    [ 0.006666] Initializing CPU#1
    [ 0.193356] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.199993] Brought up 2 CPUs
    [ 0.200057] Total of 2 processors activated (5987.49 BogoMIPS).
    [ 0.201199] devtmpfs: initialized
    [ 0.201466] print_constraints: dummy:
    [ 0.201604] NET: Registered protocol family 16
    [ 0.203475] ACPI: bus type pci registered
    [ 0.203665] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.203749] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.203817] PCI: Using MMCONFIG for extended config space
    [ 0.203882] PCI: Using configuration type 1 for base access
    [ 0.203954] dmi type 0xB1 record - unknown flag
    [ 0.204679] bio: create slab <bio-0> at 0
    [ 0.204902] ACPI: EC: Look up EC in DSDT
    [ 0.226159] ACPI: SSDT 3f6931b8 001C0 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.226708] ACPI: Dynamic OEM Table Load:
    [ 0.226865] ACPI: SSDT (null) 001C0 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.227216] ACPI: SSDT 3f692c7d 004B6 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.227731] ACPI: Dynamic OEM Table Load:
    [ 0.227887] ACPI: SSDT (null) 004B6 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.228404] ACPI: SSDT 3f693378 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20050624)
    [ 0.228935] ACPI: Dynamic OEM Table Load:
    [ 0.229092] ACPI: SSDT (null) 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20050624)
    [ 0.229399] ACPI: SSDT 3f693133 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624)
    [ 0.229916] ACPI: Dynamic OEM Table Load:
    [ 0.230046] ACPI: SSDT (null) 00085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624)
    [ 0.230473] ACPI: Interpreter enabled
    [ 0.230541] ACPI: (supports S0 S3 S4 S5)
    [ 0.230809] ACPI: Using IOAPIC for interrupt routing
    [ 0.286877] ACPI: No dock devices found.
    [ 0.286943] HEST: Table not found.
    [ 0.287009] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.300195] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.325114] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.325119] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.325123] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.325127] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff] (ignored)
    [ 0.325131] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xf7ffffff] (ignored)
    [ 0.325135] pci_root PNP0A03:00: host bridge window [mem 0xfc000000-0xfebfffff] (ignored)
    [ 0.325139] pci_root PNP0A03:00: host bridge window [mem 0xfec10000-0xfecfffff] (ignored)
    [ 0.325143] pci_root PNP0A03:00: host bridge window [mem 0xfed1c000-0xfed1ffff] (ignored)
    [ 0.325147] pci_root PNP0A03:00: host bridge window [mem 0xfed90000-0xfed9ffff] (ignored)
    [ 0.325151] pci_root PNP0A03:00: host bridge window [mem 0xfeda7000-0xfedfffff] (ignored)
    [ 0.325154] pci_root PNP0A03:00: host bridge window [mem 0xfee10000-0xff9fffff] (ignored)
    [ 0.325158] pci_root PNP0A03:00: host bridge window [mem 0xffb00000-0xffefffff] (ignored)
    [ 0.325173] pci 0000:00:00.0: [8086:2a00] type 0 class 0x000600
    [ 0.325234] pci 0000:00:02.0: [8086:2a02] type 0 class 0x000300
    [ 0.325254] pci 0000:00:02.0: reg 10: [mem 0xfea00000-0xfeafffff 64bit]
    [ 0.325267] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.325276] pci 0000:00:02.0: reg 20: [io 0xeff8-0xefff]
    [ 0.325321] pci 0000:00:02.1: [8086:2a03] type 0 class 0x000380
    [ 0.325338] pci 0000:00:02.1: reg 10: [mem 0xfeb00000-0xfebfffff 64bit]
    [ 0.325447] pci 0000:00:1a.0: [8086:2834] type 0 class 0x000c03
    [ 0.325514] pci 0000:00:1a.0: reg 20: [io 0x6f20-0x6f3f]
    [ 0.325562] pci 0000:00:1a.1: [8086:2835] type 0 class 0x000c03
    [ 0.325630] pci 0000:00:1a.1: reg 20: [io 0x6f00-0x6f1f]
    [ 0.325695] pci 0000:00:1a.7: [8086:283a] type 0 class 0x000c03
    [ 0.325725] pci 0000:00:1a.7: reg 10: [mem 0xfed1c400-0xfed1c7ff]
    [ 0.325832] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.325840] pci 0000:00:1a.7: PME# disabled
    [ 0.325875] pci 0000:00:1b.0: [8086:284b] type 0 class 0x000403
    [ 0.325903] pci 0000:00:1b.0: reg 10: [mem 0xfe9fc000-0xfe9fffff 64bit]
    [ 0.326002] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.326009] pci 0000:00:1b.0: PME# disabled
    [ 0.326044] pci 0000:00:1c.0: [8086:283f] type 1 class 0x000604
    [ 0.326147] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.326154] pci 0000:00:1c.0: PME# disabled
    [ 0.326192] pci 0000:00:1c.1: [8086:2841] type 1 class 0x000604
    [ 0.326295] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.326302] pci 0000:00:1c.1: PME# disabled
    [ 0.326341] pci 0000:00:1c.3: [8086:2845] type 1 class 0x000604
    [ 0.326445] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.326451] pci 0000:00:1c.3: PME# disabled
    [ 0.326491] pci 0000:00:1c.5: [8086:2849] type 1 class 0x000604
    [ 0.326595] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.326601] pci 0000:00:1c.5: PME# disabled
    [ 0.326637] pci 0000:00:1d.0: [8086:2830] type 0 class 0x000c03
    [ 0.326711] pci 0000:00:1d.0: reg 20: [io 0x6f80-0x6f9f]
    [ 0.326759] pci 0000:00:1d.1: [8086:2831] type 0 class 0x000c03
    [ 0.326827] pci 0000:00:1d.1: reg 20: [io 0x6f60-0x6f7f]
    [ 0.326875] pci 0000:00:1d.2: [8086:2832] type 0 class 0x000c03
    [ 0.326942] pci 0000:00:1d.2: reg 20: [io 0x6f40-0x6f5f]
    [ 0.327008] pci 0000:00:1d.7: [8086:2836] type 0 class 0x000c03
    [ 0.327038] pci 0000:00:1d.7: reg 10: [mem 0xfed1c000-0xfed1c3ff]
    [ 0.327145] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.327152] pci 0000:00:1d.7: PME# disabled
    [ 0.327181] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [ 0.327284] pci 0000:00:1f.0: [8086:2815] type 0 class 0x000601
    [ 0.327414] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
    [ 0.327501] pci 0000:00:1f.0: quirk: [io 0x1080-0x10bf] claimed by ICH6 GPIO
    [ 0.327573] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0900 (mask 007f)
    [ 0.327658] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0c80 (mask 003f)
    [ 0.327786] pci 0000:00:1f.1: [8086:2850] type 0 class 0x000101
    [ 0.327806] pci 0000:00:1f.1: reg 10: [io 0x01f0-0x01f7]
    [ 0.327822] pci 0000:00:1f.1: reg 14: [io 0x03f4-0x03f7]
    [ 0.327837] pci 0000:00:1f.1: reg 18: [io 0x0170-0x0177]
    [ 0.327852] pci 0000:00:1f.1: reg 1c: [io 0x0374-0x0377]
    [ 0.327867] pci 0000:00:1f.1: reg 20: [io 0x6fa0-0x6faf]
    [ 0.327928] pci 0000:00:1f.2: [8086:2829] type 0 class 0x000106
    [ 0.327961] pci 0000:00:1f.2: reg 10: [io 0x6eb0-0x6eb7]
    [ 0.327976] pci 0000:00:1f.2: reg 14: [io 0x6eb8-0x6ebb]
    [ 0.327991] pci 0000:00:1f.2: reg 18: [io 0x6ec0-0x6ec7]
    [ 0.328006] pci 0000:00:1f.2: reg 1c: [io 0x6ec8-0x6ecb]
    [ 0.328021] pci 0000:00:1f.2: reg 20: [io 0x6ee0-0x6eff]
    [ 0.328036] pci 0000:00:1f.2: reg 24: [mem 0xfe9fb800-0xfe9fbfff]
    [ 0.328094] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.328100] pci 0000:00:1f.2: PME# disabled
    [ 0.328127] pci 0000:00:1f.3: [8086:283e] type 0 class 0x000c05
    [ 0.328148] pci 0000:00:1f.3: reg 10: [mem 0xfe9fb700-0xfe9fb7ff]
    [ 0.328198] pci 0000:00:1f.3: reg 20: [io 0x10c0-0x10df]
    [ 0.328318] pci 0000:00:1c.0: PCI bridge to [bus 0b-0b]
    [ 0.328388] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.328395] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 0.328406] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.328583] pci 0000:0c:00.0: [8086:4222] type 0 class 0x000280
    [ 0.328643] pci 0000:0c:00.0: reg 10: [mem 0xfe8ff000-0xfe8fffff]
    [ 0.329003] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
    [ 0.329017] pci 0000:0c:00.0: PME# disabled
    [ 0.329092] pci 0000:0c:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.329256] pci 0000:00:1c.1: PCI bridge to [bus 0c-0c]
    [ 0.329325] pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.329332] pci 0000:00:1c.1: bridge window [mem 0xfe800000-0xfe8fffff]
    [ 0.329343] pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.329416] pci 0000:00:1c.3: PCI bridge to [bus 0d-0e]
    [ 0.329486] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.329493] pci 0000:00:1c.3: bridge window [mem 0xfe600000-0xfe7fffff]
    [ 0.329503] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
    [ 0.329654] pci 0000:09:00.0: [14e4:1713] type 0 class 0x000200
    [ 0.329729] pci 0000:09:00.0: reg 10: [mem 0xfe5f0000-0xfe5fffff 64bit]
    [ 0.330065] pci 0000:09:00.0: PME# supported from D3hot D3cold
    [ 0.330079] pci 0000:09:00.0: PME# disabled
    [ 0.330229] pci 0000:00:1c.5: PCI bridge to [bus 09-09]
    [ 0.330299] pci 0000:00:1c.5: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.330306] pci 0000:00:1c.5: bridge window [mem 0xfe500000-0xfe5fffff]
    [ 0.330316] pci 0000:00:1c.5: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.330374] pci 0000:03:01.0: [1180:0832] type 0 class 0x000c00
    [ 0.330403] pci 0000:03:01.0: reg 10: [mem 0xfe4ff800-0xfe4fffff]
    [ 0.330507] pci 0000:03:01.0: supports D1 D2
    [ 0.330510] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.330517] pci 0000:03:01.0: PME# disabled
    [ 0.330543] pci 0000:03:01.1: [1180:0822] type 0 class 0x000805
    [ 0.330571] pci 0000:03:01.1: reg 10: [mem 0xfe4ff500-0xfe4ff5ff]
    [ 0.330675] pci 0000:03:01.1: supports D1 D2
    [ 0.330678] pci 0000:03:01.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.330685] pci 0000:03:01.1: PME# disabled
    [ 0.330712] pci 0000:03:01.2: [1180:0592] type 0 class 0x000880
    [ 0.330739] pci 0000:03:01.2: reg 10: [mem 0xfe4ff600-0xfe4ff6ff]
    [ 0.330842] pci 0000:03:01.2: supports D1 D2
    [ 0.330845] pci 0000:03:01.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.330852] pci 0000:03:01.2: PME# disabled
    [ 0.330878] pci 0000:03:01.3: [1180:0852] type 0 class 0x000880
    [ 0.330905] pci 0000:03:01.3: reg 10: [mem 0xfe4ff700-0xfe4ff7ff]
    [ 0.331009] pci 0000:03:01.3: supports D1 D2
    [ 0.331012] pci 0000:03:01.3: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.331019] pci 0000:03:01.3: PME# disabled
    [ 0.331101] pci 0000:00:1e.0: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.331173] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    [ 0.331180] pci 0000:00:1e.0: bridge window [mem 0xfe400000-0xfe4fffff]
    [ 0.331190] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 0.331194] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.331198] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
    [ 0.331238] pci_bus 0000:00: on NUMA node 0
    [ 0.331244] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.331643] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT]
    [ 0.331798] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.331874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.331953] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    [ 0.332028] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.332100] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.332167] Unable to assume _OSC PCIe control. Disabling ASPM
    [ 0.346826] ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 *11)
    [ 0.347217] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *10
    [ 0.347603] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 11) *4
    [ 0.348041] ACPI: PCI Interrupt Link [LNKD] (IRQs *5 7 9 10 11)
    [ 0.348520] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    [ 0.349285] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
    [ 0.350058] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
    [ 0.350808] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
    [ 0.351693] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.351794] vgaarb: loaded
    [ 0.351988] PCI: Using ACPI for IRQ routing
    [ 0.352053] PCI: pci_cache_line_size set to 64 bytes
    [ 0.352214] reserve RAM buffer: 000000000009f000 - 000000000009ffff
    [ 0.352218] reserve RAM buffer: 000000003f692400 - 000000003fffffff
    [ 0.352373] NetLabel: Initializing
    [ 0.352437] NetLabel: domain hash size = 128
    [ 0.352501] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.352581] NetLabel: unlabeled traffic allowed by default
    [ 0.352662] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.352736] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.352984] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.363339] Switching to clocksource hpet
    [ 0.366435] Switched to NOHz mode on CPU #0
    [ 0.366544] Switched to NOHz mode on CPU #1
    [ 0.372461] pnp: PnP ACPI init
    [ 0.372551] ACPI: bus type pnp registered
    [ 0.384786] pnp 00:00: [bus 00-ff]
    [ 0.384791] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.384794] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.384798] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.384802] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.384805] pnp 00:00: [mem 0x000d0000-0x000dffff window]
    [ 0.384809] pnp 00:00: [mem 0x40000000-0xf7ffffff window]
    [ 0.384812] pnp 00:00: [mem 0xfc000000-0xfebfffff window]
    [ 0.384815] pnp 00:00: [mem 0xfec10000-0xfecfffff window]
    [ 0.384819] pnp 00:00: [mem 0xfed1c000-0xfed1ffff window]
    [ 0.384822] pnp 00:00: [mem 0xfed90000-0xfed9ffff window]
    [ 0.384826] pnp 00:00: [mem 0xfeda7000-0xfedfffff window]
    [ 0.384829] pnp 00:00: [mem 0xfee10000-0xff9fffff window]
    [ 0.384832] pnp 00:00: [mem 0xffb00000-0xffefffff window]
    [ 0.384948] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.384985] pnp 00:01: [irq 12]
    [ 0.385025] pnp 00:01: Plug and Play ACPI device, IDs PNP0f13 (active)
    [ 0.385048] pnp 00:02: [io 0x0060]
    [ 0.385051] pnp 00:02: [io 0x0064]
    [ 0.385054] pnp 00:02: [io 0x0062]
    [ 0.385057] pnp 00:02: [io 0x0066]
    [ 0.385068] pnp 00:02: [irq 1]
    [ 0.385106] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.385128] pnp 00:03: [io 0x0070-0x0071]
    [ 0.385136] pnp 00:03: [irq 8]
    [ 0.385139] pnp 00:03: [io 0x0072-0x0077]
    [ 0.385180] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.385205] pnp 00:04: [io 0x0061]
    [ 0.385208] pnp 00:04: [io 0x0063]
    [ 0.385211] pnp 00:04: [io 0x0065]
    [ 0.385213] pnp 00:04: [io 0x0067]
    [ 0.385252] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.385273] pnp 00:05: [io 0x0c80-0x0cff]
    [ 0.385357] system 00:05: [io 0x0c80-0x0cff] could not be reserved
    [ 0.385428] system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.385454] pnp 00:06: [dma 4]
    [ 0.385457] pnp 00:06: [io 0x0000-0x000f]
    [ 0.385461] pnp 00:06: [io 0x0080-0x0085]
    [ 0.385463] pnp 00:06: [io 0x0087-0x008f]
    [ 0.385466] pnp 00:06: [io 0x00c0-0x00df]
    [ 0.385469] pnp 00:06: [io 0x0010-0x001f]
    [ 0.385472] pnp 00:06: [io 0x0090-0x0091]
    [ 0.385475] pnp 00:06: [io 0x0093-0x009f]
    [ 0.385516] pnp 00:06: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.385537] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.385545] pnp 00:07: [irq 13]
    [ 0.385589] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.385643] pnp 00:08: [mem 0xfed00000-0xfed003ff]
    [ 0.385718] system 00:08: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.385789] system 00:08: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.385983] pnp 00:09: [io 0x0900-0x097f]
    [ 0.385987] pnp 00:09: [io 0x0092]
    [ 0.385990] pnp 00:09: [io 0x00b2-0x00b3]
    [ 0.385993] pnp 00:09: [io 0x0020-0x0021]
    [ 0.385996] pnp 00:09: [io 0x00a0-0x00a1]
    [ 0.385999] pnp 00:09: [irq 0 disabled]
    [ 0.386002] pnp 00:09: [io 0x04d0-0x04d1]
    [ 0.386005] pnp 00:09: [io 0x1000-0x1005]
    [ 0.386008] pnp 00:09: [io 0x1008-0x100f]
    [ 0.386036] pnp 00:09: disabling [io 0x1000-0x1005] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [ 0.386121] pnp 00:09: disabling [io 0x1008-0x100f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [ 0.386286] system 00:09: [io 0x0900-0x097f] has been reserved
    [ 0.386354] system 00:09: [io 0x04d0-0x04d1] has been reserved
    [ 0.386423] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.386446] pnp 00:0a: [io 0xf400-0xf4fe]
    [ 0.386449] pnp 00:0a: [io 0x0086]
    [ 0.386452] pnp 00:0a: [io 0x1006-0x1007]
    [ 0.386455] pnp 00:0a: [io 0x100a-0x1059]
    [ 0.386458] pnp 00:0a: [io 0x1060-0x107f]
    [ 0.386461] pnp 00:0a: [io 0x1080-0x10bf]
    [ 0.386464] pnp 00:0a: [io 0x10c0-0x10df]
    [ 0.386467] pnp 00:0a: [io 0x1010-0x102f]
    [ 0.386470] pnp 00:0a: [io 0x0809]
    [ 0.386496] pnp 00:0a: disabling [io 0x1006-0x1007] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [ 0.386581] pnp 00:0a: disabling [io 0x100a-0x1059] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [ 0.386666] pnp 00:0a: disabling [io 0x1060-0x107f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [ 0.386765] pnp 00:0a: disabling [io 0x1010-0x102f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [ 0.386932] system 00:0a: [io 0xf400-0xf4fe] has been reserved
    [ 0.387000] system 00:0a: [io 0x1080-0x10bf] has been reserved
    [ 0.387068] system 00:0a: [io 0x10c0-0x10df] has been reserved
    [ 0.387136] system 00:0a: [io 0x0809] has been reserved
    [ 0.387203] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.400920] pnp 00:0b: [mem 0x00000000-0x0009efff]
    [ 0.400924] pnp 00:0b: [mem 0x0009f000-0x0009ffff]
    [ 0.400927] pnp 00:0b: [mem 0x000c0000-0x000cffff]
    [ 0.400931] pnp 00:0b: [mem 0x000e0000-0x000fffff]
    [ 0.400934] pnp 00:0b: [mem 0x00100000-0x3f6923ff]
    [ 0.400937] pnp 00:0b: [mem 0x3f692400-0x3f6fffff]
    [ 0.400940] pnp 00:0b: [mem 0x3f700000-0x3f7fffff]
    [ 0.400943] pnp 00:0b: [mem 0x3f700000-0x3fefffff]
    [ 0.400946] pnp 00:0b: [mem 0xfff00000-0xffffffff]
    [ 0.400949] pnp 00:0b: [mem 0xffa00000-0xffafffff]
    [ 0.400952] pnp 00:0b: [mem 0xfec00000-0xfec0ffff]
    [ 0.400955] pnp 00:0b: [mem 0xfee00000-0xfee0ffff]
    [ 0.400958] pnp 00:0b: [mem 0xfed20000-0xfed8ffff]
    [ 0.400961] pnp 00:0b: [mem 0xfeda0000-0xfeda3fff]
    [ 0.400964] pnp 00:0b: [mem 0xfeda4000-0xfeda4fff]
    [ 0.400967] pnp 00:0b: [mem 0xfeda5000-0xfeda5fff]
    [ 0.400970] pnp 00:0b: [mem 0xfeda6000-0xfeda6fff]
    [ 0.400973] pnp 00:0b: [mem 0xfed18000-0xfed1bfff]
    [ 0.400976] pnp 00:0b: [mem 0xf8000000-0xfbffffff]
    [ 0.401112] system 00:0b: [mem 0x00000000-0x0009efff] could not be reserved
    [ 0.401183] system 00:0b: [mem 0x0009f000-0x0009ffff] could not be reserved
    [ 0.401252] system 00:0b: [mem 0x000c0000-0x000cffff] could not be reserved
    [ 0.401321] system 00:0b: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.401391] system 00:0b: [mem 0x00100000-0x3f6923ff] could not be reserved
    [ 0.401460] system 00:0b: [mem 0x3f692400-0x3f6fffff] has been reserved
    [ 0.401529] system 00:0b: [mem 0x3f700000-0x3f7fffff] has been reserved
    [ 0.401598] system 00:0b: [mem 0x3f700000-0x3fefffff] could not be reserved
    [ 0.401667] system 00:0b: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.401736] system 00:0b: [mem 0xffa00000-0xffafffff] has been reserved
    [ 0.401805] system 00:0b: [mem 0xfec00000-0xfec0ffff] could not be reserved
    [ 0.401874] system 00:0b: [mem 0xfee00000-0xfee0ffff] has been reserved
    [ 0.401942] system 00:0b: [mem 0xfed20000-0xfed8ffff] has been reserved
    [ 0.402011] system 00:0b: [mem 0xfeda0000-0xfeda3fff] has been reserved
    [ 0.402080] system 00:0b: [mem 0xfeda4000-0xfeda4fff] has been reserved
    [ 0.402148] system 00:0b: [mem 0xfeda5000-0xfeda5fff] has been reserved
    [ 0.402219] system 00:0b: [mem 0xfeda6000-0xfeda6fff] has been reserved
    [ 0.402289] system 00:0b: [mem 0xfed18000-0xfed1bfff] has been reserved
    [ 0.402358] system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.402429] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.402514] pnp: PnP ACPI: found 12 devices
    [ 0.402579] ACPI: ACPI bus type pnp unregistered
    [ 0.439832] pci 0000:00:1c.5: BAR 15: assigned [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.439917] pci 0000:00:1c.5: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.439986] pci 0000:00:1c.1: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.440081] pci 0000:00:1c.1: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.440151] pci 0000:00:1c.0: BAR 14: assigned [mem 0x40400000-0x405fffff]
    [ 0.440222] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.440306] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.440376] pci 0000:00:1c.0: PCI bridge to [bus 0b-0b]
    [ 0.440443] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.440517] pci 0000:00:1c.0: bridge window [mem 0x40400000-0x405fffff]
    [ 0.440589] pci 0000:00:1c.0: bridge window [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.440677] pci 0000:00:1c.1: PCI bridge to [bus 0c-0c]
    [ 0.440744] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    [ 0.440817] pci 0000:00:1c.1: bridge window [mem 0xfe800000-0xfe8fffff]
    [ 0.440889] pci 0000:00:1c.1: bridge window [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.440976] pci 0000:00:1c.3: PCI bridge to [bus 0d-0e]
    [ 0.441043] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [ 0.441115] pci 0000:00:1c.3: bridge window [mem 0xfe600000-0xfe7fffff]
    [ 0.441187] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
    [ 0.441274] pci 0000:00:1c.5: PCI bridge to [bus 09-09]
    [ 0.441342] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.441413] pci 0000:00:1c.5: bridge window [mem 0xfe500000-0xfe5fffff]
    [ 0.441485] pci 0000:00:1c.5: bridge window [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.441572] pci 0000:00:1e.0: PCI bridge to [bus 03-03]
    [ 0.441638] pci 0000:00:1e.0: bridge window [io disabled]
    [ 0.441710] pci 0000:00:1e.0: bridge window [mem 0xfe400000-0xfe4fffff]
    [ 0.441781] pci 0000:00:1e.0: bridge window [mem pref disabled]
    [ 0.441870] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.441942] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.441955] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.442026] pci 0000:00:1c.1: setting latency timer to 64
    [ 0.442038] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 0.442109] pci 0000:00:1c.3: setting latency timer to 64
    [ 0.442119] pci 0000:00:1c.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 0.442190] pci 0000:00:1c.5: setting latency timer to 64
    [ 0.442201] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.442207] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
    [ 0.442211] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
    [ 0.442215] pci_bus 0000:0b: resource 0 [io 0x4000-0x4fff]
    [ 0.442218] pci_bus 0000:0b: resource 1 [mem 0x40400000-0x405fffff]
    [ 0.442222] pci_bus 0000:0b: resource 2 [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.442226] pci_bus 0000:0c: resource 0 [io 0x3000-0x3fff]
    [ 0.442230] pci_bus 0000:0c: resource 1 [mem 0xfe800000-0xfe8fffff]
    [ 0.442233] pci_bus 0000:0c: resource 2 [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.442237] pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff]
    [ 0.442241] pci_bus 0000:0d: resource 1 [mem 0xfe600000-0xfe7fffff]
    [ 0.442245] pci_bus 0000:0d: resource 2 [mem 0xf0000000-0xf01fffff 64bit pref]
    [ 0.442248] pci_bus 0000:09: resource 0 [io 0x2000-0x2fff]
    [ 0.442252] pci_bus 0000:09: resource 1 [mem 0xfe500000-0xfe5fffff]
    [ 0.442256] pci_bus 0000:09: resource 2 [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.442260] pci_bus 0000:03: resource 1 [mem 0xfe400000-0xfe4fffff]
    [ 0.442263] pci_bus 0000:03: resource 4 [io 0x0000-0xffff]
    [ 0.442267] pci_bus 0000:03: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.442328] NET: Registered protocol family 2
    [ 0.442487] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.442867] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.443500] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.443819] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.443888] TCP reno registered
    [ 0.443951] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.444025] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.444241] NET: Registered protocol family 1
    [ 0.444324] pci 0000:00:02.0: Boot video device
    [ 0.444542] PCI: CLS 64 bytes, default 64
    [ 0.444604] Unpacking initramfs...
    [ 0.497373] Freeing initrd memory: 2152k freed
    [ 0.498538] Simple Boot Flag at 0x79 set to 0x1
    [ 0.498947] apm: BIOS not found.
    [ 0.499191] audit: initializing netlink socket (disabled)
    [ 0.499270] type=2000 audit(1311732031.496:1): initialized
    [ 0.499711] highmem bounce pool size: 64 pages
    [ 0.499780] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.502730] VFS: Disk quotas dquot_6.5.2
    [ 0.502908] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.503131] msgmni has been set to 1737
    [ 0.503467] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.503585] io scheduler noop registered
    [ 0.503650] io scheduler deadline registered
    [ 0.503729] io scheduler cfq registered (default)
    [ 0.503977] pcieport 0000:00:1c.0: setting latency timer to 64
    [ 0.504049] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.504155] pcieport 0000:00:1c.1: setting latency timer to 64
    [ 0.504219] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.504319] pcieport 0000:00:1c.3: setting latency timer to 64
    [ 0.504383] pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
    [ 0.504482] pcieport 0000:00:1c.5: setting latency timer to 64
    [ 0.504545] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
    [ 0.504797] intel_idle: MWAIT substates: 0x22220
    [ 0.504800] intel_idle: does not run on family 6 model 15
    [ 0.504808] ERST: Table is not found!
    [ 0.504887] isapnp: Scanning for PnP cards...
    [ 0.861991] isapnp: No Plug & Play device found
    [ 0.862125] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.064028] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.066832] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.066941] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.067133] mousedev: PS/2 mouse device common for all mice
    [ 1.067295] rtc_cmos 00:03: RTC can wake from S4
    [ 1.070090] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.090146] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 1.090247] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.090347] cpuidle: using governor ladder
    [ 1.090411] cpuidle: using governor menu
    [ 1.090805] TCP cubic registered
    [ 1.090869] NET: Registered protocol family 17
    [ 1.090940] Registering the dns_resolver key type
    [ 1.091021] Using IPI No-Shortcut mode
    [ 1.091192] PM: Hibernation image not present or could not be loaded.
    [ 1.091199] registered taskstats version 1
    [ 1.091987] rtc_cmos 00:03: setting system clock to 2011-07-27 02:00:33 UTC (1311732033)
    [ 1.092123] Initializing network drop monitor service
    [ 1.092277] Freeing unused kernel memory: 512k freed
    [ 1.092674] Write protecting the kernel text: 3380k
    [ 1.092770] Write protecting the kernel read-only data: 1028k
    [ 1.107041] udevd[48]: starting version 171
    [ 1.114908] Linux agpgart interface v0.103
    [ 1.121178] agpgart-intel 0000:00:00.0: Intel 965GM Chipset
    [ 1.121359] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    [ 1.122127] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 1.122374] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    [ 1.134889] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 1.135457] ACPI: Lid Switch [LID]
    [ 1.135611] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 1.135702] ACPI: Power Button [PBTN]
    [ 1.135836] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 1.135920] ACPI: Sleep Button [SBTN]
    [ 1.165275] [drm] Initialized drm 1.1.0 20060810
    [ 1.206851] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.206929] i915 0000:00:02.0: setting latency timer to 64
    [ 1.232385] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 1.232394] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.232466] [drm] Driver supports precise vblank timestamp query.
    [ 1.290108] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.290525] [drm] initialized overlay support
    [ 1.500042] Refined TSC clocksource calibration: 1496.249 MHz.
    [ 1.500113] Switching to clocksource tsc
    [ 1.652818] fbcon: inteldrmfb (fb0) is primary device
    [ 1.701242] Console: switching to colour frame buffer device 180x56
    [ 1.708681] fb0: inteldrmfb frame buffer device
    [ 1.708727] drm: registered panic notifier
    [ 1.722258] acpi device:35: registered as cooling_device0
    [ 1.722670] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/LNXVIDEO:01/input/input4
    [ 1.722770] ACPI: Video Device [VID1] (multi-head: yes rom: no post: no)
    [ 1.722857] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
    [ 1.723157] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.857654] SCSI subsystem initialized
    [ 1.888922] libata version 3.00 loaded.
    [ 1.893097] ata_piix 0000:00:1f.1: version 2.13
    [ 1.893119] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.893250] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 1.893737] scsi0 : ata_piix
    [ 1.893897] scsi1 : ata_piix
    [ 1.894413] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x6fa0 irq 14
    [ 1.894485] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6fa8 irq 15
    [ 1.894822] ata2: port disabled. ignoring.
    [ 2.053718] ata1.00: ATAPI: CD-RW/DVD-ROM DW224EV, D.CF, max UDMA/33
    [ 2.066932] ata1.00: configured for UDMA/33
    [ 2.069600] scsi 0:0:0:0: CD-ROM TEAC CDRWDVD DW224EV D.CF PQ: 0 ANSI: 5
    [ 2.078842] ahci 0000:00:1f.2: version 3.0
    [ 2.078863] ahci 0000:00:1f.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 2.079123] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
    [ 2.079207] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x5 impl SATA mode
    [ 2.079291] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
    [ 2.079375] ahci 0000:00:1f.2: setting latency timer to 64
    [ 2.084142] scsi2 : ahci
    [ 2.084346] scsi3 : ahci
    [ 2.084543] scsi4 : ahci
    [ 2.084859] ata3: SATA max UDMA/133 abar m2048@0xfe9fb800 port 0xfe9fb900 irq 45
    [ 2.084935] ata4: DUMMY
    [ 2.084964] ata5: SATA max UDMA/133 abar m2048@0xfe9fb800 port 0xfe9fba00 irq 45
    [ 2.087493] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
    [ 2.087564] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.087898] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 2.403362] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.403454] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.406706] ata3.00: ATA-8: FUJITSU MHW2080BH, 0085001C, max UDMA/100
    [ 2.409686] ata3.00: 156301488 sectors, multi 8: LBA48 NCQ (depth 31/32), AA
    [ 2.413635] ata3.00: configured for UDMA/100
    [ 2.416701] scsi 2:0:0:0: Direct-Access ATA FUJITSU MHW2080B 0085 PQ: 0 ANSI: 5
    [ 2.431871] sd 2:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 2.435016] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.438062] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.438092] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.481026] sda: sda1 sda2 sda3 sda4
    [ 2.484500] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 3.080357] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.235421] udevd[242]: starting version 171
    [ 6.112926] wmi: Mapper loaded
    [ 6.146108] thermal LNXTHERM:00: registered as thermal_zone0
    [ 6.146113] ACPI: Thermal Zone [THM] (51 C)
    [ 6.146168] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.146178] ACPI: Battery Slot [BAT0] (battery present)
    [ 6.350955] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.351124] ACPI: AC Adapter [AC] (off-line)
    [ 6.396340] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 6.644301] r592 0000:03:01.2: PCI INT B -> GSI 18 (level, low) -> IRQ 18
    [ 6.644566] r592: driver successfully loaded
    [ 6.699202] ACPI: acpi_idle registered with cpuidle
    [ 6.703690] Monitor-Mwait will be used to enter C-1 state
    [ 6.704291] Monitor-Mwait will be used to enter C-2 state
    [ 6.707773] Monitor-Mwait will be used to enter C-3 state
    [ 6.707782] Marking TSC unstable due to TSC halts in idle
    [ 6.708021] Switching to clocksource hpet
    [ 6.748943] tg3.c:v3.117 (January 25, 2011)
    [ 6.748973] tg3 0000:09:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 6.748993] tg3 0000:09:00.0: setting latency timer to 64
    [ 6.777884] input: Dell WMI hotkeys as /devices/virtual/input/input5
    [ 6.781361] iTCO_vendor_support: vendor-support=0
    [ 6.792450] tg3 0000:09:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1a:a0:ff:18:0a
    [ 6.792457] tg3 0000:09:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0])
    [ 6.792462] tg3 0000:09:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[0]
    [ 6.792467] tg3 0000:09:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    [ 6.798284] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 6.798408] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x1060)
    [ 6.798487] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 6.801214] firewire_ohci 0000:03:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 6.806086] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 6.860147] firewire_ohci: Added fw-ohci device 0000:03:01.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x1
    [ 6.864325] sdhci: Secure Digital Host Controller Interface driver
    [ 6.864328] sdhci: Copyright(c) Pierre Ossman
    [ 6.905947] sdhci-pci 0000:03:01.1: SDHCI controller found [1180:0822] (rev 22)
    [ 6.905970] sdhci-pci 0000:03:01.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
    [ 6.907018] _regulator_get: 0000:03:01.1 supply vmmc not found, using dummy regulator
    [ 6.908074] Registered led device: mmc0::
    [ 6.909131] mmc0: SDHCI controller on PCI [0000:03:01.1] using DMA
    [ 7.025015] sr 0:0:0:0: Attached scsi generic sg0 type 5
    [ 7.025072] sd 2:0:0:0: Attached scsi generic sg1 type 0
    [ 7.028152] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 7.151001] usbcore: registered new interface driver usbfs
    [ 7.151243] usbcore: registered new interface driver hub
    [ 7.152609] usbcore: registered new device driver usb
    [ 7.330432] input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input7
    [ 7.346790] input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input8
    [ 7.360146] firewire_core: created device fw0: GUID 374fc00003055581, S400
    [ 7.371707] cfg80211: Calling CRDA to update world regulatory domain
    [ 7.580439] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 7.580508] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    [ 7.580544] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 7.580549] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 7.580597] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 7.593422] ehci_hcd 0000:00:1a.7: debug port 1
    [ 7.597307] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    [ 7.597332] ehci_hcd 0000:00:1a.7: irq 22, io mem 0xfed1c400
    [ 7.610090] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 7.610350] hub 1-0:1.0: USB hub found
    [ 7.610357] hub 1-0:1.0: 4 ports detected
    [ 7.610503] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [ 7.610534] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 7.610540] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 7.610553] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 7.620125] ehci_hcd 0000:00:1d.7: debug port 1
    [ 7.624008] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 7.624033] ehci_hcd 0000:00:1d.7: irq 20, io mem 0xfed1c000
    [ 7.636706] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 7.636983] hub 2-0:1.0: USB hub found
    [ 7.636990] hub 2-0:1.0: 6 ports detected
    [ 7.652500] uhci_hcd: USB Universal Host Controller Interface driver
    [ 7.652595] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [ 7.653363] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 7.653370] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 7.653388] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 7.670218] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f20
    [ 7.670496] hub 3-0:1.0: USB hub found
    [ 7.670503] hub 3-0:1.0: 2 ports detected
    [ 7.670641] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 7.670654] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 7.670659] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 7.670672] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 7.676788] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f00
    [ 7.677040] hub 4-0:1.0: USB hub found
    [ 7.677047] hub 4-0:1.0: 2 ports detected
    [ 7.677185] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [ 7.677199] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 7.677204] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 7.677216] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    [ 7.693417] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f80
    [ 7.693690] hub 5-0:1.0: USB hub found
    [ 7.693697] hub 5-0:1.0: 2 ports detected
    [ 7.693825] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 7.693838] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 7.693843] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 7.693855] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    [ 7.706742] uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f60
    [ 7.707004] hub 6-0:1.0: USB hub found
    [ 7.707011] hub 6-0:1.0: 2 ports detected
    [ 7.707138] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    [ 7.707151] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 7.707156] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 7.707168] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    [ 7.720067] uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40
    [ 7.720328] hub 7-0:1.0: USB hub found
    [ 7.720335] hub 7-0:1.0: 2 ports detected
    [ 7.725543] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    [ 7.731070] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 7.731112] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 7.791352] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
    [ 7.791357] iwl3945: Copyright(c) 2003-2011 Intel Corporation
    [ 7.791444] iwl3945 0000:0c:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 7.791461] iwl3945 0000:0c:00.0: setting latency timer to 64
    [ 7.884213] iwl3945 0000:0c:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
    [ 7.884219] iwl3945 0000:0c:00.0: Detected Intel Wireless WiFi Link 3945ABG
    [ 7.884373] iwl3945 0000:0c:00.0: irq 47 for MSI/MSI-X
    [ 7.884664] Registered led device: phy0-led
    [ 7.892327] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
    [ 8.036178] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
    [ 8.073586] input: HDA Intel Mic at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 8.073775] input: HDA Intel HP Out at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 8.073882] input: HDA Intel HP Out at Ext Front Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 9.476644] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 9.636841] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 9.685426] Adding 4096568k swap on /dev/sda2. Priority:-1 extents:1 across:4096568k
    [ 11.639232] tg3 0000:09:00.0: irq 48 for MSI/MSI-X
    [ 13.282530] tg3 0000:09:00.0: eth0: Link is up at 100 Mbps, full duplex
    [ 13.282535] tg3 0000:09:00.0: eth0: Flow control is off for TX and off for RX
    [ 27.318984] NET: Registered protocol family 10
    [ 38.070217] eth0: no IPv6 routers present
    [ 1205.294621] chromium-sandbo (1490): /proc/1488/oom_adj is deprecated, please use /proc/1488/oom_score_adj instead.
    Here is my rfkill list output:
    0: dell-wifi: Wireless LAN
    Soft blocked: yes
    Hard blocked: yes
    1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: yes
    my lsmod and lspci output is the same.
    I am on an dell insprion 1420. I have also tried to disable the dell-laptop module to no avail
    Last edited by n0dl (2011-07-27 14:45:25)

  • Update kernel and recieved a "Machine check error"

    I was on Vacation this last weekend but was finally able to update today. Upgrade seemd fine, issued reboot command and instead of my normal reboot I was greeted with "machine check error" flashing in my upper left hand corner. Syslinux never came up. I powered off manually and pulled the battery, subsequent reboot went off without a hitch.
    pacman log
    [2013-09-09 18:12] [PACMAN] Running 'pacman -Syyu'
    [2013-09-09 18:12] [PACMAN] synchronizing package lists
    [2013-09-09 18:12] [PACMAN] starting full system upgrade
    [2013-09-09 18:13] [PACMAN] upgraded curl (7.32.0-1 -> 7.32.0-2)
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'default'
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Starting build: 3.11.0-1-ck
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-ck.preset: 'fallback'
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux-ck -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-ck-fallback.img -S autodetect
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Starting build: 3.11.0-1-ck
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-ck-fallback.img
    [2013-09-09 18:13] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Thank you for using http://repo-ck.com/ for your linux-ck package needs.
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Note that the following CPU optimized packages are or could be available to you:
    [2013-09-09 18:13] [ALPM-SCRIPTLET] AMD : barcelona, bulldozer, kx, k10, piledriver
    [2013-09-09 18:13] [ALPM-SCRIPTLET] Intel : atom, core2, haswell, ivybridge, nehalem, p4, pentm, sandybridge, haswell
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Search via group name: pacman -Sg ck-ivybridge
    [2013-09-09 18:13] [ALPM-SCRIPTLET]
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> Post in the repo support thread if package group is unavailable for your architecture:
    [2013-09-09 18:13] [ALPM-SCRIPTLET] >>> https://bbs.archlinux.org/viewtopic.php?id=111715
    [2013-09-09 18:13] [PACMAN] upgraded linux-ck-sandybridge (3.10.10-1 -> 3.11-1)
    [2013-09-09 18:13] [PACMAN] upgraded linux-ck-sandybridge-headers (3.10.10-1 -> 3.11-1)
    [2013-09-09 18:13] [ALPM-SCRIPTLET] rmmod: ERROR: Module nvidia is not currently loaded
    [2013-09-09 18:13] [ALPM-SCRIPTLET] In order to use the new nvidia module, exit Xserver and unload it manually.
    [2013-09-09 18:13] [PACMAN] upgraded nvidia-ck (325.15-5 -> 325.15-6)
    [2013-09-09 18:13] [PACMAN] upgraded parallel (20130722-1 -> 20130822-1)
    [2013-09-09 18:13] [PACMAN] upgraded portaudio (19_20111121-1 -> 19_20111121-2)
    [2013-09-09 18:13] [PACMAN] upgraded weechat (0.4.1-2 -> 0.4.1-4)
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Linux version 3.11.0-1-ck (squishy@ease) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Sep 9 08:00:27 EDT 2013
    [ 0.000000] Command line: initrd=/initramfs-linux-ck.img root=/dev/disk/by-uuid/0d909b36-6c1e-4652-abc6-5813297f38d5 rootflags=,relatime,data=ordered rootfstype=ext4 rw quiet vga=current elevator=noop BOOT_IMAGE=/vmlinuz-linux-ck
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000bac11fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bac12000-0x00000000bad8dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bad8e000-0x00000000bad9bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bad9c000-0x00000000bad9dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bad9e000-0x00000000bad9ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bada0000-0x00000000bade7fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bade8000-0x00000000baf2bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baf2c000-0x00000000baf91fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baf92000-0x00000000baf97fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baf98000-0x00000000bafe7fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bafe8000-0x00000000baffcfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baffd000-0x00000000baffffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff980000-0x00000000ffbfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. RC512/RC512, BIOS 06VQ.M024.20110212.SSH 02/12/2011
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x23fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 3 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 4 base 100000000 mask F00000000 write-back
    [ 0.000000] 5 base 200000000 mask FC0000000 write-back
    [ 0.000000] 6 base 23FE00000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xbaffd max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fccd0-0x000fccdf] mapped at [ffff8800000fccd0]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] reserving inaccessible SNB gfx pages
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b0d000, 0x01b0dfff] PGTABLE
    [ 0.000000] BRK [0x01b0e000, 0x01b0efff] PGTABLE
    [ 0.000000] BRK [0x01b0f000, 0x01b0ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23fc00000-0x23fdfffff]
    [ 0.000000] [mem 0x23fc00000-0x23fdfffff] page 2M
    [ 0.000000] BRK [0x01b10000, 0x01b10fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23c000000-0x23fbfffff]
    [ 0.000000] [mem 0x23c000000-0x23fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
    [ 0.000000] [mem 0x200000000-0x23bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x40200000-0xbac11fff]
    [ 0.000000] [mem 0x40200000-0xbabfffff] page 2M
    [ 0.000000] [mem 0xbac00000-0xbac11fff] page 4k
    [ 0.000000] BRK [0x01b11000, 0x01b11fff] PGTABLE
    [ 0.000000] BRK [0x01b12000, 0x01b12fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbad8e000-0xbad9bfff]
    [ 0.000000] [mem 0xbad8e000-0xbad9bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbad9e000-0xbad9ffff]
    [ 0.000000] [mem 0xbad9e000-0xbad9ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbade8000-0xbaf2bfff]
    [ 0.000000] [mem 0xbade8000-0xbaf2bfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbaf92000-0xbaf97fff]
    [ 0.000000] [mem 0xbaf92000-0xbaf97fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbafe8000-0xbaffcfff]
    [ 0.000000] [mem 0xbafe8000-0xbaffcfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x1fd18000-0x1fffefff]
    [ 0.000000] ACPI: RSDP 00000000000f0430 00024 (v02 SECCSD)
    [ 0.000000] ACPI: XSDT 00000000baffee18 0006C (v01 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI: FACP 00000000baf9bd98 000F4 (v04 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20130517/tbfadt-395)
    [ 0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT - 0xBAFE5E40/0x00000000BAFE5D40, using 32 (20130517/tbfadt-522)
    [ 0.000000] ACPI: DSDT 00000000baf84018 0866F (v01 SECCSD LH43STAR 00000000 INTL 20091112)
    [ 0.000000] ACPI: FACS 00000000bafe5e40 00040
    [ 0.000000] ACPI: APIC 00000000baffdf18 000CC (v02 SECCSD LH43STAR 06222004 MSFT 00010013)
    [ 0.000000] ACPI: HPET 00000000bafe6d18 00038 (v01 SECCSD LH43STAR 06222004 AMI. 00000003)
    [ 0.000000] ACPI: SLIC 00000000baf9cc18 00176 (v01 SECCSD LH43STAR 06222004 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000bafe6c98 0003C (v01 SECCSD LH43STAR 06222004 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000baf91018 00A1D (v01 PmRef Cpu0Ist 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf90018 00996 (v01 PmRef CpuPm 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf9a018 00D80 (v01 SgRef SgTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000baf98018 011E8 (v01 OptRef OptTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237400000-ffff88023f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x23fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xbac11fff]
    [ 0.000000] node 0: [mem 0xbad8e000-0xbad9bfff]
    [ 0.000000] node 0: [mem 0xbad9e000-0xbad9ffff]
    [ 0.000000] node 0: [mem 0xbade8000-0xbaf2bfff]
    [ 0.000000] node 0: [mem 0xbaf92000-0xbaf97fff]
    [ 0.000000] node 0: [mem 0xbafe8000-0xbaffcfff]
    [ 0.000000] node 0: [mem 0x100000000-0x23fdfffff]
    [ 0.000000] On node 0 totalpages: 2074398
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 157 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11879 pages used for memmap
    [ 0.000000] DMA32 zone: 760193 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20472 pages used for memmap
    [ 0.000000] Normal zone: 1310208 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x08] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x09] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0a] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0c] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0d] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0e] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x0f] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 16 CPUs, 8 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbac12000-0xbad8dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbad9c000-0xbad9dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbada0000-0xbade7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf2c000-0xbaf91fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf98000-0xbafe7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaffd000-0xbaffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff97ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff980000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffd7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:16 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023fa00000 s84096 r8192 d22400 u131072
    [ 0.000000] pcpu-alloc: s84096 r8192 d22400 u131072 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2041826
    [ 0.000000] Kernel command line: initrd=/initramfs-linux-ck.img root=/dev/disk/by-uuid/0d909b36-6c1e-4652-abc6-5813297f38d5 rootflags=,relatime,data=ordered rootfstype=ext4 rw quiet vga=current elevator=noop BOOT_IMAGE=/vmlinuz-linux-ck
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 8071168K/8297592K available (4912K kernel code, 725K rwdata, 1676K rodata, 1104K init, 1260K bss, 226424K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:1192 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 1995.468 MHz processor
    [ 0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.22 BogoMIPS (lpj=6651560)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000051] Security Framework initialized
    [ 0.000058] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000069] Mount-cache hash table entries: 256
    [ 0.000253] Initializing cgroup subsys memory
    [ 0.000263] Initializing cgroup subsys devices
    [ 0.000265] Initializing cgroup subsys freezer
    [ 0.000267] Initializing cgroup subsys net_cls
    [ 0.000268] Initializing cgroup subsys blkio
    [ 0.000270] Initializing cgroup subsys bfqio
    [ 0.000294] CPU: Physical Processor ID: 0
    [ 0.000295] CPU: Processor Core ID: 0
    [ 0.000300] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.000303] mce: CPU supports 9 MCE banks
    [ 0.000318] CPU0: Thermal monitoring enabled (TM1)
    [ 0.000330] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    [ 0.000467] Freeing SMP alternatives memory: 20K (ffffffff819cb000 - ffffffff819d0000)
    [ 0.001938] ACPI: Core revision 20130517
    [ 0.008675] ACPI: All ACPI Tables successfully acquired
    [ 0.016462] ftrace: allocating 19779 entries in 78 pages
    [ 0.027603] Switched APIC routing to physical flat.
    [ 0.028009] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061003] smpboot: CPU0: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (fam: 06, model: 2a, stepping: 07)
    [ 0.061011] TSC deadline timer enabled
    [ 0.061026] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    [ 0.061034] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    [ 0.061036] ... version: 3
    [ 0.061037] ... bit width: 48
    [ 0.061038] ... generic registers: 4
    [ 0.061040] ... value mask: 0000ffffffffffff
    [ 0.061041] ... max period: 0000ffffffffffff
    [ 0.061042] ... fixed-purpose events: 3
    [ 0.061043] ... event mask: 000000070000000f
    [ 0.084503] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.071127] smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7
    [ 0.164288] Brought up 8 CPUs
    [ 0.164293] smpboot: Total of 8 processors activated (31940.80 BogoMIPS)
    [ 0.172724] devtmpfs: initialized
    [ 0.174171] PM: Registering ACPI NVS region [mem 0xbaf2c000-0xbaf91fff] (417792 bytes)
    [ 0.174179] PM: Registering ACPI NVS region [mem 0xbaf98000-0xbafe7fff] (327680 bytes)
    [ 0.175128] RTC time: 1:14:39, date: 09/10/13
    [ 0.175188] NET: Registered protocol family 16
    [ 0.175350] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.175353] ACPI: bus type PCI registered
    [ 0.175355] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.175429] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.175432] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.185354] PCI: Using configuration type 1 for base access
    [ 0.186084] bio: create slab <bio-0> at 0
    [ 0.186285] ACPI: Added _OSI(Module Device)
    [ 0.186287] ACPI: Added _OSI(Processor Device)
    [ 0.186289] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.186291] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.187915] ACPI: EC: Look up EC in DSDT
    [ 0.189513] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.239236] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.241431] ACPI: SSDT 00000000badba718 00661 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.241847] ACPI: Dynamic OEM Table Load:
    [ 0.241850] ACPI: SSDT (null) 00661 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.252823] ACPI: SSDT 00000000badbba98 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.253271] ACPI: Dynamic OEM Table Load:
    [ 0.253273] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.266019] ACPI: SSDT 00000000badb9d98 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 0.266428] ACPI: Dynamic OEM Table Load:
    [ 0.266430] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 1.207371] ACPI: Interpreter enabled
    [ 1.207386] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 1.207404] ACPI: (supports S0 S1 S3 S4 S5)
    [ 1.207406] ACPI: Using IOAPIC for interrupt routing
    [ 1.207438] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 1.207580] ACPI: No dock devices found.
    [ 1.221274] ACPI: Power Resource [FN00] (off)
    [ 1.221369] ACPI: Power Resource [FN01] (off)
    [ 1.222064] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 1.222103] \_SB_.PCI0:_OSC invalid UUID
    [ 1.222105] _OSC request data:1 8 0
    [ 1.222659] PCI host bridge to bus 0000:00
    [ 1.222663] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 1.222665] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 1.222668] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 1.222670] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 1.222672] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 1.222674] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 1.222676] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 1.222678] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 1.222680] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 1.222682] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 1.222684] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 1.222686] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    [ 1.222695] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    [ 1.222797] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    [ 1.222833] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 1.222921] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    [ 1.222933] pci 0000:00:02.0: reg 0x10: [mem 0xf5400000-0xf57fffff 64bit]
    [ 1.222941] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 1.222951] pci 0000:00:02.0: reg 0x20: [io 0xe000-0xe03f]
    [ 1.223070] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 1.223097] pci 0000:00:16.0: reg 0x10: [mem 0xf760a000-0xf760a00f 64bit]
    [ 1.223179] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 1.223280] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 1.223304] pci 0000:00:1a.0: reg 0x10: [mem 0xf7608000-0xf76083ff]
    [ 1.223402] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 1.223495] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 1.223514] pci 0000:00:1b.0: reg 0x10: [mem 0xf7600000-0xf7603fff 64bit]
    [ 1.223588] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 1.223678] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 1.223764] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 1.223823] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 1.223866] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    [ 1.223952] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 1.224010] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 1.224050] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
    [ 1.224135] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 1.224238] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 1.224262] pci 0000:00:1d.0: reg 0x10: [mem 0xf7607000-0xf76073ff]
    [ 1.224360] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 1.224451] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    [ 1.224646] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    [ 1.224668] pci 0000:00:1f.2: reg 0x10: [io 0xe0b0-0xe0b7]
    [ 1.224677] pci 0000:00:1f.2: reg 0x14: [io 0xe0a0-0xe0a3]
    [ 1.224686] pci 0000:00:1f.2: reg 0x18: [io 0xe090-0xe097]
    [ 1.224695] pci 0000:00:1f.2: reg 0x1c: [io 0xe080-0xe083]
    [ 1.224704] pci 0000:00:1f.2: reg 0x20: [io 0xe060-0xe07f]
    [ 1.224714] pci 0000:00:1f.2: reg 0x24: [mem 0xf7606000-0xf76067ff]
    [ 1.224763] pci 0000:00:1f.2: PME# supported from D3hot
    [ 1.224847] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 1.224866] pci 0000:00:1f.3: reg 0x10: [mem 0xf7605000-0xf76050ff 64bit]
    [ 1.224889] pci 0000:00:1f.3: reg 0x20: [io 0xe040-0xe05f]
    [ 1.225036] pci 0000:01:00.0: [10de:0dec] type 00 class 0x030200
    [ 1.225046] pci 0000:01:00.0: reg 0x10: [mem 0xf4000000-0xf4ffffff]
    [ 1.225055] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 1.225065] pci 0000:01:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 64bit pref]
    [ 1.225072] pci 0000:01:00.0: reg 0x24: [io 0xd000-0xd07f]
    [ 1.225079] pci 0000:01:00.0: reg 0x30: [mem 0xf5000000-0xf507ffff pref]
    [ 1.232978] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.232986] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.232994] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
    [ 1.233003] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.233136] pci 0000:02:00.0: [8086:0087] type 00 class 0x028000
    [ 1.233183] pci 0000:02:00.0: reg 0x10: [mem 0xf6c00000-0xf6c01fff 64bit]
    [ 1.233407] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 1.243003] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.243013] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.243022] pci 0000:00:1c.0: bridge window [mem 0xf6c00000-0xf75fffff]
    [ 1.243037] pci 0000:00:1c.0: bridge window [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.243204] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
    [ 1.243274] pci 0000:03:00.0: reg 0x10: [io 0xb000-0xb0ff]
    [ 1.243396] pci 0000:03:00.0: reg 0x18: [mem 0xe2c04000-0xe2c04fff 64bit pref]
    [ 1.243467] pci 0000:03:00.0: reg 0x20: [mem 0xe2c00000-0xe2c03fff 64bit pref]
    [ 1.243797] pci 0000:03:00.0: supports D1 D2
    [ 1.243799] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.253026] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 1.253036] pci 0000:00:1c.3: bridge window [io 0xb000-0xbfff]
    [ 1.253045] pci 0000:00:1c.3: bridge window [mem 0xf6200000-0xf6bfffff]
    [ 1.253060] pci 0000:00:1c.3: bridge window [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.253163] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330
    [ 1.253193] pci 0000:04:00.0: reg 0x10: [mem 0xf5800000-0xf5801fff 64bit]
    [ 1.253333] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
    [ 1.263010] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 1.263020] pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    [ 1.263029] pci 0000:00:1c.4: bridge window [mem 0xf5800000-0xf61fffff]
    [ 1.263043] pci 0000:00:1c.4: bridge window [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.263086] pci_bus 0000:00: on NUMA node 0
    [ 1.263130] \_SB_.PCI0:_OSC invalid UUID
    [ 1.263131] _OSC request data:1 1f 0
    [ 1.263135] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 1.263137] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 1.263659] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 1.263721] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 1.263779] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 1.263838] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 10 11 12 14 15)
    [ 1.263896] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 1.263956] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 1.264015] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 10 11 12 14 15)
    [ 1.264073] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 *4 5 6 10 11 12 14 15)
    [ 1.264724] ACPI: Enabled 6 GPEs in block 00 to 3F
    [ 1.264732] ACPI: \_SB_.PCI0: notify handler is installed
    [ 1.264797] Found 1 acpi root devices
    [ 1.264842] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 1.264936] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.264940] vgaarb: loaded
    [ 1.264941] vgaarb: bridge control possible 0000:00:02.0
    [ 1.264981] PCI: Using ACPI for IRQ routing
    [ 1.266623] PCI: pci_cache_line_size set to 64 bytes
    [ 1.266695] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    [ 1.266697] e820: reserve RAM buffer [mem 0xbac12000-0xbbffffff]
    [ 1.266700] e820: reserve RAM buffer [mem 0xbad9c000-0xbbffffff]
    [ 1.266702] e820: reserve RAM buffer [mem 0xbada0000-0xbbffffff]
    [ 1.266705] e820: reserve RAM buffer [mem 0xbaf2c000-0xbbffffff]
    [ 1.266706] e820: reserve RAM buffer [mem 0xbaf98000-0xbbffffff]
    [ 1.266708] e820: reserve RAM buffer [mem 0xbaffd000-0xbbffffff]
    [ 1.266710] e820: reserve RAM buffer [mem 0x23fe00000-0x23fffffff]
    [ 1.266803] NetLabel: Initializing
    [ 1.266805] NetLabel: domain hash size = 128
    [ 1.266806] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.266821] NetLabel: unlabeled traffic allowed by default
    [ 1.266851] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.266857] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.268893] Switched to clocksource hpet
    [ 1.273524] pnp: PnP ACPI init
    [ 1.273541] ACPI: bus type PNP registered
    [ 1.273643] system 00:00: [io 0x06a4] has been reserved
    [ 1.273646] system 00:00: [io 0x06a0] has been reserved
    [ 1.273650] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.273660] pnp 00:01: [dma 4]
    [ 1.273681] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 1.273705] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 1.273820] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 1.273850] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 1.273897] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 1.273900] system 00:05: [io 0x1000-0x100f] has been reserved
    [ 1.273902] system 00:05: [io 0xffff] has been reserved
    [ 1.273904] system 00:05: [io 0xffff] has been reserved
    [ 1.273907] system 00:05: [io 0x0400-0x0453] could not be reserved
    [ 1.273909] system 00:05: [io 0x0458-0x047f] has been reserved
    [ 1.273911] system 00:05: [io 0x0500-0x057f] has been reserved
    [ 1.273913] system 00:05: [io 0x0a00-0x0a03] has been reserved
    [ 1.273915] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 1.273918] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.273966] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.274009] system 00:07: [io 0x0454-0x0457] has been reserved
    [ 1.274013] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 1.274065] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 1.274118] pnp 00:09: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
    [ 1.274348] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.274351] system 00:0a: [mem 0xfed10000-0xfed17fff] could not be reserved
    [ 1.274353] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.274355] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.274358] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 1.274360] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 1.274362] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 1.274364] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 1.274367] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
    [ 1.274369] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 1.274372] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
    [ 1.274375] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.274919] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
    [ 1.274921] system 00:0b: [mem 0x40000000-0x401fffff] has been reserved
    [ 1.274924] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 1.274936] pnp: PnP ACPI: found 12 devices
    [ 1.274937] ACPI: bus type PNP unregistered
    [ 1.281089] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.281093] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 1.281097] pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
    [ 1.281100] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.281104] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.281108] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 1.281114] pci 0000:00:1c.0: bridge window [mem 0xf6c00000-0xf75fffff]
    [ 1.281118] pci 0000:00:1c.0: bridge window [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.281125] pci 0000:00:1c.3: PCI bridge to [bus 03]
    [ 1.281129] pci 0000:00:1c.3: bridge window [io 0xb000-0xbfff]
    [ 1.281135] pci 0000:00:1c.3: bridge window [mem 0xf6200000-0xf6bfffff]
    [ 1.281140] pci 0000:00:1c.3: bridge window [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.281147] pci 0000:00:1c.4: PCI bridge to [bus 04]
    [ 1.281150] pci 0000:00:1c.4: bridge window [io 0xa000-0xafff]
    [ 1.281156] pci 0000:00:1c.4: bridge window [mem 0xf5800000-0xf61fffff]
    [ 1.281161] pci 0000:00:1c.4: bridge window [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.281460] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.281462] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.281464] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.281466] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 1.281468] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 1.281470] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 1.281472] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 1.281474] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 1.281476] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 1.281478] pci_bus 0000:00: resource 13 [mem 0xbfa00000-0xfeafffff]
    [ 1.281480] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
    [ 1.281482] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 1.281484] pci_bus 0000:01: resource 1 [mem 0xf4000000-0xf50fffff]
    [ 1.281486] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xe1ffffff 64bit pref]
    [ 1.281488] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 1.281490] pci_bus 0000:02: resource 1 [mem 0xf6c00000-0xf75fffff]
    [ 1.281492] pci_bus 0000:02: resource 2 [mem 0xe3700000-0xe40fffff 64bit pref]
    [ 1.281494] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 1.281496] pci_bus 0000:03: resource 1 [mem 0xf6200000-0xf6bfffff]
    [ 1.281498] pci_bus 0000:03: resource 2 [mem 0xe2c00000-0xe35fffff 64bit pref]
    [ 1.281500] pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    [ 1.281502] pci_bus 0000:04: resource 1 [mem 0xf5800000-0xf61fffff]
    [ 1.281504] pci_bus 0000:04: resource 2 [mem 0xe2100000-0xe2afffff 64bit pref]
    [ 1.281541] NET: Registered protocol family 2
    [ 1.281696] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.281865] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.282015] TCP: Hash tables configured (established 65536 bind 65536)
    [ 1.282036] TCP: reno registered
    [ 1.282039] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.282068] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.282163] NET: Registered protocol family 1
    [ 1.282176] pci 0000:00:02.0: Boot video device
    [ 1.529060] PCI: CLS 64 bytes, default 64
    [ 1.529098] Unpacking initramfs...
    [ 1.590479] Freeing initrd memory: 2972K (ffff88001fd18000 - ffff88001ffff000)
    [ 1.591336] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.591340] software IO TLB [mem 0xb6c12000-0xbac12000] (64MB) mapped at [ffff8800b6c12000-ffff8800bac11fff]
    [ 1.591697] Scanning for low memory corruption every 60 seconds
    [ 1.592068] audit: initializing netlink socket (disabled)
    [ 1.592079] type=2000 audit(1378775680.569:1): initialized
    [ 1.605419] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.606685] zbud: loaded
    [ 1.606816] VFS: Disk quotas dquot_6.5.2
    [ 1.606867] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.607049] msgmni has been set to 15769
    [ 1.607262] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.607320] io scheduler noop registered (default)
    [ 1.607324] io scheduler deadline registered
    [ 1.607360] io scheduler cfq registered
    [ 1.607365] io scheduler bfq registered
    [ 1.607452] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 1.607633] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.607648] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.607731] intel_idle: MWAIT substates: 0x21120
    [ 1.607733] intel_idle: v0.4 model 0x2A
    [ 1.607734] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.607793] GHES: HEST is not enabled!
    [ 1.607848] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.608292] Linux agpgart interface v0.103
    [ 1.608376] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PSM1] at 0x60,0x64 irq 1,12
    [ 1.611674] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.611689] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.611796] mousedev: PS/2 mouse device common for all mice
    [ 1.611968] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 1.611998] rtc_cmos 00:06: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 1.612007] Intel P-state driver initializing.
    [ 1.612017] Intel pstate controlling: cpu 0
    [ 1.612032] Intel pstate controlling: cpu 1
    [ 1.612043] Intel pstate controlling: cpu 2
    [ 1.612054] Intel pstate controlling: cpu 3
    [ 1.612065] Intel pstate controlling: cpu 4
    [ 1.612076] Intel pstate controlling: cpu 5
    [ 1.612089] Intel pstate controlling: cpu 6
    [ 1.612100] Intel pstate controlling: cpu 7
    [ 1.612312] cpuidle: using governor ladder
    [ 1.612573] cpuidle: using governor menu
    [ 1.612636] drop_monitor: Initializing network drop monitor service
    [ 1.612712] TCP: cubic registered
    [ 1.612809] NET: Registered protocol family 10
    [ 1.612992] NET: Registered protocol family 17
    [ 1.613001] Key type dns_resolver registered
    [ 1.613275] PM: Hibernation image not present or could not be loaded.
    [ 1.613285] registered taskstats version 1
    [ 1.613900] Magic number: 13:40:205
    [ 1.613944] acpi device:2d: hash matches
    [ 1.613991] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.614015] rtc_cmos 00:06: setting system clock to 2013-09-10 01:14:41 UTC (1378775681)
    [ 1.614893] Freeing unused kernel memory: 1104K (ffffffff818b7000 - ffffffff819cb000)
    [ 1.614895] Write protecting the kernel read-only data: 8192k
    [ 1.619318] Freeing unused kernel memory: 1220K (ffff8800014cf000 - ffff880001600000)
    [ 1.620313] Freeing unused kernel memory: 372K (ffff8800017a3000 - ffff880001800000)
    [ 1.620314] BFS CPU scheduler v0.441 by Con Kolivas.
    [ 1.627488] systemd-udevd[77]: starting version 204
    [ 1.629471] SCSI subsystem initialized
    [ 1.630602] ACPI: bus type ATA registered
    [ 1.630697] libata version 3.00 loaded.
    [ 1.631357] ahci 0000:00:1f.2: version 3.0
    [ 1.631500] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 1.642171] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0WARNINGx5 impl SATA mode
    [ 1.642175] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
    [ 1.642181] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.649744] scsi0 : ahciWARNING
    [ 1.650013] scsi1 : ahci
    [ 1.650141] scsi2 : ahci
    [ 1.650269] scsi3 : ahci
    [ 1.650401] scsi4 : ahci
    [ 1.650493] scsi5 : ahci
    [ 1.650686] ata1: SATA max UDMA/133 abar m2048@0xf7606000 port 0xf7606100 irq 41
    [ 1.650690] ata2: DUMMY
    [ 1.650694] ata3: SATA max UDMA/133 abar m2048@0xf7606000 port 0xf7606200 irq 41
    [ 1.650696] ata4: DUMMY
    [ 1.650698] ata5: DUMMY
    [ 1.650700] ata6: DUMMY
    [ 1.968795] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.968841] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.969674] ata1.00: ATA-9: M4-CT256M4SSD2, 010G, max UDMA/100
    [ 1.969683] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.970728] ata1.00: configured for UDMA/100
    [ 1.970980] scsi 0:0:0:0: Direct-Access ATA M4-CT256M4SSD2 010G PQ: 0 ANSI: 5
    [ 1.971592] ata3.00: ATAPI: TSSTcorp DVDWBD TS-LB23A, SC01, max UDMA/100
    [ 1.972317] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 1.972530] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.972535] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.972581] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.972980] ata3.00: configured for UDMA/100
    [ 1.974516] sda: sda1 sda2 sda3 sda4 sda5 sda6
    [ 1.975127] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.976456] scsi 2:0:0:0: CD-ROM TSSTcorp DVDWBD TS-LB23A SC01 PQ: 0 ANSI: 5
    [ 1.979211] ACPI: bus type USB registered
    [ 1.979276] usbcore: registered new interface driver usbfs
    [ 1.979339] usbcore: registered new interface driver hub
    [ 1.979451] usbcore: registered new device driver usb
    [ 1.980016] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.980024] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
    [ 1.980224] xhci_hcd 0000:04:00.0: irq 42 for MSI/MSI-X
    [ 1.980231] xhci_hcd 0000:04:00.0: irq 43 for MSI/MSI-X
    [ 1.980237] xhci_hcd 0000:04:00.0: irq 44 for MSI/MSI-X
    [ 1.980244] xhci_hcd 0000:04:00.0: irq 45 for MSI/MSI-X
    [ 1.980251] xhci_hcd 0000:04:00.0: irq 46 for MSI/MSI-X
    [ 1.980257] xhci_hcd 0000:04:00.0: irq 47 for MSI/MSI-X
    [ 1.980264] xhci_hcd 0000:04:00.0: irq 48 for MSI/MSI-X
    [ 1.980271] xhci_hcd 0000:04:00.0: irq 49 for MSI/MSI-X
    [ 1.980520] xHCI xhci_add_endpoint called for root hub
    [ 1.980523] xHCI xhci_check_bandwidth called for root hub
    [ 1.980554] hub 1-0:1.0: USB hub found
    [ 1.980561] hub 1-0:1.0: 2 ports detected
    [ 1.980645] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.980666] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    [ 1.983135] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.983140] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.983305] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 1.983767] xHCI xhci_add_endpoint called for root hub
    [ 1.983769] xHCI xhci_check_bandwidth called for root hub
    [ 1.983799] hub 2-0:1.0: USB hub found
    [ 1.983808] hub 2-0:1.0: 2 ports detected
    [ 2.042830] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.075045] ehci-pci: EHCI PCI platform driver
    [ 2.075169] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 2.075177] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 2.075185] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 2.075200] ehci-pci 0000:00:1a.0: debug port 2
    [ 2.079109] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 2.079130] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7608000
    [ 2.088648] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 2.089496] hub 3-0:1.0: USB hub found
    [ 2.089505] hub 3-0:1.0: 2 ports detected
    [ 2.089935] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 2.089946] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 2.089954] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 2.089976] ehci-pci 0000:00:1d.0: debug port 2
    [ 2.093871] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 2.093888] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7607000
    [ 2.101986] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 2.102116] hub 4-0:1.0: USB hub found
    [ 2.102121] hub 4-0:1.0: 2 ports detected
    [ 2.134853] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 2.199793] systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 2.201658] systemd[1]: Set hostname to <watson>.
    [ 2.268492] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 2.268851] systemd[1]: Starting Collect Read-Ahead Data...
    [ 2.269341] systemd[1]: Starting Replay Read-Ahead Data...
    [ 2.269709] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 2.269820] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 2.269852] systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    [ 2.269873] systemd[1]: Starting Syslog Socket.
    [ 2.269927] systemd[1]: Listening on Syslog Socket.
    [ 2.269946] systemd[1]: Starting Remote File Systems.
    [ 2.269961] systemd[1]: Reached target Remote File Systems.
    [ 2.269975] systemd[1]: Starting Delayed Shutdown Socket.
    [ 2.270017] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 2.270038] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 2.270074] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 2.270088] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 2.270126] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 2.270140] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 2.270168] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 2.270210] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 2.270352] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 2.270370] systemd[1]: Starting Encrypted Volumes.
    [ 2.270384] systemd[1]: Reached target Encrypted Volumes.
    [ 2.270402] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 2.270449] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 2.270464] systemd[1]: Starting Paths.
    [ 2.270478] systemd[1]: Reached target Paths.
    [ 2.270494] systemd[1]: Starting Journal Socket.
    [ 2.270543] systemd[1]: Listening on Journal Socket.
    [ 2.270567] systemd[1]: Mounting POSIX Message Queue File System...
    [ 2.270849] systemd[1]: Mounting Debug File System...
    [ 2.271238] systemd[1]: Starting Create static device nodes in /dev...
    [ 2.271494] systemd-readahead[136]: Bumped block_nr parameter of 8:0 to 20480. This is a temporary hack and should be removed one day.
    [ 2.271888] systemd[1]: Starting Journal Service...
    [ 2.272443] systemd[1]: Started Journal Service.
    [ 2.272532] systemd[1]: Mounting Huge Pages File System...
    [ 2.273048] systemd[1]: Starting udev Kernel Socket.
    [ 2.273080] systemd[1]: Listening on udev Kernel Socket.
    [ 2.273155] systemd[1]: Starting udev Control Socket.
    [ 2.273189] systemd[1]: Listening on udev Control Socket.
    [ 2.273294] systemd[1]: Starting udev Coldplug all Devices...
    [ 2.273733] systemd[1]: Starting Swap.
    [ 2.273754] systemd[1]: Reached target Swap.
    [ 2.273772] systemd[1]: Expecting device dev-disk-by\x2duuid-06ee03bc\x2dca64\x2d406d\x2dbe45\x2db2b645137e08.device...
    [ 2.273786] systemd[1]: Expecting device dev-disk-by\x2duuid-5aedfe61\x2d50f2\x2d47c7\x2d82ac\x2d79930ee37462.device...
    [ 2.294504] systemd-sysctl[154]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 2.298123] EXT4-fs (sda5): re-mounted. Opts: discard
    [ 2.306988] systemd-udevd[161]: starting version 204
    [ 2.330645] FS-Cache: Loaded
    [ 2.344801] ACPI: Requesting acpi_cpufreq
    [ 2.345279] wmi: Mapper loaded
    [ 2.345847] RPC: Registered named UNIX socket transport module.
    [ 2.345849] RPC: Registered udp transport module.
    [ 2.345850] RPC: Registered tcp transport module.
    [ 2.345851] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 2.355607] FS-Cache: Netfs 'nfs' registered for caching
    [ 2.358082] ACPI: Battery Slot [BAT1] (battery present)
    [ 2.358579] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 2.358604] ACPI: Lid Switch [LID0]
    [ 2.359113] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 2.359119] ACPI: Power Button [PWRB]
    [ 2.359456] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 2.359461] ACPI: Sleep Button [SLPB]
    [ 2.359772] ACPI: AC Adapter [ADP1] (off-line)
    [ 2.360090] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 2.360096] ACPI: Power Button [PWRF]
    [ 2.374300] ACPI: Fan [FAN0] (off)
    [ 2.374551] ACPI: Fan [FAN1] (off)
    [ 2.375124] ACPI: Invalid active2 threshold
    [ 2.377341] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 2.377349] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377354] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377358] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377362] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377364] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377368] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377372] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377373] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 2.377377] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 2.377381] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.377383] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 2.378357] thermal LNXTHERM:00: registered as thermal_zone0
    [ 2.378361] ACPI: Thermal Zone [TZ00] (52 C)
    [ 2.383745] ACPI Warning: 0x000000000000e040-0x000000000000e05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 2.383753] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.383911] mei_me 0000:00:16.0: setting latency timer to 64
    [ 2.383955] mei_me 0000:00:16.0: irq 50 for MSI/MSI-X
    [ 2.386775] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 2.388164] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 2.388178] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 2.388494] r8169 0000:03:00.0: irq 51 for MSI/MSI-X
    [ 2.392549] r8169 0000:03:00.0 eth0: RTL8168e/8111e at 0xffffc90004622000, e8:11:32:25:4e:78, XID 0c200000 IRQ 51
    [ 2.392554] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 2.394650] cfg80211: Calling CRDA to update world regulatory domain
    [ 2.395234] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 2.396342] [drm] Initialized drm 1.1.0 20060810
    [ 2.397019] thermal LNXTHERM:01: registered as thermal_zone1
    [ 2.397023] ACPI: Thermal Zone [TZ01] (52 C)
    [ 2.403428] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 2.403432] Copyright(c) 2003-2013 Intel Corporation
    [ 2.403550] iwlwifi 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 2.403625] iwlwifi 0000:02:00.0: irq 52 for MSI/MSI-X
    [ 2.413574] iwlwifi 0000:02:00.0: loaded firmware version 41.28.5.1 build 33926 op_mode iwldvm
    [ 2.414850] snd_hda_intel 0000:00:1b.0: irq 53 for MSI/MSI-X
    [ 2.459516] samsung_laptop: detected SABI interface: SwSmi@
    [ 2.459520] samsung_laptop: Backlight controlled by ACPI video driver
    [ 2.475073] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 2.475258] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 2.475342] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 2.479302] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 2.479307] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 2.479310] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 2.479312] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
    [ 2.479315] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN, REV=0x84
    [ 2.479382] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 2.486443] [drm] Memory usable by graphics device = 2048M
    [ 2.486454] i915 0000:00:02.0: setting latency timer to 64
    [ 2.510361] iTCO_vendor_support: vendor-support=0
    [ 2.510974] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 2.511063] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 2.511169] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 2.515715] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 2.522955] hub 3-1:1.0: USB hub found
    [ 2.523029] hub 3-1:1.0: 6 ports detected
    [ 2.552940] i915 0000:00:02.0: irq 54 for MSI/MSI-X
    [ 2.552952] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.552953] [drm] Driver supports precise vblank timestamp query.
    [ 2.552974] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 2.553071] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 2.554259] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 2.582133] [drm] Wrong MCH_SSKPD value: 0x17050407
    [ 2.582136] [drm] This can cause pipe underruns and display issues.
    [ 2.582137] [drm] Please upgrade your BIOS to fix this.
    [ 2.591839] tsc: Refined TSC clocksource calibration: 1995.467 MHz
    [ 2.597052] fbcon: inteldrmfb (fb0) is primary device
    [ 2.631810] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 2.691536] EXT4-fs (sda3): mounting ext2 file system using the ext4 subsystem
    [ 2.697765] EXT4-fs (sda3): mounted filesystem without journal. Opts: (null)
    [ 2.708392] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: discard
    [ 2.726771] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 2.732165] systemd-logind[678]: Watching system buttons on /dev/input/event4 (Power Button)
    [ 2.732251] systemd-logind[678]: Watching system buttons on /dev/input/event2 (Power Button)
    [ 2.732373] systemd-logind[678]: Watching system buttons on /dev/input/event1 (Lid Switch)
    [ 2.732460] systemd-logind[678]: Watching system buttons on /dev/input/event3 (Sleep Button)
    [ 2.733090] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 2.755620] hub 4-1:1.0: USB hub found
    [ 2.755733] hub 4-1:1.0: 6 ports detected
    [ 2.821911] usb 3-1.4: new high-speed USB device number 3 using ehci-pci
    [ 3.108586] usb 4-1.3: new high-speed USB device number 3 using ehci-pci
    [ 3.308514] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
    [ 3.322812] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x15, 0x0c.
    [ 3.395720] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input9
    [ 3.568352] Console: switching to colour frame buffer device 170x48
    [ 3.574903] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 3.574905] i915 0000:00:02.0: registered panic notifier
    [ 3.575357] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 3.593033] Switched to clocksource tsc
    [ 3.594635] media: Linux media interface: v0.10
    [ 3.601441] Linux video capture interface: v2.00
    [ 3.607344] uvcvideo: Found UVC 1.00 device WebCam SCB-1110M (1210:0909)
    [ 3.612805] input: WebCam SCB-1110M as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.4/3-1.4:1.0/input/input10
    [ 3.612886] usbcore: registered new interface driver uvcvideo
    [ 3.612889] USB Video Class driver (1.1.1)
    [ 3.624759] acpi device:47: registered as cooling_device10
    [ 3.628631] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 3.628749] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:45/LNXVIDEO:00/input/input11
    [ 3.631116] acpi device:51: registered as cooling_device11
    [ 3.631300] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 3.631373] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input12
    [ 3.631455] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 3.645951] i2400m_usb 4-1.3:1.0: WiMAX interface wmx0 (64:d4:da:24:b5:c0) ready
    [ 3.653985] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 3.654187] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
    [ 3.874277] iwlwifi 0000:02:00.0: L1 Enabled; Disabling L0S
    [ 3.874474] iwlwifi 0000:02:00.0: Radio type=0x1-0x2-0x0
    [ 3.963960] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 4.328298] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 7.107250] i2400m_usb 4-1.3:1.0: firmware interface version 9.3.2
    [ 7.117012] usbcore: registered new interface driver i2400m_usb
    [ 7.141746] wlan0: authenticate with 00:22:6b:70:c5:e9
    [ 7.151167] wlan0: send auth to 00:22:6b:70:c5:e9 (try 1/3)
    [ 7.197933] wlan0: authenticated
    [ 7.200356] wlan0: associate with 00:22:6b:70:c5:e9 (try 1/3)
    [ 7.201891] wlan0: RX AssocResp from 00:22:6b:70:c5:e9 (capab=0x11 status=0 aid=2)
    [ 7.205520] wlan0: associated
    [ 7.205524] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 16.681425] bbswitch: version 0.7
    [ 16.681440] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 16.681445] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
    [ 16.681454] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 16.681520] bbswitch: detected an Optimus _DSM function
    [ 16.681556] bbswitch: disabling discrete graphics
    [ 16.681559] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 16.711802] pci 0000:01:00.0: power state changed by ACPI to D3cold
    [ 16.711812] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is off
    [ 41.636100] fuse init (API version 7.22)
    [ 440.485588] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 440.507912] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    [ 453.967678] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
    [ 453.984936] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
    I have never seen this error and my googlefu return issues with overclocking which I am not doing. Any info on the subject I'd love to hear.
    Cheers.
    EDIT: Was only happening when issuing 'systemctl reboot' so I switched back to 3.10.10-1-ARCH and reboot command now works.
    Last edited by doug piston (2013-09-10 02:05:56)

    Well, I can tell you that this kind of error is not OS related, but rather a HW thing.  It happens where there is a general detection of something going wrong.  Sometimes it can happen randomly and might not be an indication of a problem.  But sometimes it can be caused by things that are improperly functioning within the system like bad capacitors. 
    Unfortunately I don't really know what to do about such things except give you machine a proper inspection.  But if things are working fine, and continue to do so, I wouldn't worry about it.  If it becomes a regular occurance, then I'd worry.

  • Upgrade to kernel 3.12.6-1: Blank Screen Boot

    Hi all,
    after performing today the upgrade to kernel 3.12.6-1 on my Lenovo V570 I was confronted with the following boot issue:
    After selecting the Archlinux boot entry in gummiboot the screen becomes blank.
    I am using gummiboot on a separate EFI partition. The weird thing is that if I boot into UEFI shell from the archlinux cd I can select
    fs0:/EFI/Boot/BOOTX64.EFI
    and it boots like a charm.
    Downgrading to 3.12.5-1 solves the problem and upgrading again causes it again to happen. I can not find any useful information in my system log but I nevertheless append it. (the log originates from a boot via UEFI shell therefor the 3.12.6-1 kernel)
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 (GCC) ) #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013
    [ 0.000000] Command line: initrd=\initramfs-linux.img root=/dev/sda3 rw
    [ 0.000000] Disabled fast string operations
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bac86fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bac87000-0x00000000badbffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000badc0000-0x00000000badc8fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000badc9000-0x00000000baefefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000baeff000-0x00000000baf9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fdfffff] usable
    [ 0.000000] e820: update [mem 0xb6e58018-0xb6e68057] usable ==> usable
    [ 0.000000] e820: update [mem 0xb6e4b018-0xb6e57057] usable ==> usable
    [ 0.000000] extended physical RAM map:
    [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008efff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000b6e4b017] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b6e4b018-0x00000000b6e57057] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b6e57058-0x00000000b6e58017] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b6e58018-0x00000000b6e68057] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000b6e68058-0x00000000bac86fff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000bac87000-0x00000000badbffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000badc0000-0x00000000badc8fff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000badc9000-0x00000000baefefff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000baeff000-0x00000000baf9efff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
    [ 0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000013fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.00 by Phoenix Technologies Ltd.
    [ 0.000000] efi: ACPI=0xbaffe000 ACPI 2.0=0xbaffe014 SMBIOS=0xbae87000
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000008000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000008000-0x0000000000054000) (0MB)
    [ 0.000000] efi: mem03: type=4, attr=0xf, range=[0x0000000000054000-0x0000000000055000) (0MB)
    [ 0.000000] efi: mem04: type=3, attr=0xf, range=[0x0000000000055000-0x000000000008f000) (0MB)
    [ 0.000000] efi: mem05: type=10, attr=0xf, range=[0x000000000008f000-0x0000000000090000) (0MB)
    [ 0.000000] efi: mem06: type=3, attr=0xf, range=[0x0000000000090000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000000100000-0x0000000000c00000) (11MB)
    [ 0.000000] efi: mem08: type=3, attr=0xf, range=[0x0000000000c00000-0x0000000001000000) (4MB)
    [ 0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f54000) (15MB)
    [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000001f54000-0x000000007fd1c000) (2013MB)
    [ 0.000000] efi: mem11: type=2, attr=0xf, range=[0x000000007fd1c000-0x0000000080000000) (2MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000080000000-0x00000000b3e58000) (830MB)
    [ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x00000000b3e58000-0x00000000b3e78000) (0MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x00000000b3e78000-0x00000000b5e96000) (32MB)
    [ 0.000000] efi: mem15: type=1, attr=0xf, range=[0x00000000b5e96000-0x00000000b6306000) (4MB)
    [ 0.000000] efi: mem16: type=4, attr=0xf, range=[0x00000000b6306000-0x00000000b6e48000) (11MB)
    [ 0.000000] efi: mem17: type=7, attr=0xf, range=[0x00000000b6e48000-0x00000000b6e4b000) (0MB)
    [ 0.000000] efi: mem18: type=2, attr=0xf, range=[0x00000000b6e4b000-0x00000000b6e6a000) (0MB)
    [ 0.000000] efi: mem19: type=7, attr=0xf, range=[0x00000000b6e6a000-0x00000000b6e6b000) (0MB)
    [ 0.000000] efi: mem20: type=2, attr=0xf, range=[0x00000000b6e6b000-0x00000000b6e6f000) (0MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x00000000b6e6f000-0x00000000b6e70000) (0MB)
    [ 0.000000] efi: mem22: type=2, attr=0xf, range=[0x00000000b6e70000-0x00000000b6e87000) (0MB)
    [ 0.000000] efi: mem23: type=7, attr=0xf, range=[0x00000000b6e87000-0x00000000b6f00000) (0MB)
    [ 0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b6f00000-0x00000000b6f47000) (0MB)
    [ 0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b6f47000-0x00000000b7405000) (4MB)
    [ 0.000000] efi: mem26: type=4, attr=0xf, range=[0x00000000b7405000-0x00000000b830c000) (15MB)
    [ 0.000000] efi: mem27: type=7, attr=0xf, range=[0x00000000b830c000-0x00000000b84e2000) (1MB)
    [ 0.000000] efi: mem28: type=4, attr=0xf, range=[0x00000000b84e2000-0x00000000b86bf000) (1MB)
    [ 0.000000] efi: mem29: type=7, attr=0xf, range=[0x00000000b86bf000-0x00000000b86c2000) (0MB)
    [ 0.000000] efi: mem30: type=4, attr=0xf, range=[0x00000000b86c2000-0x00000000b9291000) (11MB)
    [ 0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b9291000-0x00000000b92b3000) (0MB)
    [ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000b92b3000-0x00000000b931c000) (0MB)
    [ 0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b931c000-0x00000000b931d000) (0MB)
    [ 0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b931d000-0x00000000b931e000) (0MB)
    [ 0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b931e000-0x00000000b931f000) (0MB)
    [ 0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b931f000-0x00000000b9320000) (0MB)
    [ 0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b9320000-0x00000000b9321000) (0MB)
    [ 0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b9321000-0x00000000b956c000) (2MB)
    [ 0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b956c000-0x00000000b956d000) (0MB)
    [ 0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b956d000-0x00000000b9588000) (0MB)
    [ 0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b9588000-0x00000000b958c000) (0MB)
    [ 0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b958c000-0x00000000b9597000) (0MB)
    [ 0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b9597000-0x00000000b9598000) (0MB)
    [ 0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b9598000-0x00000000ba5a7000) (16MB)
    [ 0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000ba5a7000-0x00000000ba9de000) (4MB)
    [ 0.000000] efi: mem46: type=3, attr=0xf, range=[0x00000000ba9de000-0x00000000bac87000) (2MB)
    [ 0.000000] efi: mem47: type=5, attr=0x800000000000000f, range=[0x00000000bac87000-0x00000000bace7000) (0MB)
    [ 0.000000] efi: mem48: type=5, attr=0x800000000000000f, range=[0x00000000bace7000-0x00000000bad87000) (0MB)
    [ 0.000000] efi: mem49: type=6, attr=0x800000000000000f, range=[0x00000000bad87000-0x00000000badc0000) (0MB)
    [ 0.000000] efi: mem50: type=10, attr=0xf, range=[0x00000000badc0000-0x00000000badc9000) (0MB)
    [ 0.000000] efi: mem51: type=6, attr=0x800000000000000f, range=[0x00000000badc9000-0x00000000bae87000) (0MB)
    [ 0.000000] efi: mem52: type=0, attr=0xf, range=[0x00000000bae87000-0x00000000baeff000) (0MB)
    [ 0.000000] efi: mem53: type=10, attr=0xf, range=[0x00000000baeff000-0x00000000baf9f000) (0MB)
    [ 0.000000] efi: mem54: type=9, attr=0xf, range=[0x00000000baf9f000-0x00000000bafe5000) (0MB)
    [ 0.000000] efi: mem55: type=9, attr=0xf, range=[0x00000000bafe5000-0x00000000bafff000) (0MB)
    [ 0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
    [ 0.000000] efi: mem57: type=7, attr=0xf, range=[0x0000000100000000-0x000000013fe00000) (1022MB)
    [ 0.000000] efi: mem58: type=11, attr=0x8000000000000001, range=[0x00000000f80f8000-0x00000000f80f9000) (0MB)
    [ 0.000000] efi: mem59: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] SMBIOS 2.6 present.
    [ 0.000000] DMI: LENOVO 1066ERG/Emerald Lake, BIOS 44CN42WW 09/22/2011
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x13fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 5 base 100000000 mask FC0000000 write-back
    [ 0.000000] 6 base 13FE00000 mask FFFE00000 uncachable
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 2 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] reserving inaccessible SNB gfx pages
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
    [ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x13fc00000-0x13fdfffff]
    [ 0.000000] [mem 0x13fc00000-0x13fdfffff] page 2M
    [ 0.000000] BRK [0x02b35000, 0x02b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x13c000000-0x13fbfffff]
    [ 0.000000] [mem 0x13c000000-0x13fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x13bffffff]
    [ 0.000000] [mem 0x100000000-0x13bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbac86fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0xbabfffff] page 2M
    [ 0.000000] [mem 0xbac00000-0xbac86fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbafff000-0xbaffffff]
    [ 0.000000] [mem 0xbafff000-0xbaffffff] page 4k
    [ 0.000000] BRK [0x02b36000, 0x02b36fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x7fd1c000-0x7fffffff]
    [ 0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000baffe120 0008C (v01 LENOVO CB-01 00000001 LENO 00000001)
    [ 0.000000] ACPI: FACP 00000000bafee000 000F4 (v03 LENOVO CB-01 00000001 PTL 00000001)
    [ 0.000000] ACPI: DSDT 00000000baff1000 09AC3 (v02 LENOVO SNB-CPT 00000000 INTL 20061109)
    [ 0.000000] ACPI: FACS 00000000baf3d000 00040
    [ 0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01 00000001 LENO 00000001)
    [ 0.000000] ACPI: SSDT 00000000baffb000 01068 (v01 LENOVO PtidDevc 00001000 INTL 20061109)
    [ 0.000000] ACPI: ASF! 00000000baff0000 000A5 (v32 LENOVO CB-01 00000001 PTL 00000001)
    [ 0.000000] ACPI: HPET 00000000bafed000 00038 (v01 LENOVO CB-01 00000001 PTL 00000001)
    [ 0.000000] ACPI: APIC 00000000bafec000 00098 (v01 LENOVO CB-01 00000001 PTL 00000001)
    [ 0.000000] ACPI: MCFG 00000000bafeb000 0003C (v01 LENOVO CB-01 00000001 PTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000bafea000 00954 (v01 NvORef NvOptTbl 00001000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000bafe9000 007C2 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000bafe8000 00996 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: UEFI 00000000bafe7000 0003E (v01 LENOVO CB-01 00000001 PTL 00000001)
    [ 0.000000] ACPI: UEFI 00000000bafe6000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: UEFI 00000000bafe5000 00256 (v01 LENOVO CB-01 00000001 PTL 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x13fdfffff]
    [ 0.000000] NODE_DATA [mem 0x13fdf8000-0x13fdfcfff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013b400000-ffff88013f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0008efff]
    [ 0.000000] node 0: [mem 0x00090000-0x0009ffff]
    [ 0.000000] node 0: [mem 0x00100000-0xbac86fff]
    [ 0.000000] node 0: [mem 0xbafff000-0xbaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x13fdfffff]
    [ 0.000000] On node 0 totalpages: 1026598
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 1182 pages reserved
    [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11891 pages used for memmap
    [ 0.000000] DMA32 zone: 760968 pages, LIFO batch:31
    [ 0.000000] Normal zone: 4088 pages used for memmap
    [ 0.000000] Normal zone: 261632 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] 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: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb6e4b000-0xb6e4bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb6e57000-0xb6e57fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb6e58000-0xb6e58fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xb6e68000-0xb6e68fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbac87000-0xbadbffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbadc0000-0xbadc8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbadc9000-0xbaefefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaeff000-0xbaf9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbb000000-0xbb9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbba00000-0xbf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf80f7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
    [ 0.000000] e820: [mem 0xbfa00000-0xf80f7fff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88013fa00000 s86464 r8192 d24128 u262144
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1009373
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda3 rw
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3891132K/4106392K available (5124K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 215260K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2394.591 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4791.73 BogoMIPS (lpj=7981970)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000019] init_memory_mapping: [mem 0xbac87000-0xbad86fff]
    [ 0.000021] [mem 0xbac87000-0xbad86fff] page 4k
    [ 0.000033] init_memory_mapping: [mem 0xbad87000-0xbadbffff]
    [ 0.000035] [mem 0xbad87000-0xbadbffff] page 4k
    [ 0.000040] init_memory_mapping: [mem 0xbadc9000-0xbae86fff]
    [ 0.000041] [mem 0xbadc9000-0xbae86fff] page 4k
    [ 0.000497] Security Framework initialized
    [ 0.000505] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000506] Yama: becoming mindful.
    [ 0.000777] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001775] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.002214] Mount-cache hash table entries: 256
    [ 0.002396] Initializing cgroup subsys memory
    [ 0.002408] Initializing cgroup subsys devices
    [ 0.002410] Initializing cgroup subsys freezer
    [ 0.002411] Initializing cgroup subsys net_cls
    [ 0.002413] Initializing cgroup subsys blkio
    [ 0.002433] Disabled fast string operations
    [ 0.002434] CPU: Physical Processor ID: 0
    [ 0.002435] CPU: Processor Core ID: 0
    [ 0.002440] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.002443] mce: CPU supports 7 MCE banks
    [ 0.002454] CPU0: Thermal monitoring enabled (TM1)
    [ 0.002463] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    [ 0.002545] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.003452] ACPI: Core revision 20130725
    [ 0.008834] ACPI: All ACPI Tables successfully acquired
    [ 0.011257] ftrace: allocating 20318 entries in 80 pages
    [ 0.021231] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.054265] smpboot: CPU0: Intel(R) Core(TM) i5-2430M CPU @ 2.40GHz (fam: 06, model: 2a, stepping: 07)
    [ 0.054273] TSC deadline timer enabled
    [ 0.054284] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    [ 0.054291] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    [ 0.054293] ... version: 3
    [ 0.054293] ... bit width: 48
    [ 0.054294] ... generic registers: 4
    [ 0.054295] ... value mask: 0000ffffffffffff
    [ 0.054296] ... max period: 0000ffffffffffff
    [ 0.054297] ... fixed-purpose events: 3
    [ 0.054298] ... event mask: 000000070000000f
    [ 0.088930] Disabled fast string operations
    [ 0.091156] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.108967] Disabled fast string operations
    [ 0.077790] smpboot: Booting Node 0, Processors # 1 # 2 # 3 OK
    [ 0.129024] Disabled fast string operations
    [ 0.131150] Brought up 4 CPUs
    [ 0.131154] smpboot: Total of 4 processors activated (19164.92 BogoMIPS)
    [ 0.134436] devtmpfs: initialized
    [ 0.136834] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
    [ 0.136836] PM: Registering ACPI NVS region [mem 0xbadc0000-0xbadc8fff] (36864 bytes)
    [ 0.136838] PM: Registering ACPI NVS region [mem 0xbaeff000-0xbaf9efff] (655360 bytes)
    [ 0.137542] RTC time: 23:36:36, date: 12/26/13
    [ 0.137577] NET: Registered protocol family 16
    [ 0.137667] cpuidle: using governor ladder
    [ 0.137668] cpuidle: using governor menu
    [ 0.137691] ACPI: bus type PCI registered
    [ 0.137693] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.137747] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.137749] PCI: not using MMCONFIG
    [ 0.137750] PCI: Using configuration type 1 for base access
    [ 0.138286] bio: create slab <bio-0> at 0
    [ 0.138390] ACPI: Added _OSI(Module Device)
    [ 0.138392] ACPI: Added _OSI(Processor Device)
    [ 0.138393] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.138394] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.139747] ACPI: EC: Look up EC in DSDT
    [ 0.141122] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.151337] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.151669] ACPI: SSDT 00000000baeef718 0067C (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.152018] ACPI: Dynamic OEM Table Load:
    [ 0.152020] ACPI: SSDT (null) 0067C (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.164809] ACPI: SSDT 00000000baef0a98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.165180] ACPI: Dynamic OEM Table Load:
    [ 0.165182] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.174703] ACPI: SSDT 00000000baeeed98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.175044] ACPI: Dynamic OEM Table Load:
    [ 0.175046] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.193798] ACPI: Interpreter enabled
    [ 0.193807] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.193820] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.193821] ACPI: Using IOAPIC for interrupt routing
    [ 0.193837] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.194196] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
    [ 0.201387] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.201512] ACPI: No dock devices found.
    [ 0.207794] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.207826] \_SB_.PCI0:_OSC invalid UUID
    [ 0.207827] _OSC request data:1 8 0
    [ 0.207855] \_SB_.PCI0:_OSC invalid UUID
    [ 0.207856] _OSC request data:1 1f 0
    [ 0.207859] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.207861] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.208401] ACPI: \_SB_.PCI0.PDRC: can't evaluate _ADR (0x5)
    [ 0.208497] PCI host bridge to bus 0000:00
    [ 0.208500] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.208502] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.208503] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.208505] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.208507] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 0.208508] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    [ 0.208515] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    [ 0.208604] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    [ 0.208635] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.208676] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.208713] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    [ 0.208723] pci 0000:00:02.0: reg 0x10: [mem 0xf1400000-0xf17fffff 64bit]
    [ 0.208729] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.208733] pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f]
    [ 0.208837] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 0.208861] pci 0000:00:16.0: reg 0x10: [mem 0xf1a05000-0xf1a0500f 64bit]
    [ 0.208939] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.209024] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 0.209046] pci 0000:00:1a.0: reg 0x10: [mem 0xf1a0a000-0xf1a0a3ff]
    [ 0.209137] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.209197] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.209235] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 0.209251] pci 0000:00:1b.0: reg 0x10: [mem 0xf1a00000-0xf1a03fff 64bit]
    [ 0.209321] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.209368] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.209400] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 0.209474] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.209523] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.209556] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    [ 0.209636] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.209684] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.209718] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    [ 0.209798] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.209849] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.209891] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 0.209912] pci 0000:00:1d.0: reg 0x10: [mem 0xf1a09000-0xf1a093ff]
    [ 0.210003] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.210061] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.210097] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    [ 0.210273] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    [ 0.210294] pci 0000:00:1f.2: reg 0x10: [io 0x4088-0x408f]
    [ 0.210302] pci 0000:00:1f.2: reg 0x14: [io 0x4094-0x4097]
    [ 0.210310] pci 0000:00:1f.2: reg 0x18: [io 0x4080-0x4087]
    [ 0.210318] pci 0000:00:1f.2: reg 0x1c: [io 0x4090-0x4093]
    [ 0.210326] pci 0000:00:1f.2: reg 0x20: [io 0x4060-0x407f]
    [ 0.210334] pci 0000:00:1f.2: reg 0x24: [mem 0xf1a08000-0xf1a087ff]
    [ 0.210380] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.210456] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 0.210472] pci 0000:00:1f.3: reg 0x10: [mem 0xf1a04000-0xf1a040ff 64bit]
    [ 0.210493] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    [ 0.210622] pci 0000:01:00.0: [10de:0df5] type 00 class 0x030000
    [ 0.210630] pci 0000:01:00.0: reg 0x10: [mem 0xf0000000-0xf0ffffff]
    [ 0.210639] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.210647] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.210652] pci 0000:01:00.0: reg 0x24: [io 0x3000-0x307f]
    [ 0.210658] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 0.210712] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.210744] pci 0000:01:00.1: [10de:0bea] type 00 class 0x040300
    [ 0.210753] pci 0000:01:00.1: reg 0x10: [mem 0xf1000000-0xf1003fff]
    [ 0.214647] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.214655] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    [ 0.214662] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.214671] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.214795] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.214911] pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
    [ 0.214957] pci 0000:03:00.0: reg 0x10: [mem 0xf1900000-0xf190ffff 64bit]
    [ 0.215184] pci 0000:03:00.0: supports D1
    [ 0.215186] pci 0000:03:00.0: PME# supported from D0 D1 D3hot
    [ 0.215246] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.221341] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.221356] pci 0000:00:1c.1: bridge window [mem 0xf1900000-0xf19fffff]
    [ 0.221559] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.221628] pci 0000:04:00.0: reg 0x10: [io 0x2000-0x20ff]
    [ 0.221748] pci 0000:04:00.0: reg 0x18: [mem 0xf1804000-0xf1804fff 64bit pref]
    [ 0.221822] pci 0000:04:00.0: reg 0x20: [mem 0xf1800000-0xf1803fff 64bit pref]
    [ 0.222153] pci 0000:04:00.0: supports D1 D2
    [ 0.222155] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.222270] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.228036] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.228046] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    [ 0.228065] pci 0000:00:1c.3: bridge window [mem 0xf1800000-0xf18fffff 64bit pref]
    [ 0.228576] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.228627] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.228674] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.228721] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.228768] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.228815] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.228862] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.228909] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.229107] ACPI: Enabled 3 GPEs in block 00 to 3F
    [ 0.229113] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.229163] Found 1 acpi root devices
    [ 0.229208] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.229283] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.229287] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.229288] vgaarb: loaded
    [ 0.229289] vgaarb: bridge control possible 0000:01:00.0
    [ 0.229290] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.229325] PCI: Using ACPI for IRQ routing
    [ 0.230848] PCI: pci_cache_line_size set to 64 bytes
    [ 0.230911] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
    [ 0.230912] e820: reserve RAM buffer [mem 0xb6e4b018-0xb7ffffff]
    [ 0.230914] e820: reserve RAM buffer [mem 0xb6e58018-0xb7ffffff]
    [ 0.230915] e820: reserve RAM buffer [mem 0xbac87000-0xbbffffff]
    [ 0.230916] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
    [ 0.230918] e820: reserve RAM buffer [mem 0x13fe00000-0x13fffffff]
    [ 0.230994] NetLabel: Initializing
    [ 0.230995] NetLabel: domain hash size = 128
    [ 0.230996] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.231008] NetLabel: unlabeled traffic allowed by default
    [ 0.231023] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.231027] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.234059] Switched to clocksource hpet
    [ 0.237888] pnp: PnP ACPI init
    [ 0.237902] ACPI: bus type PNP registered
    [ 0.237936] pnp 00:00: [dma 4]
    [ 0.237957] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.237975] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.238064] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.238093] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.238135] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.238137] system 00:04: [io 0xffff] has been reserved
    [ 0.238139] system 00:04: [io 0xffff] has been reserved
    [ 0.238142] system 00:04: [io 0x0400-0x0453] could not be reserved
    [ 0.238143] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.238145] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.238148] system 00:04: [mem 0xfe800000-0xfe80ffff] has been reserved
    [ 0.238151] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.238172] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.238214] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.238216] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.238280] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.238304] pnp 00:08: Plug and Play ACPI device, IDs SYN0326 SYN0300 SYN0002 PNP0f13 (active)
    [ 0.238403] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.238405] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.238407] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.238409] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.238411] system 00:09: [mem 0xf8000000-0xfbffffff] could not be reserved
    [ 0.238412] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.238414] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.238415] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.238417] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.238419] system 00:09: [mem 0xfee00000-0xfeefffff] has been reserved
    [ 0.238420] system 00:09: [mem 0xbfa00000-0xbfa00fff] has been reserved
    [ 0.238422] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.238622] system 00:0a: [mem 0x20000000-0x201fffff] could not be reserved
    [ 0.238624] system 00:0a: [mem 0x40000000-0x401fffff] could not be reserved
    [ 0.238626] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.238643] pnp: PnP ACPI: found 11 devices
    [ 0.238644] ACPI: bus type PNP unregistered
    [ 0.244890] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.244925] pci 0000:01:00.0: BAR 6: assigned [mem 0xf1080000-0xf10fffff pref]
    [ 0.244928] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.244930] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    [ 0.244933] pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    [ 0.244935] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.244939] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.244950] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.244955] pci 0000:00:1c.1: bridge window [mem 0xf1900000-0xf19fffff]
    [ 0.244964] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.244968] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
    [ 0.244975] pci 0000:00:1c.3: bridge window [mem 0xf1800000-0xf18fffff 64bit pref]
    [ 0.244982] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.244984] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.244985] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.244987] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
    [ 0.244988] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
    [ 0.244990] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    [ 0.244991] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
    [ 0.244993] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.244995] pci_bus 0000:03: resource 1 [mem 0xf1900000-0xf19fffff]
    [ 0.244996] pci_bus 0000:04: resource 0 [io 0x2000-0x2fff]
    [ 0.244998] pci_bus 0000:04: resource 2 [mem 0xf1800000-0xf18fffff 64bit pref]
    [ 0.245025] NET: Registered protocol family 2
    [ 0.245199] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.245331] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.245426] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.245455] TCP: reno registered
    [ 0.245461] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.245480] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.245541] NET: Registered protocol family 1
    [ 0.245553] pci 0000:00:02.0: Boot video device
    [ 0.245874] PCI: CLS 64 bytes, default 64
    [ 0.245910] Unpacking initramfs...
    [ 0.297863] Freeing initrd memory: 2960K (ffff88007fd1c000 - ffff880080000000)
    [ 0.297869] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.297871] software IO TLB [mem 0xafe58000-0xb3e58000] (64MB) mapped at [ffff8800afe58000-ffff8800b3e57fff]
    [ 0.298052] Scanning for low memory corruption every 60 seconds
    [ 0.298304] audit: initializing netlink socket (disabled)
    [ 0.298314] type=2000 audit(1388100995.293:1): initialized
    [ 0.309789] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.310859] zbud: loaded
    [ 0.311020] VFS: Disk quotas dquot_6.5.2
    [ 0.311056] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.311200] msgmni has been set to 7737
    [ 0.311458] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.311495] io scheduler noop registered
    [ 0.311497] io scheduler deadline registered
    [ 0.311518] io scheduler cfq registered (default)
    [ 0.311669] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.311999] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.312012] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.312053] efifb: probing for efifb
    [ 0.312210] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90004800000, using 1200k, total 1200k
    [ 0.312211] efifb: mode is 640x480x32, linelength=2560, pages=1
    [ 0.312212] efifb: scrolling: redraw
    [ 0.312214] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.312957] Console: switching to colour frame buffer device 80x30
    [ 0.313634] fb0: EFI VGA frame buffer device
    [ 0.313641] intel_idle: MWAIT substates: 0x21120
    [ 0.313642] intel_idle: v0.4 model 0x2A
    [ 0.313643] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.313755] GHES: HEST is not enabled!
    [ 0.313798] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.314197] Linux agpgart interface v0.103
    [ 0.314256] i8042: PNP: PS/2 Controller [PNP0303:KBD0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.316817] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.316840] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.316919] mousedev: PS/2 mouse device common for all mice
    [ 0.316969] rtc_cmos 00:05: RTC can wake from S4
    [ 0.317104] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.317131] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.317138] Intel P-state driver initializing.
    [ 0.317146] Intel pstate controlling: cpu 0
    [ 0.317158] Intel pstate controlling: cpu 1
    [ 0.317176] Intel pstate controlling: cpu 2
    [ 0.317185] Intel pstate controlling: cpu 3
    [ 0.317251] drop_monitor: Initializing network drop monitor service
    [ 0.317312] TCP: cubic registered
    [ 0.317385] NET: Registered protocol family 10
    [ 0.317545] NET: Registered protocol family 17
    [ 0.317555] Key type dns_resolver registered
    [ 0.317763] registered taskstats version 1
    [ 0.318329] Magic number: 9:15:657
    [ 0.318402] rtc_cmos 00:05: setting system clock to 2013-12-26 23:36:36 UTC (1388100996)
    [ 0.318440] PM: Hibernation image not present or could not be loaded.
    [ 0.319562] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.319564] Write protecting the kernel read-only data: 8192k
    [ 0.321962] Freeing unused kernel memory: 1008K (ffff880002504000 - ffff880002600000)
    [ 0.322956] Freeing unused kernel memory: 420K (ffff880002797000 - ffff880002800000)
    [ 0.333265] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.337019] systemd-udevd[57]: starting version 208
    [ 0.359716] ACPI: bus type USB registered
    [ 0.359738] usbcore: registered new interface driver usbfs
    [ 0.359745] usbcore: registered new interface driver hub
    [ 0.359831] usbcore: registered new device driver usb
    [ 0.360573] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.360797] ehci-pci: EHCI PCI platform driver
    [ 0.360949] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 0.360960] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.360965] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.360978] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.361255] SCSI subsystem initialized
    [ 0.364874] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.364892] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf1a0a000
    [ 0.365034] libata version 3.00 loaded.
    [ 0.374197] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.374356] hub 1-0:1.0: USB hub found
    [ 0.374362] hub 1-0:1.0: 2 ports detected
    [ 0.374553] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.374559] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.374563] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.374575] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.378492] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.378508] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf1a09000
    [ 0.387569] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.387771] hub 2-0:1.0: USB hub found
    [ 0.387776] hub 2-0:1.0: 2 ports detected
    [ 0.387871] ahci 0000:00:1f.2: version 3.0
    [ 0.387962] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 0.387996] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.400932] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x39 impl SATA mode
    [ 0.400942] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
    [ 0.400952] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.421596] scsi0 : ahci
    [ 0.421810] scsi1 : ahci
    [ 0.421900] scsi2 : ahci
    [ 0.421977] scsi3 : ahci
    [ 0.422110] scsi4 : ahci
    [ 0.422247] scsi5 : ahci
    [ 0.422302] ata1: SATA max UDMA/133 abar m2048@0xf1a08000 port 0xf1a08100 irq 41
    [ 0.422305] ata2: DUMMY
    [ 0.422307] ata3: DUMMY
    [ 0.422310] ata4: SATA max UDMA/133 abar m2048@0xf1a08000 port 0xf1a08280 irq 41
    [ 0.422315] ata5: SATA max UDMA/133 abar m2048@0xf1a08000 port 0xf1a08300 irq 41
    [ 0.422318] ata6: SATA max UDMA/133 abar m2048@0xf1a08000 port 0xf1a08380 irq 41
    [ 0.681154] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 0.741201] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 0.745643] ata1.00: ATA-8: WDC WD7500BPVT-24HXZT3, 03.01A03, max UDMA/133
    [ 0.745645] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.750260] ata1.00: configured for UDMA/133
    [ 0.750485] scsi 0:0:0:0: Direct-Access ATA WDC WD7500BPVT-2 03.0 PQ: 0 ANSI: 5
    [ 0.805765] hub 1-1:1.0: USB hub found
    [ 0.805839] hub 1-1:1.0: 6 ports detected
    [ 0.911447] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.035711] hub 2-1:1.0: USB hub found
    [ 1.035769] hub 2-1:1.0: 6 ports detected
    [ 1.068241] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.114972] usb 1-1.5: new high-speed USB device number 3 using ehci-pci
    [ 1.301693] tsc: Refined TSC clocksource calibration: 2394.560 MHz
    [ 1.388513] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.390756] ata5.00: ATAPI: TSSTcorp CDDVDW TS-L633F, LE02, max UDMA/33
    [ 1.393542] ata5.00: configured for UDMA/33
    [ 1.394894] scsi 4:0:0:0: CD-ROM TSSTcorp CDDVDW TS-L633F LE02 PQ: 0 ANSI: 5
    [ 1.552152] usb 2-1.3: new full-speed USB device number 3 using ehci-pci
    [ 1.705691] usb 2-1.6: new high-speed USB device number 4 using ehci-pci
    [ 1.715446] ata6: SATA link down (SStatus 0 SControl 300)
    [ 1.721393] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
    [ 1.721402] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.721543] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.721550] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.721620] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.724550] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.724555] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.724817] sr 4:0:0:0: Attached scsi CD-ROM sr0
    [ 1.794754] sda: sda1 sda2 sda3 sda4 sda5
    [ 1.795987] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.302852] Switched to clocksource tsc
    [ 3.038432] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.885696] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.893387] systemd[1]: Set hostname to <fabian-lenovo-v570>.
    [ 5.089327] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 5.089448] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 5.089472] systemd[1]: Starting Remote File Systems.
    [ 5.089658] systemd[1]: Reached target Remote File Systems.
    [ 5.089679] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 5.089868] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 5.089886] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 5.090051] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 5.090067] systemd[1]: Starting Delayed Shutdown Socket.
    [ 5.090239] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 5.090255] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 5.090426] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 5.090443] systemd[1]: Starting Encrypted Volumes.
    [ 5.090575] systemd[1]: Reached target Encrypted Volumes.
    [ 5.090627] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 5.090944] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 5.090970] systemd[1]: Starting udev Kernel Socket.
    [ 5.091122] systemd[1]: Listening on udev Kernel Socket.
    [ 5.091144] systemd[1]: Starting udev Control Socket.
    [ 5.091298] systemd[1]: Listening on udev Control Socket.
    [ 5.091323] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 5.091383] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 5.091399] systemd[1]: Starting Paths.
    [ 5.091547] systemd[1]: Reached target Paths.
    [ 5.091577] systemd[1]: Starting Journal Socket.
    [ 5.091768] systemd[1]: Listening on Journal Socket.
    [ 5.129529] systemd[1]: Started Set Up Additional Binary Formats.
    [ 5.129581] systemd[1]: Mounting POSIX Message Queue File System...
    [ 5.130632] systemd[1]: Starting Setup Virtual Console...
    [ 5.131459] systemd[1]: Mounting Huge Pages File System...
    [ 5.132184] systemd[1]: Mounting Debug File System...
    [ 5.194714] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 5.195539] systemd[1]: Starting udev Coldplug all Devices...
    [ 5.239397] systemd[1]: Starting Apply Kernel Variables...
    [ 5.240133] systemd[1]: Starting Journal Service...
    [ 5.241516] systemd[1]: Started Journal Service.
    [ 5.902483] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [ 5.910089] systemd-journald[126]: Vacuuming done, freed 0 bytes
    [ 6.467249] systemd-udevd[158]: starting version 208
    [ 7.287419] ACPI: Requesting acpi_cpufreq
    [ 7.440843] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 7.444161] ACPI: Lid Switch [LID0]
    [ 7.444313] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
    [ 7.444329] ACPI: Sleep Button [SLPB]
    [ 7.444432] ACPI: AC Adapter [ADP1] (on-line)
    [ 7.444458] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 7.444461] ACPI: Power Button [PWRF]
    [ 7.445047] ACPI: Battery Slot [BAT0] (battery present)
    [ 7.508998] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.509002] ACPI: Thermal Zone [TZS0] (61 C)
    [ 7.509153] thermal LNXTHERM:01: registered as thermal_zone1
    [ 7.509154] ACPI: Thermal Zone [TZS1] (43 C)
    [ 7.731107] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 7.780275] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130725/utaddress-251)
    [ 7.780284] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.780288] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 7.780292] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130725/utaddress-251)
    [ 7.780295] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.780297] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 7.780300] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130725/utaddress-251)
    [ 7.780303] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.780305] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130725/utaddress-251)
    [ 7.780308] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130725/utaddress-251)
    [ 7.780311] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.780312] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.865642] cfg80211: Calling CRDA to update world regulatory domain
    [ 7.865829] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [ 7.901873] wmi: Mapper loaded
    [ 7.911561] input: Ideapad extra buttons as /devices/platform/ideapad/input/input6
    [ 7.991611] [drm] Initialized drm 1.1.0 20060810
    [ 8.096357] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.5, id: 0x1e0b1, caps: 0xd00073/0x240000/0xa0400, board id: 1695, fw id: 752809
    [ 8.128722] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
    [ 8.195250] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 8.219971] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x1b
    [ 8.250898] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 8.262530] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 8.262607] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 8.262653] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 8.262928] hda_intel: Disabling MSI
    [ 8.262933] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 8.263013] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130725/utaddress-251)
    [ 8.263021] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.263109] mei_me 0000:00:16.0: setting latency timer to 64
    [ 8.263150] mei_me 0000:00:16.0: irq 43 for MSI/MSI-X
    [ 8.339279] iTCO_vendor_support: vendor-support=0
    [ 8.339733] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 8.339764] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 8.339856] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 8.379632] acer_wmi: Acer Laptop ACPI-WMI Extras
    [ 8.432857] acer_wmi: Brightness must be controlled by acpi video driver
    [ 8.432975] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x1b
    [ 8.433053] input: Acer BMA150 accelerometer as /devices/virtual/input/input12
    [ 8.433509] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x1b
    [ 8.434141] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x1b
    [ 8.434503] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 8.460907] [drm] Memory usable by graphics device = 2048M
    [ 8.460911] checking generic (e0000000 12c000) vs hw (e0000000 10000000)
    [ 8.460912] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 8.460924] Console: switching to colour dummy device 80x25
    [ 8.460987] i915 0000:00:02.0: setting latency timer to 64
    [ 8.488831] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 8.488839] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 8.488840] [drm] Driver supports precise vblank timestamp query.
    [ 8.488939] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
    [ 8.514827] [drm] Wrong MCH_SSKPD value: 0x16040307
    [ 8.514830] [drm] This can cause pipe underruns and display issues.
    [ 8.514831] [drm] Please upgrade your BIOS to fix this.
    [ 8.529627] fbcon: inteldrmfb (fb0) is primary device
    [ 8.533088] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.533112] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 8.533122] pcieport 0000:00:1c.3: driver skip pci_set_master, fix it!
    [ 8.533438] r8169 0000:04:00.0: irq 45 for MSI/MSI-X
    [ 8.533666] r8169 0000:04:00.0 eth0: RTL8168e/8111e at 0xffffc90000642000, f0:de:f1:8d:be:03, XID 0c200000 IRQ 45
    [ 8.533667] r8169 0000:04:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 8.559830] media: Linux media interface: v0.10
    [ 8.579104] pcieport 0000:00:1c.1: driver skip pci_set_master, fix it!
    [ 8.586102] Linux video capture interface: v2.00
    [ 8.623014] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (5986:0364)
    [ 8.629644] ath: phy0: Enable LNA combining
    [ 8.631847] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 8.632376] ath: phy0: ASPM enabled: 0x43
    [ 8.632378] ath: EEPROM regdomain: 0x65
    [ 8.632379] ath: EEPROM indicates we should expect a direct regpair map
    [ 8.632381] ath: Country alpha2 being used: 00
    [ 8.632381] ath: Regpair used: 0x65
    [ 8.636801] scsi6 : SCSI emulation for RTS5139 USB card reader
    [ 8.636895] usbcore: registered new interface driver rts5139
    [ 8.636943] scsi 6:0:0:0: Direct-Access Generic- xD/SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
    [ 8.639495] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input13
    [ 8.639548] usbcore: registered new interface driver uvcvideo
    [ 8.639548] USB Video Class driver (1.1.1)
    [ 8.685467] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 8.685636] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90004a60000, irq=17
    [ 8.708182] sd 6:0:0:0: [sdb] Attached SCSI removable disk
    [ 8.935054] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
    [ 8.935254] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
    [ 8.935371] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
    [ 8.935485] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
    [ 9.312910] kvm: disabled by bios
    [ 9.343649] kvm: disabled by bios
    [ 9.363224] kvm: disabled by bios
    [ 9.438677] Console: switching to colour frame buffer device 170x48
    [ 9.444389] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 9.444391] i915 0000:00:02.0: registered panic notifier
    [ 9.447706] acpi device:37: registered as cooling_device4
    [ 9.447914] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 9.448037] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:35/LNXVIDEO:00/input/input18
    [ 9.478081] acpi device:3f: registered as cooling_device5
    [ 9.478267] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 9.478346] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input19
    [ 9.478433] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 10.349723] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 10.528629] Adding 6332256k swap on /dev/sda5. Priority:-1 extents:1 across:6332256k FS
    [ 11.080832] FAT-fs (sda2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [ 11.241929] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 11.352333] systemd-journald[126]: Received request to flush runtime journal from PID 1
    [ 17.356236] bbswitch: version 0.8
    [ 17.356254] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 17.356261] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
    [ 17.356275] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130725/nsarguments-95)
    [ 17.356500] bbswitch: detected an Optimus _DSM function
    [ 17.356514] pci 0000:01:00.0: enabling device (0000 -> 0003)
    [ 17.356562] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
    [ 17.358421] bbswitch: disabling discrete graphics
    [ 17.358436] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130725/nsarguments-95)
    [ 17.410953] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 18.039966] r8169 0000:04:00.0 eth0: link down
    [ 18.040010] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 29.876627] hda-codec: out of range cmd 0:5:707:fffffffc
    [ 29.882774] hda-codec: out of range cmd 0:5:707:fffffffc
    [ 29.884988] hda-codec: out of range cmd 0:5:707:fffffffc
    [ 29.889446] hda-codec: out of range cmd 0:5:707:fffffffc
    [ 29.890798] hda-codec: out of range cmd 1:5:707:fffffffc
    [ 29.896169] hda-codec: out of range cmd 1:5:707:fffffffc
    [ 29.898066] hda-codec: out of range cmd 1:5:707:fffffffc
    [ 29.902784] hda-codec: out of range cmd 1:5:707:fffffffc
    [ 29.904179] hda-codec: out of range cmd 2:5:707:fffffffc
    [ 29.909467] hda-codec: out of range cmd 2:5:707:fffffffc
    [ 29.911154] hda-codec: out of range cmd 2:5:707:fffffffc
    [ 29.916107] hda-codec: out of range cmd 2:5:707:fffffffc
    [ 29.917361] hda-codec: out of range cmd 3:5:707:fffffffc
    [ 29.922792] hda-codec: out of range cmd 3:5:707:fffffffc
    [ 29.924372] hda-codec: out of range cmd 3:5:707:fffffffc
    [ 29.929456] hda-codec: out of range cmd 3:5:707:fffffffc
    [ 29.932568] hda-codec: out of range cmd 0:5:707:fffffffc
    [ 29.936144] hda-codec: out of range cmd 0:5:707:fffffffc
    [ 85.380415] wlan0: authenticate with 98:fc:11:cb:2b:05
    [ 85.404105] wlan0: send auth to 98:fc:11:cb:2b:05 (try 1/3)
    [ 85.406095] wlan0: authenticated
    [ 85.406496] wlan0: associate with 98:fc:11:cb:2b:05 (try 1/3)
    [ 85.422813] wlan0: RX AssocResp from 98:fc:11:cb:2b:05 (capab=0x431 status=0 aid=4)
    [ 85.422876] wlan0: associated
    [ 85.422901] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    The pacman log is listed here
    [2013-12-27 00:30] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-12-27 00:30] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Starting build: 3.12.6-1-ARCH
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Starting build: 3.12.6-1-ARCH
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2013-12-27 00:30] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-12-27 00:30] [PACMAN] upgraded linux (3.12.5-1 -> 3.12.6-1)
    Someone experienced a similar issue or could make some sense of this behavior? Otherwise I am tempted to report it to https://bugzilla.kernel.org.
    Best regards,
    ranc0ur
    Last edited by ranc0ur (2013-12-27 00:05:35)

    This is a well known and longstanding issue: going back to at least the 3.7.xx series kernels (UEFI booting). You can search the boards for the various threads dedicated to this (class of) bug{,s}.

Maybe you are looking for