Precision In TIMESTAMP

Hi all;
I know timestamp data types has up to 9 precison after seconds.(Ref: http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements001.htm)
SQL> SELECT systimestamp FROM dual;
SYSTIMESTAMP
02-FEB-07 02.26.51.207000 PM +02:00
SQL> BUt above query has 6(default for timestamp precision) digits and after 3 digits they become zero.(207000).
What i need is to display timestamp exactly 9 digits:
SQL> SELECT systimestamp FROM dual;
SYSTIMESTAMP
02-FEB-07 02.26.51.207569782 PM +02:00
SQL> Are there any ALTER SESSION command or any others to achieve this situation?
Thanks, Regards...

First insert..select is atomic so it will use one timestamp for all insert statements.
For second insert, if timestamp has 9 digits of precision(now it has 6) it may pass constraint(Am i right?)
Thanks..
SQL> SELECT * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - Prod
PL/SQL Release 10.1.0.5.0 - Production
CORE     10.1.0.5.0     Production
TNS for Compaq Tru64 UNIX: Version 10.1.0.5.0 - Production
NLSRTL Version 10.1.0.5.0 - Production
SQL>
SQL> drop table t;
drop table t
ORA-00942: table or view does not exist
SQL> create table t( d1 timestamp);
Table created
SQL> alter table t add constraint uq_d1 unique(d1);
Table altered
SQL> insert into t select systimestamp from all_objects where rownum < 1000;
insert into t select systimestamp from all_objects where rownum < 1000
ORA-00001: unique constraint (SYSADM.UQ_D1) violated
SQL> DECLARE
  2  BEGIN
  3    FOR i IN 1 .. 1000 LOOP
  4      INSERT INTO t VALUES (systimestamp);
  5      COMMIT;
  6    END LOOP;
  7  END;
  8  /
DECLARE
BEGIN
  FOR i IN 1 .. 1000 LOOP
    INSERT INTO t VALUES (systimestamp);
    COMMIT;
  END LOOP;
END;
ORA-00001: unique constraint (SYSADM.UQ_D1) violated
ORA-06512: at line 4
SQL> SELECT * FROM t;
D1
02-FEB-07 03.24.54.877353 PM
02-FEB-07 03.24.54.879306 PM
02-FEB-07 03.24.54.880282 PM
SQL>

Similar Messages

  • More precision in Timestamps

    Hello,
    I'm acquiring 2.5MS/s with a DAQmx card. That means that my timestamps must have more than ms precision... When I have ms precision I get around (I don't know if it's exactly that) 2500 samples with the same time (for example 2500 samples at 0,023s).
    So, how can I get more precision in my timestamps? I read something about getting another counter channel and use it as timestamp, but I want to know if there's any other path for that? I'm already acquiring 8 channels and 'fighting' to save them, I didn't want to add one more channel. And I need timestamps for EACH channel, and not one for all of them...
    Thanks for the help,
    Rafael

    Timestamps have 64 bit for 1 second so the absolute accuracy is much greater, maybe it's just the reprsentation.
    Where do you read the timestamp?
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Higher precision of timestamp when wrinting to txt

    Hello,
    I would like to have a higher precision (--->miliseconds) of the timestamp when saving waveforms to .txt. Labview only prints the date and the time in HH:MMS. As I am acquiring data with a rate of 1k, 1000 data values have the same time description in the .txt-file.
    Note: This problem only occurs when writing to .txt, it is no problem to get a higher precision by using the graph or the chart. 
    Any help or suggestions would be appreciated.

    Thanks so far.....
    Maybe I was not precise enough. What I am looking for is the opportunity to easily manipulate the format of  the timestamp, which comes with my data and then write it to .txt. I already used the "Format Date/Time String"-VI to get the time with the miliseconds part and joined this time information with the data of the waveforms, which I also had to extract from the waveforms before, afterwards, but I thought there would be a more elegant way, because if I can extract the ms-part from the timestamp it must have been in it before, right ? ;-) So why can´t I tell Labview to also display the ms-part, when using the "write waveforms to .txt"-VI? I attached a .txt-file with a short excerpt of data, which should visualise the problem.
    Regards
    Message Edited by Marauder on 03-10-2006 03:20 PM
    Attachments:
    data_with_same_timestamp.txt ‏10 KB

  • How do I increase the precision of a timestamp acquired with a DAQ task?

    Hi
    I am using a DAQ task to acquire multiple channels of analog data. The waveform data already has timing information incorporated into it. I wanted to know if there was a way of increasing the accuracy of this timestamp information - (Its currently in seconds with a default ms offset for each sample).
    Thanks
    Brinda

    Hello Brinda,
    From your posting, it sounds like you are acquiring some waveform data and plotting it to a LabVIEW graph. Unfortunately, the ability to increase the timestamp of your acquired data is going to be a limitation of using a non-real time operating system such as Windows. You may have a device which can sample to some very small precision of accuracy, but if your OS is not able to transfer the data fast enough and timestamp it, then you will see a less precise timestamp than you were hoping. A workaround to get around this would be to use a real time environment and the LabVIEW Real Time module. If this does not seem to be an option, you may also want to consider trying to use a counter to perform the timestamping, or take a look at the LabVIEW exam
    ple program I have linked to below.
    Timestamping Analog Input Data Using a Counter (DAQ-STC)
    Precise Current Timestamp with Milliseconds
    Best of luck.
    Jared A

  • ORACLE TIMESTAMP DataType support in Toplink ?

    Currently we have an application that need to create timestamps with precision up to thousands of a second.
    Do you know of any other customer that have similar requirements and how they solve this problem ?
    We try changing the SQL DDL to change datatype from DATE to TIMESTAMP(3) which can support a timestamp of 1/1000 seconds precision.
    We find that if our Oracle column is defined as Oracle DATE, the last 3 digit will be drop and cause us some duplicate key exception for records that
    Get inserted within 1 second because the timestamp is part of the primary key.
    ts '2004-03-12 17:13:27.792'
    So we change the ORACLE column from DATE to TIMESTAMP(3)
    What we find is that Toplink produce this exception
    Exception [TOPLINK-3001] (OracleAS TopLink - 10g (9.0.4) (Build 031126)): oracle.toplink.exceptions.ConversionException
    Exception Description: The object [oracle.sql.TIMESTAMP@321b5e39], of class [class oracle.sql.TIMESTAMP], could not be converted to [class java.util.Date].
    at oracle.toplink.exceptions.ConversionException.couldNotBeConverted(ConversionException.java:35)
    at oracle.toplink.internal.helper.ConversionManager.convertObjectToUtilDate(ConversionManager.java:679)
    at oracle.toplink.internal.helper.ConversionManager.convertObject(ConversionManager.java:97)
    at oracle.toplink.internal.databaseaccess.DatabasePlatform.convertObject(DatabasePlatform.java:55
    Than we try to change our java code and modify the java instance variable type from java.util.Date to java.sql.Timestamp
    And we get the following error
    Exception [TOPLINK-3001] (OracleAS TopLink - 10g (9.0.4) (Build 031126)): oracle.toplink.exceptions.ConversionException
    Exception Description: The object [oracle.sql.TIMESTAMP@731de027], of class [class oracle.sql.TIMESTAMP], could not be converted to [class java.sql.Timestamp].
    at org.apache.xerces.impl.XMLNamespaceBinder.endElement(XMLNamespaceBinder.java:650)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocumentFragmentScannerImpl.java:1011)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1564)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:335)
    We cannot seems to find in toplink mapping workbench how to specify timestamp
    ========================================================================================================
    The TIMESTAMP Datatype
    The new TIMESTAMP datatype is almost identical to DATE and differs in only one way:
    TIMESTAMPs can represent fractional seconds.
    The granularity of a TIMESTAMP value can be as little as a billionth of a second, whereas
    DATE variables can only resolve time to the second.
    When you declare a TIMESTAMP variable, you can optionally specify the precision that you wish to use for fractional seconds. The default precision is to the millisecond (six decimal digits); the maximum precision is to the billionth of a second (nine decimal digits).
    ===========================================================================================================
    -----Original Message-----
    From: Cheung, Ka-Kit
    Sent: Friday, March 12, 2004 6:20 PM
    To: Burr, Tim; Julian, Robert; Matthiesen, Sean
    Cc: Tsounis, George; Del Rosso, Peter; Cham, Mei
    Subject: Problem identified : AddressDetail duplicate key problem
    If we look at the exact of the insert statement.
    We see that the last address detail insert have key of
    Address ID = '5a052407-dac6-42ad-bbbf-29edc94488c1', and
    TransactionStartDate = {ts '2004-03-12 17:13:27.792'},
    While in the database, we look like we have an entry of
    Address ID = '5a052407-dac6-42ad-bbbf-29edc94488c1', and
    TransactionStartDate = {ts '2004-03-12 17:13:27.229'},
    If my memory served me right, while
    {ts '2004-03-12 17:13:27.792'}, is different than {ts '2004-03-12 17:13:27.229'},
    because are Java timestamps that have precison up to MicroSeconds, therefore 229 is different than 792.
    However, when this timestamp is saved to Oracle, I believe (have to check with Mei) that oracle only takes
    Up to '2004-03-12 17:13:27’ and discard the 229 or 792 because that is the maximum precision of timestamp for oracle.
    So we have the second insert have the same '2004-03-12 17:13:27’ after stripping off the 792 and we have a same record with the same same '2004-03-12 17:13:27’ in the database and
    Therefore causing duplicate key exception.
    That is why this is happen only once in a while when 2 rapid fire inserts happen in less than 1 second of each other.
    The solution actually is in the ESS code itselfs.
    The current ESS code will send addDependentToClient multiple times, one for each dependent added
    On the screen.
    The right way is to add all the dependent on the screen all at once.
    To have “course grain” method like addDependentsToClient, and have a collection or array of dependents as input parameter.
    This way we are not causing the participant to create history of themselves multiple times within a very short period of time. It save disk space, conform to a single UOW per submit and that is what I proposed
    To solve this problem from the root cause is by enhancing the method to save multiple dependents in one shot rather than a loop of multiple calls.
    KK
    and
    INSERT INTO PTTCBSI.ADDRESS_DETAIL
    (LINE_3_AD, ADR_TRAN_UNTIL_DT, MODIFY_DT, CITY_NM, POSTAL_CD, VER_ID, POSTAL_EXT_CD, LINE_2_AD, ADR_TRAN_START_DT, CREATE_DT, AUTHOR_ID, ADDRESS_ID, LINE_1_AD, COUNTY_NM, LINE_4_AD, COUNTRY_ID, STATE_ID)
    VALUES ('Block 5, Apt. 6', {ts '9999-12-31 00:00:00.0'},
    {ts '2004-03-12 17:13:26.385'},
    'Oakwood', '61043', 1, '1234', 'Mailstop 820',
    {ts '2004-03-12 17:13:26.385'},
    {ts '2004-03-12 16:50:12.0'}, 'dataLoad',
    '5a052407-dac6-42ad-bbbf-29edc94488c1',
    'IBM Corp.', NULL, '140 Main Street', 'US', 'NJ')
    UnitOfWork(1238222885)--Connection(2102560837)--
    UPDATE PTTCBSI.ADDRESS_DETAIL
    SET ADR_TRAN_UNTIL_DT = {ts '2004-03-12 17:13:26.385'}, VER_ID = 2 WHERE
    (((ADDRESS_ID = '5a052407-dac6-42ad-bbbf-29edc94488c1') AND
    (ADR_TRAN_START_DT = {ts '2004-03-12 16:52:29.0'})) AND (VER_ID = 1))
    UPDATE PTTCBSI.ADDRESS_DETAIL SET
    ADR_TRAN_UNTIL_DT = {ts '2004-03-12 17:13:27.229'}, VER_ID = 2
    WHERE (((ADDRESS_ID = '5a052407-dac6-42ad-bbbf-29edc94488c1') AND (ADR_TRAN_START_DT = {ts '2004-03-12 17:13:26.0'})) AND (VER_ID = 1))
    UnitOfWork(102762535)--Connection(2102560837)--
    INSERT INTO PTTCBSI.ADDRESS_DETAIL
    (LINE_3_AD, ADR_TRAN_UNTIL_DT, MODIFY_DT, CITY_NM, POSTAL_CD, VER_ID, POSTAL_EXT_CD, LINE_2_AD, ADR_TRAN_START_DT, CREATE_DT, AUTHOR_ID, ADDRESS_ID, LINE_1_AD, COUNTY_NM, LINE_4_AD, COUNTRY_ID, STATE_ID) VALUES
    ('Block 5, Apt. 6', {ts '9999-12-31 00:00:00.0'}, {ts '2004-03-12 17:13:27.229'}, 'Oakwood', '61043', 1, '1234', 'Mailstop 820',
    {ts '2004-03-12 17:13:27.229'},
    {ts '2004-03-12 16:50:12.0'}, 'dataLoad',
    '5a052407-dac6-42ad-bbbf-29edc94488c1',
    'IBM Corp.', NULL, '140 Main Street', 'US', 'NJ')
    INSERT INTO PTTCBSI.ADDRESS_DETAIL
    (LINE_3_AD,
    ADR_TRAN_UNTIL_DT,
    MODIFY_DT,
    CITY_NM, POSTAL_CD, VER_ID, POSTAL_EXT_CD, LINE_2_AD,
    ADR_TRAN_START_DT,
    CREATE_DT,
    AUTHOR_ID,
    ADDRESS_ID,
    LINE_1_AD, COUNTY_NM, LINE_4_AD, COUNTRY_ID, STATE_ID) VALUES
    ('Block 5, Apt. 6', {ts '9999-12-31 00:00:00.0'},
    {ts '2004-03-12 17:13:27.792'},
    'Oakwood', '61043', 1, '1234',
    'Mailstop 820',
    {ts '2004-03-12 17:13:27.792'},
    {ts '2004-03-12 16:50:12.0'},
    'dataLoad',
    '5a052407-dac6-42ad-bbbf-29edc94488c1',
    'IBM Corp.', NULL, '140 Main Street', 'US', 'NJ')
    ClientSession(790235177)--Connection(2102560837)--rollback transaction
    ORA-00001: unique constraint (PTTCBSI.PK_ADDRESS_DETAIL) violated

    KK,
    We are back-porting the support for oracle.sql.TIMESTAMP to 9.0.4 in an upcoming patch-set. It is possible to enhance TopLink using a customer conversion manager or database platform to add this support if required in the short term.
    Doug

  • Gnome3 not work with ATI HD6950 Card?

    Hey all..
    I'm just installed the ALL drivers from the testing, and its the versions:
    xf86-video-ati-6.14.2-1
    mesa-7.10.99.git20110612-1
    libdrm-2.4.25-1
    And ofc, i'm using with last kernel 2.26.39.
    So what's the problem with that? Why i can't running this Gnome3?
    This is the my logs:
    .xsession-errors:
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: Setup done, will execute: gnome-session
    Unknown chipset 0x6719
    gnome-session-is-accelerated: No hardware 3D support.
    gnome-session-check-accelerated: Helper exited with code 256
    gnome-session[1181]: WARNING: Session 'gnome' runnable check failed: Exited with code 1
    gnome-session[1181]: WARNING: Unable to find default provider 'notification-daemon' of required provider 'notifications'
    Xorg.0.log:
    [ 151.157]
    X.Org X Server 1.10.2
    Release Date: 2011-05-28
    [ 151.157] X Protocol Version 11, Revision 0
    [ 151.157] Build Operating System: Linux 2.6.38-ARCH x86_64
    [ 151.157] Current Operating System: Linux yakir-arch 2.6.39-ARCH #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011 x86_64
    [ 151.157] Kernel command line: BOOT_IMAGE=/vmlinuz26 root=/dev/sdb5 ro
    [ 151.157] Build Date: 30 May 2011 08:18:15AM
    [ 151.157]
    [ 151.157] Current version of pixman: 0.22.0
    [ 151.157] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 151.157] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 151.157] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 16 11:52:13 2011
    [ 151.157] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 151.157] (==) No Layout section. Using the first Screen section.
    [ 151.157] (==) No screen section available. Using defaults.
    [ 151.157] (**) |-->Screen "Default Screen Section" (0)
    [ 151.157] (**) | |-->Monitor "<default monitor>"
    [ 151.157] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 151.157] (**) | |-->Device "r"
    [ 151.157] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 151.157] (==) Automatically adding devices
    [ 151.157] (==) Automatically enabling devices
    [ 151.157] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 151.157] Entry deleted from font path.
    [ 151.157] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 151.157] Entry deleted from font path.
    [ 151.157] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 151.157] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 151.157] Entry deleted from font path.
    [ 151.157] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 151.157] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 151.157] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 151.157] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 151.157] (II) Loader magic: 0x7d3440
    [ 151.157] (II) Module ABI versions:
    [ 151.157] X.Org ANSI C Emulation: 0.4
    [ 151.157] X.Org Video Driver: 10.0
    [ 151.157] X.Org XInput driver : 12.2
    [ 151.157] X.Org Server Extension : 5.0
    [ 151.158] (--) PCI:*(0:1:0:0) 1002:6719:1002:0b00 rev 0, Mem @ 0xc0000000/268435456, 0xfe620000/131072, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 151.158] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 151.158] (II) "extmod" will be loaded by default.
    [ 151.158] (II) "dbe" will be loaded by default.
    [ 151.158] (II) "glx" will be loaded by default.
    [ 151.158] (II) "record" will be loaded by default.
    [ 151.158] (II) "dri" will be loaded by default.
    [ 151.158] (II) "dri2" will be loaded by default.
    [ 151.158] (II) LoadModule: "extmod"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 151.158] (II) Module extmod: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] Module class: X.Org Server Extension
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension MIT-SCREEN-SAVER
    [ 151.158] (II) Loading extension XFree86-VidModeExtension
    [ 151.158] (II) Loading extension XFree86-DGA
    [ 151.158] (II) Loading extension DPMS
    [ 151.158] (II) Loading extension XVideo
    [ 151.158] (II) Loading extension XVideo-MotionCompensation
    [ 151.158] (II) Loading extension X-Resource
    [ 151.158] (II) LoadModule: "dbe"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 151.158] (II) Module dbe: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] Module class: X.Org Server Extension
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension DOUBLE-BUFFER
    [ 151.158] (II) LoadModule: "glx"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 151.158] (II) Module glx: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (==) AIGLX enabled
    [ 151.158] (II) Loading extension GLX
    [ 151.158] (II) LoadModule: "record"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 151.158] (II) Module record: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.13.0
    [ 151.158] Module class: X.Org Server Extension
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension RECORD
    [ 151.158] (II) LoadModule: "dri"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 151.158] (II) Module dri: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension XFree86-DRI
    [ 151.158] (II) LoadModule: "dri2"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 151.158] (II) Module dri2: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.2.0
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension DRI2
    [ 151.158] (II) LoadModule: "radeon"
    [ 151.159] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 151.159] (II) Module radeon: vendor="X.Org Foundation"
    [ 151.159] compiled for 1.10.1, module version = 6.14.2
    [ 151.159] Module class: X.Org Video Driver
    [ 151.159] ABI class: X.Org Video Driver, version 10.0
    [ 151.159] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS
    [ 151.162] (++) using VT number 8
    [ 151.165] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 151.165] (II) [KMS] Kernel modesetting enabled.
    [ 151.165] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 151.165] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 151.165] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 151.165] (==) RADEON(0): Default visual is TrueColor
    [ 151.165] (==) RADEON(0): RGB weight 888
    [ 151.165] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 151.165] (--) RADEON(0): Chipset: "AMD Radeon HD 6900 Series" (ChipID = 0x6719)
    [ 151.165] (II) RADEON(0): PCIE card detected
    [ 151.165] drmOpenDevice: node name is /dev/dri/card0
    [ 151.165] drmOpenDevice: open result is 8, (OK)
    [ 151.165] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 151.165] drmOpenDevice: node name is /dev/dri/card0
    [ 151.165] drmOpenDevice: open result is 8, (OK)
    [ 151.165] drmOpenByBusid: drmOpenMinor returns 8
    [ 151.165] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 151.165] (II) Loading sub module "exa"
    [ 151.165] (II) LoadModule: "exa"
    [ 151.165] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 151.165] (II) Module exa: vendor="X.Org Foundation"
    [ 151.165] compiled for 1.10.2, module version = 2.5.0
    [ 151.165] ABI class: X.Org Video Driver, version 10.0
    [ 151.165] (II) RADEON(0): KMS Color Tiling: disabled
    [ 151.165] (II) RADEON(0): KMS Pageflipping: enabled
    [ 151.165] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 151.170] (II) RADEON(0): Output DisplayPort-0 has no monitor section
    [ 151.176] (II) RADEON(0): Output DisplayPort-1 has no monitor section
    [ 151.180] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 151.184] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 151.238] (II) RADEON(0): Output DVI-1 has no monitor section
    [ 151.243] (II) RADEON(0): EDID for output DisplayPort-0
    [ 151.250] (II) RADEON(0): EDID for output DisplayPort-1
    [ 151.254] (II) RADEON(0): EDID for output HDMI-0
    [ 151.257] (II) RADEON(0): EDID for output DVI-0
    [ 151.312] (II) RADEON(0): EDID for output DVI-1
    [ 151.312] (II) RADEON(0): Manufacturer: SAM Model: 736 Serial#: 1129132595
    [ 151.312] (II) RADEON(0): Year: 2010 Week: 51
    [ 151.312] (II) RADEON(0): EDID Version: 1.3
    [ 151.312] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 151.312] (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    [ 151.312] (II) RADEON(0): Max Image Size [cm]: horiz.: 51 vert.: 29
    [ 151.312] (II) RADEON(0): Gamma: 2.20
    [ 151.312] (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    [ 151.312] (II) RADEON(0): First detailed timing is preferred mode
    [ 151.312] (II) RADEON(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 151.312] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 151.312] (II) RADEON(0): Supported established timings:
    [ 151.312] (II) RADEON(0): 640x480@60Hz
    [ 151.312] (II) RADEON(0): 800x600@56Hz
    [ 151.312] (II) RADEON(0): 800x600@60Hz
    [ 151.312] (II) RADEON(0): 1024x768@60Hz
    [ 151.312] (II) RADEON(0): Manufacturer's mask: 0
    [ 151.312] (II) RADEON(0): Supported standard timings:
    [ 151.312] (II) RADEON(0): #0: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 151.312] (II) RADEON(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 151.312] (II) RADEON(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 151.312] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 151.312] (II) RADEON(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 151.312] (II) RADEON(0): #5: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 151.312] (II) RADEON(0): Supported detailed timing:
    [ 151.312] (II) RADEON(0): clock: 148.5 MHz Image Size: 477 x 268 mm
    [ 151.312] (II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 151.312] (II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 151.312] (II) RADEON(0): Ranges: V min: 56 V max: 61 Hz, H min: 30 H max: 75 kHz, PixClock max 175 MHz
    [ 151.312] (II) RADEON(0): Monitor name: SM2333T
    [ 151.312] (II) RADEON(0): Serial No: HVRZC00505
    [ 151.312] (II) RADEON(0): EDID (in hex):
    [ 151.312] (II) RADEON(0): 00ffffffffffff004c2d360733324d43
    [ 151.312] (II) RADEON(0): 331401030e331d782aee91a3544c9926
    [ 151.312] (II) RADEON(0): 0f50542308008100814081809500b300
    [ 151.312] (II) RADEON(0): a94001010101023a801871382d40582c
    [ 151.312] (II) RADEON(0): 4500dd0c1100001e000000fd00383d1e
    [ 151.312] (II) RADEON(0): 4b11000a202020202020000000fc0053
    [ 151.312] (II) RADEON(0): 4d32333333540a2020202020000000ff
    [ 151.312] (II) RADEON(0): 004856525a4330303530350a20200083
    [ 151.312] (II) RADEON(0): Printing probed modes for output DVI-1
    [ 151.312] (II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.312] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.312] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.312] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.312] (II) RADEON(0): Output DisplayPort-0 disconnected
    [ 151.312] (II) RADEON(0): Output DisplayPort-1 disconnected
    [ 151.312] (II) RADEON(0): Output HDMI-0 disconnected
    [ 151.312] (II) RADEON(0): Output DVI-0 disconnected
    [ 151.312] (II) RADEON(0): Output DVI-1 connected
    [ 151.312] (II) RADEON(0): Using exact sizes for initial modes
    [ 151.312] (II) RADEON(0): Output DVI-1 using initial mode 1920x1080
    [ 151.312] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 151.312] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:80000000 visible:f7d7000
    [ 151.312] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 151.312] (==) RADEON(0): DPI set to (96, 96)
    [ 151.312] (II) Loading sub module "fb"
    [ 151.312] (II) LoadModule: "fb"
    [ 151.312] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 151.312] (II) Module fb: vendor="X.Org Foundation"
    [ 151.312] compiled for 1.10.2, module version = 1.0.0
    [ 151.312] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 151.312] (II) Loading sub module "ramdac"
    [ 151.312] (II) LoadModule: "ramdac"
    [ 151.312] (II) Module "ramdac" already built-in
    [ 151.312] (--) Depth 24 pixmap format is 32 bpp
    [ 151.312] (II) RADEON(0): [DRI2] Setup complete
    [ 151.312] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 151.312] (II) RADEON(0): Front buffer size: 8100K
    [ 151.312] (II) RADEON(0): VRAM usage limit set to 221119K
    [ 151.312] (==) RADEON(0): Backing store disabled
    [ 151.312] (II) RADEON(0): Direct rendering enabled
    [ 151.312] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 151.313] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 151.313] (II) EXA(0): Driver registered support for the following operations:
    [ 151.313] (II) Solid
    [ 151.313] (II) Copy
    [ 151.313] (II) Composite (RENDER acceleration)
    [ 151.313] (II) UploadToScreen
    [ 151.313] (II) DownloadFromScreen
    [ 151.313] (II) RADEON(0): Acceleration enabled
    [ 151.313] (==) RADEON(0): DPMS enabled
    [ 151.313] (==) RADEON(0): Silken mouse enabled
    [ 151.313] (II) RADEON(0): Set up textured video
    [ 151.313] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 151.313] (--) RandR disabled
    [ 151.313] (II) Initializing built-in extension Generic Event Extension
    [ 151.313] (II) Initializing built-in extension SHAPE
    [ 151.313] (II) Initializing built-in extension MIT-SHM
    [ 151.313] (II) Initializing built-in extension XInputExtension
    [ 151.313] (II) Initializing built-in extension XTEST
    [ 151.313] (II) Initializing built-in extension BIG-REQUESTS
    [ 151.313] (II) Initializing built-in extension SYNC
    [ 151.313] (II) Initializing built-in extension XKEYBOARD
    [ 151.313] (II) Initializing built-in extension XC-MISC
    [ 151.313] (II) Initializing built-in extension SECURITY
    [ 151.313] (II) Initializing built-in extension XINERAMA
    [ 151.313] (II) Initializing built-in extension XFIXES
    [ 151.313] (II) Initializing built-in extension RENDER
    [ 151.313] (II) Initializing built-in extension RANDR
    [ 151.313] (II) Initializing built-in extension COMPOSITE
    [ 151.313] (II) Initializing built-in extension DAMAGE
    [ 151.317] (EE) AIGLX error: Calling driver entry point failed
    [ 151.317] (EE) AIGLX: reverting to software rendering
    [ 151.317] (II) AIGLX: Screen 0 is not DRI capable
    [ 151.318] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
    [ 151.318] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 151.318] (II) RADEON(0): Setting screen physical size to 508 x 285
    [ 151.343] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 151.343] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 151.343] (II) LoadModule: "evdev"
    [ 151.343] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.343] (II) Module evdev: vendor="X.Org Foundation"
    [ 151.343] compiled for 1.10.0, module version = 2.6.0
    [ 151.344] Module class: X.Org XInput Driver
    [ 151.344] ABI class: X.Org XInput driver, version 12.2
    [ 151.344] (II) Using input driver 'evdev' for 'Power Button'
    [ 151.344] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.344] (**) Power Button: always reports core events
    [ 151.344] (**) Power Button: Device: "/dev/input/event1"
    [ 151.363] (--) Power Button: Found keys
    [ 151.363] (II) Power Button: Configuring as keyboard
    [ 151.363] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 151.363] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 151.363] (**) Option "xkb_rules" "evdev"
    [ 151.363] (**) Option "xkb_model" "evdev"
    [ 151.363] (**) Option "xkb_layout" "us"
    [ 151.378] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 151.378] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 151.378] (II) Using input driver 'evdev' for 'Power Button'
    [ 151.378] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.378] (**) Power Button: always reports core events
    [ 151.378] (**) Power Button: Device: "/dev/input/event0"
    [ 151.403] (--) Power Button: Found keys
    [ 151.403] (II) Power Button: Configuring as keyboard
    [ 151.403] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 151.403] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 151.403] (**) Option "xkb_rules" "evdev"
    [ 151.403] (**) Option "xkb_model" "evdev"
    [ 151.403] (**) Option "xkb_layout" "us"
    [ 151.404] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event4)
    [ 151.404] (II) No input driver/identifier specified (ignoring)
    [ 151.406] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event5)
    [ 151.406] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 151.406] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 151.406] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.406] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 151.406] (**) Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event5"
    [ 151.433] (--) Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 151.433] (II) Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 151.433] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input5/event5"
    [ 151.433] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD)
    [ 151.433] (**) Option "xkb_rules" "evdev"
    [ 151.433] (**) Option "xkb_model" "evdev"
    [ 151.433] (**) Option "xkb_layout" "us"
    [ 151.433] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event6)
    [ 151.433] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 151.433] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 151.433] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.433] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 151.433] (**) Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event6"
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found 1 mouse buttons
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found scroll wheel(s)
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found relative axes
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found absolute axes
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 151.456] (II) Microsoft Comfort Curve Keyboard 2000: Configuring as mouse
    [ 151.456] (II) Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 151.456] (II) Microsoft Comfort Curve Keyboard 2000: Adding scrollwheel support
    [ 151.456] (**) Microsoft Comfort Curve Keyboard 2000: YAxisMapping: buttons 4 and 5
    [ 151.456] (**) Microsoft Comfort Curve Keyboard 2000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 151.456] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/input/input6/event6"
    [ 151.456] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD)
    [ 151.456] (**) Option "xkb_rules" "evdev"
    [ 151.456] (**) Option "xkb_model" "evdev"
    [ 151.456] (**) Option "xkb_layout" "us"
    [ 151.457] (EE) Microsoft Comfort Curve Keyboard 2000: failed to initialize for relative axes.
    [ 151.457] (II) Microsoft Comfort Curve Keyboard 2000: initialized for absolute axes.
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) keeping acceleration scheme 1
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration profile 0
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration factor: 2.000
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration threshold: 4
    [ 151.458] (II) config/udev: Adding input device Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel (/dev/input/event7)
    [ 151.458] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Applying InputClass "evdev pointer catchall"
    [ 151.458] (II) Using input driver 'evdev' for 'Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel'
    [ 151.458] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.458] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: always reports core events
    [ 151.458] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Device: "/dev/input/event7"
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found 9 mouse buttons
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found scroll wheel(s)
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found relative axes
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found x and y relative axes
    [ 151.483] (II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Configuring as mouse
    [ 151.483] (II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Adding scrollwheel support
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: YAxisMapping: buttons 4 and 5
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 151.483] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input7/event7"
    [ 151.483] (II) XINPUT: Adding extended input device "Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel" (type: MOUSE)
    [ 151.483] (II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: initialized for relative axes.
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) keeping acceleration scheme 1
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) acceleration profile 0
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) acceleration factor: 2.000
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) acceleration threshold: 4
    [ 151.483] (II) config/udev: Adding input device Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel (/dev/input/mouse0)
    [ 151.483] (II) No input driver/identifier specified (ignoring)
    [ 151.485] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event3)
    [ 151.485] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 151.485] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
    [ 151.485] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.485] (**) Eee PC WMI hotkeys: always reports core events
    [ 151.485] (**) Eee PC WMI hotkeys: Device: "/dev/input/event3"
    [ 151.510] (--) Eee PC WMI hotkeys: Found keys
    [ 151.510] (II) Eee PC WMI hotkeys: Configuring as keyboard
    [ 151.510] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input3/event3"
    [ 151.510] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD)
    [ 151.510] (**) Option "xkb_rules" "evdev"
    [ 151.510] (**) Option "xkb_model" "evdev"
    [ 151.510] (**) Option "xkb_layout" "us"
    [ 151.510] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 151.510] (II) No input driver/identifier specified (ignoring)
    [ 151.592] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.592] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 151.592] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 151.592] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.592] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.592] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.592] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.592] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.732] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.732] (II) RADEON(0): Using hsync ranges from config file
    [ 151.732] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.732] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.732] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.732] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.732] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.732] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.805] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.805] (II) RADEON(0): Using hsync ranges from config file
    [ 151.805] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.805] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.805] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.805] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.805] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.805] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.885] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.885] (II) RADEON(0): Using hsync ranges from config file
    [ 151.885] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.885] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.885] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.885] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.885] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.885] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.958] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.958] (II) RADEON(0): Using hsync ranges from config file
    [ 151.958] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.958] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.958] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.958] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.958] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.958] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 156.162] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 156.162] (II) RADEON(0): Using hsync ranges from config file
    [ 156.162] (II) RADEON(0): Using vrefresh ranges from config file
    [ 156.162] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 156.162] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 156.162] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 156.162] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 156.162] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.229] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.229] (II) RADEON(0): Using hsync ranges from config file
    [ 157.229] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.229] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.229] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.229] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.229] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.229] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.308] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.308] (II) RADEON(0): Using hsync ranges from config file
    [ 157.308] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.308] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.308] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.308] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.308] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.308] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.902] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.902] (II) RADEON(0): Using hsync ranges from config file
    [ 157.902] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.902] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.902] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.902] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.902] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.902] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.978] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.978] (II) RADEON(0): Using hsync ranges from config file
    [ 157.978] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.978] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.978] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.978] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.978] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.978] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 158.056] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 158.056] (II) RADEON(0): Using hsync ranges from config file
    [ 158.056] (II) RADEON(0): Using vrefresh ranges from config file
    [ 158.056] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 158.056] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 158.056] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 158.056] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 158.056] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 158.915] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 158.915] (II) RADEON(0): Using hsync ranges from config file
    [ 158.915] (II) RADEON(0): Using vrefresh ranges from config file
    [ 158.915] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 158.915] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 158.915] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 158.915] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 158.915] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 162.988] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 162.988] (II) RADEON(0): Using hsync ranges from config file
    [ 162.988] (II) RADEON(0): Using vrefresh ranges from config file
    [ 162.988] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 162.988] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 162.988] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 162.988] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 162.988] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 166.595] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 166.595] (II) RADEON(0): Using hsync ranges from config file
    [ 166.595] (II) RADEON(0): Using vrefresh ranges from config file
    [ 166.595] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 166.595] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 166.595] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 166.595] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 166.595] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    And more commands:
    [root@yakir-arch ~]# glxinfo | grep -i opengl
    Unknown chipset 0x6719
    OpenGL vendor string: VMware, Inc.
    OpenGL renderer string: Gallium 0.4 on softpipe
    OpenGL version string: 2.1 Mesa 7.10.2
    OpenGL shading language version string: 1.20
    OpenGL extensions:
    [root@yakir-arch ~]# glxinfo | grep dire
    Unknown chipset 0x6719
    direct rendering: Yes
    [root@yakir-arch ~]# dmesg | grep drm
    [ 1.336436] [drm] Initialized drm 1.1.0 20060810
    [ 1.358306] [drm] radeon defaulting to kernel modesetting.
    [ 1.358371] [drm] radeon kernel modesetting enabled.
    [ 1.359832] [drm] initializing kernel modesetting (CAYMAN 0x1002:0x6719).
    [ 1.359961] [drm] register mmio base: 0xFE620000
    [ 1.360031] [drm] register mmio size: 131072
    [ 1.360464] [drm] Detected VRAM RAM=2048M, BAR=256M
    [ 1.360526] [drm] RAM width 256bits DDR
    [ 1.360894] [drm] radeon: 2048M of VRAM memory ready
    [ 1.360957] [drm] radeon: 512M of GTT memory ready.
    [ 1.361025] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.361088] [drm] Driver supports precise vblank timestamp query.
    [ 1.361268] [drm] radeon: irq initialized.
    [ 1.361331] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 1.361684] [drm] Loading CAYMAN Microcode
    [ 1.385086] [drm] ring test succeeded in 1 usecs
    [ 1.385214] [drm] radeon: ib pool ready.
    [ 1.385372] [drm] ib test succeeded in 0 usecs
    [ 1.385938] [drm] Radeon Display Connectors
    [ 1.386008] [drm] Connector 0:
    [ 1.386076] [drm] DisplayPort
    [ 1.386146] [drm] HPD5
    [ 1.386209] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
    [ 1.386280] [drm] Encoders:
    [ 1.386345] [drm] DFP1: INTERNAL_UNIPHY2
    [ 1.386426] [drm] Connector 1:
    [ 1.386489] [drm] DisplayPort
    [ 1.386551] [drm] HPD4
    [ 1.386616] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    [ 1.386685] [drm] Encoders:
    [ 1.386748] [drm] DFP2: INTERNAL_UNIPHY2
    [ 1.386812] [drm] Connector 2:
    [ 1.386874] [drm] HDMI-A
    [ 1.386936] [drm] HPD6
    [ 1.386999] [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
    [ 1.387068] [drm] Encoders:
    [ 1.387131] [drm] DFP3: INTERNAL_UNIPHY1
    [ 1.387194] [drm] Connector 3:
    [ 1.387257] [drm] DVI-D
    [ 1.387319] [drm] HPD1
    [ 1.387382] [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
    [ 1.387454] [drm] Encoders:
    [ 1.387518] [drm] DFP4: INTERNAL_UNIPHY1
    [ 1.387580] [drm] Connector 4:
    [ 1.387641] [drm] DVI-I
    [ 1.387702] [drm] HPD3
    [ 1.387763] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
    [ 1.387831] [drm] Encoders:
    [ 1.387893] [drm] DFP5: INTERNAL_UNIPHY
    [ 1.387955] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 2.259873] [drm] Internal thermal controller with fan control
    [ 2.260918] [drm] radeon: power management initialized
    [ 2.331033] [drm] fb mappable at 0xC0140000
    [ 2.331093] [drm] vram apper at 0xC0000000
    [ 2.331152] [drm] size 8294400
    [ 2.331210] [drm] fb depth is 24
    [ 2.331268] [drm] pitch is 7680
    [ 2.331359] fbcon: radeondrmfb (fb0) is primary device
    [ 2.542497] fb0: radeondrmfb frame buffer device
    [ 2.542497] drm: registered panic notifier
    [ 2.542500] [drm] Initialized radeon 2.9.0 20080528 for 0000:01:00.0 on minor 0
    [ 29.818060] Modules linked in: eeepc_wmi(+) asus_wmi snd sparse_keymap rfkill pci_hotplug ehci_hcd soundcore wmi ppdev snd_page_alloc parport_pc r8169 usbcore i2c_i801 evdev parport intel_agp sg intel_gtt pcspkr processor button video iTCO_wdt iTCO_vendor_support serio_raw mii fuse ext4 mbcache jbd2 crc16 sd_mod at

    KingYes wrote:
    [root@yakir-arch ~]# glxinfo | grep -i opengl
    Unknown chipset 0x6719
    OpenGL vendor string: VMware, Inc.
    OpenGL renderer string: Gallium 0.4 on softpipe
    EDIT:In the glxinfo command its say 'OpenGL vendor string: VMware, Inc'. Why?
    I don't really know it but "Unknown chipset" sounds like the card may be so new that it is not yet supported, even in testing. "softpipe" means that it is using software rendering instead of the actual 3d hardware.
    It probably will work with newer git versions from mesa and xf86-video-ati and maybe the radeon branch of the kernel. All is found in the inofficial [radeon] repository:
    https://bbs.archlinux.org/viewtopic.php?id=79509

  • Laptop screen does not turn on after resume from suspend/hibernate

    I use systemctl suspend/hibernate to resume,  but the screen does not turn on from resume. everything else still functions just fine, meaning i can type in reboot and reboot, but a "turned off" black screen.
    00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h Processor Root Complex
    00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek [Radeon HD 6520G]
    00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] BeaverCreek HDMI Audio [Radeon HD 6500D and 6400G-6600G series]
    00:02.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Family 12h Processor Root Port
    00:11.0 SATA controller: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode]
    00:12.0 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller (rev 11)
    00:12.2 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller (rev 11)
    00:13.0 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller (rev 11)
    00:13.2 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller (rev 11)
    00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller (rev 13)
    00:14.1 IDE interface: Advanced Micro Devices, Inc. [AMD] FCH IDE Controller
    00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD] FCH Azalia Controller (rev 01)
    00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge (rev 11)
    00:14.4 PCI bridge: Advanced Micro Devices, Inc. [AMD] FCH PCI Bridge (rev 40)
    00:15.0 PCI bridge: Advanced Micro Devices, Inc. [AMD] Hudson PCI to PCI bridge (PCIE port 0)
    00:15.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Hudson PCI to PCI bridge (PCIE port 1)
    00:15.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Hudson PCI to PCI bridge (PCIE port 2)
    00:16.0 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB OHCI Controller (rev 11)
    00:16.2 USB controller: Advanced Micro Devices, Inc. [AMD] FCH USB EHCI Controller (rev 11)
    00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 0 (rev 43)
    00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 1
    00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 2
    00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 3
    00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 4
    00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 6
    00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 5
    00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 7
    04:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
    05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.19.0-1-ARCH (builduser@tobias) (gcc version 4.9.2 20150204 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Feb 9 07:08:20 CET 2015
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=70f3d39a-cd3c-4127-84d2-9af3430201ab rw quiet rootfstype=xfs i8042.nomux=1 i8042.reset
    [ 0.000000] tseg: 009ff00000
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009f8f4fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009f8f5000-0x000000009f939fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f93a000-0x000000009f951fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009f952000-0x000000009f954fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f955000-0x000000009f955fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009f956000-0x000000009f96cfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009f96d000-0x000000009f974fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f975000-0x000000009f9a4fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009f9a5000-0x000000009f9a5fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f9a6000-0x000000009f9b5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009f9b6000-0x000000009f9c3fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f9c4000-0x000000009f9c5fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009f9c6000-0x000000009f9ccfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009f9cd000-0x000000009fa02fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009fa03000-0x000000009fc05fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009fc06000-0x000000009fd78fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009fd79000-0x000000009fef5fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009fef6000-0x000000009fefffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000023effffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: TOSHIBA Satellite L775D/TKBSS, BIOS 1.40 07/22/2011
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x23f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF write-through
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask FF00000000 write-back
    [ 0.000000] 1 base 009FF00000 mask FFFFF00000 uncachable
    [ 0.000000] 2 base 00A0000000 mask FFE0000000 uncachable
    [ 0.000000] 3 base 00C0000000 mask FFC0000000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000023f000000 aka 9200M
    [ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
    [ 0.000000] e820: update [mem 0x9ff00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0x9ff00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fcf30-0x000fcf3f] mapped at [ffff8800000fcf30]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x23ee00000-0x23effffff]
    [ 0.000000] [mem 0x23ee00000-0x23effffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x220000000-0x23edfffff]
    [ 0.000000] [mem 0x220000000-0x23edfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x21fffffff]
    [ 0.000000] [mem 0x200000000-0x21fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x9f8f4fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x9f7fffff] page 2M
    [ 0.000000] [mem 0x9f800000-0x9f8f4fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9f955000-0x9f955fff]
    [ 0.000000] [mem 0x9f955000-0x9f955fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9f9a6000-0x9f9b5fff]
    [ 0.000000] [mem 0x9f9a6000-0x9f9b5fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9fc06000-0x9fd78fff]
    [ 0.000000] [mem 0x9fc06000-0x9fd78fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9fef6000-0x9fefffff]
    [ 0.000000] [mem 0x9fef6000-0x9fefffff] page 4k
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x100001000-0x1ffffffff]
    [ 0.000000] [mem 0x100001000-0x1001fffff] page 4k
    [ 0.000000] [mem 0x100200000-0x13fffffff] page 2M
    [ 0.000000] [mem 0x140000000-0x1ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x37652000-0x37b20fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F0450 000024 (v02 TOSASU)
    [ 0.000000] ACPI: XSDT 0x000000009F93A070 000064 (v01 TOSASU TOSASU00 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x000000009F94E438 0000F4 (v04 TOSASU TOSASU00 01072009 AMI 00010013)
    [ 0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20141107/tbfadt-649)
    [ 0.000000] ACPI: DSDT 0x000000009F93A168 0142CF (v02 TOSASU TOSASU00 00000140 INTL 20051117)
    [ 0.000000] ACPI: FACS 0x000000009F9C6F80 000040
    [ 0.000000] ACPI: APIC 0x000000009F94E530 000072 (v03 TOSASU TOSASU00 01072009 AMI 00010013)
    [ 0.000000] ACPI: ECDT 0x000000009F94E5A8 0000C1 (v01 TOSASU TOSASU00 01072009 AMI. 00000004)
    [ 0.000000] ACPI: SLIC 0x000000009F94E670 000176 (v01 TOSASU TOSASU00 01072009 MSFT 00000001)
    [ 0.000000] ACPI: MCFG 0x000000009F94E7E8 00003C (v01 A M I GMCH945. 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x000000009F94E828 000038 (v01 TOSASU TOSASU00 01072009 AMI 00000004)
    [ 0.000000] ACPI: SSDT 0x000000009F94E860 000E34 (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 0x000000009F94F698 00193D (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000023effffff]
    [ 0.000000] NODE_DATA(0) allocated [mem 0x23eff8000-0x23effbfff]
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236e00000-ffff88023e5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x23effffff]
    [ 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-0x9f8f4fff]
    [ 0.000000] node 0: [mem 0x9f955000-0x9f955fff]
    [ 0.000000] node 0: [mem 0x9f9a6000-0x9f9b5fff]
    [ 0.000000] node 0: [mem 0x9fc06000-0x9fd78fff]
    [ 0.000000] node 0: [mem 0x9fef6000-0x9fefffff]
    [ 0.000000] node 0: [mem 0x100001000-0x23effffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x23effffff]
    [ 0.000000] On node 0 totalpages: 1960479
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10155 pages used for memmap
    [ 0.000000] DMA32 zone: 649859 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20416 pages used for memmap
    [ 0.000000] Normal zone: 1306623 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[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_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x05] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    [ 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 0x9f8f5000-0x9f939fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f93a000-0x9f951fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f952000-0x9f954fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f956000-0x9f96cfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f96d000-0x9f974fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f975000-0x9f9a4fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9a5000-0x9f9a5fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9b6000-0x9f9c3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9c4000-0x9f9c5fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9c6000-0x9f9ccfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9f9cd000-0x9fa02fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fa03000-0x9fc05fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fd79000-0x9fef5fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9ff00000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed60fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed61000-0xfed70fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed71000-0xfed7ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
    [ 0.000000] e820: [mem 0x9ff00000-0xdfffffff] 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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 31 pages/cpu @ffff88023ec00000 s86336 r8192 d32448 u524288
    [ 0.000000] pcpu-alloc: s86336 r8192 d32448 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1929823
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=70f3d39a-cd3c-4127-84d2-9af3430201ab rw quiet rootfstype=xfs i8042.nomux=1 i8042.reset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: 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: 7635708K/7841916K available (5531K kernel code, 917K rwdata, 1744K rodata, 1164K init, 1156K bss, 206208K reserved, 0K cma-reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:8448 nr_irqs:456 16
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1397.380 MHz processor
    [ 0.000043] Calibrating delay loop (skipped), value calculated using timer frequency.. 2795.20 BogoMIPS (lpj=4657933)
    [ 0.000046] pid_max: default: 32768 minimum: 301
    [ 0.000053] ACPI: Core revision 20141107
    [ 0.000055] TOSHIBA Satellite detected - force copy of DSDT to local memory
    [ 0.000123] ACPI: Forced DSDT copy: length 0x142CF copied locally, original unmapped
    [ 0.015021] ACPI: All ACPI Tables successfully acquired
    [ 0.016280] Security Framework initialized
    [ 0.016286] Yama: becoming mindful.
    [ 0.016907] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.019182] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.020189] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.020201] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.020472] Initializing cgroup subsys memory
    [ 0.020479] Initializing cgroup subsys devices
    [ 0.020482] Initializing cgroup subsys freezer
    [ 0.020484] Initializing cgroup subsys net_cls
    [ 0.020487] Initializing cgroup subsys blkio
    [ 0.020510] CPU: Physical Processor ID: 0
    [ 0.020511] CPU: Processor Core ID: 0
    [ 0.020513] mce: CPU supports 6 MCE banks
    [ 0.020522] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 1024, 2MB 128, 4MB 64, 1GB 0
    [ 0.020644] Freeing SMP alternatives memory: 20K (ffffffff81a0a000 - ffffffff81a0f000)
    [ 0.021880] ftrace: allocating 21166 entries in 83 pages
    [ 0.035456] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.068473] smpboot: CPU0: AMD A6-3400M APU with Radeon(tm) HD Graphics (fam: 12, model: 01, stepping: 00)
    [ 0.174081] Performance Events: AMD PMU driver.
    [ 0.174086] ... version: 0
    [ 0.174087] ... bit width: 48
    [ 0.174088] ... generic registers: 4
    [ 0.174089] ... value mask: 0000ffffffffffff
    [ 0.174090] ... max period: 00007fffffffffff
    [ 0.174091] ... fixed-purpose events: 0
    [ 0.174092] ... event mask: 000000000000000f
    [ 0.191034] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.197738] x86: Booting SMP configuration:
    [ 0.197744] .... node #0, CPUs: #1 #2 #3
    [ 0.250891] x86: Booted up 1 node, 4 CPUs
    [ 0.250896] smpboot: Total of 4 processors activated (11183.83 BogoMIPS)
    [ 0.252264] devtmpfs: initialized
    [ 0.257696] PM: Registering ACPI NVS region [mem 0x9f8f5000-0x9f939fff] (282624 bytes)
    [ 0.257715] PM: Registering ACPI NVS region [mem 0x9f952000-0x9f954fff] (12288 bytes)
    [ 0.257718] PM: Registering ACPI NVS region [mem 0x9f96d000-0x9f974fff] (32768 bytes)
    [ 0.257721] PM: Registering ACPI NVS region [mem 0x9f9a5000-0x9f9a5fff] (4096 bytes)
    [ 0.257724] PM: Registering ACPI NVS region [mem 0x9f9b6000-0x9f9c3fff] (57344 bytes)
    [ 0.257727] PM: Registering ACPI NVS region [mem 0x9f9c6000-0x9f9ccfff] (28672 bytes)
    [ 0.257729] PM: Registering ACPI NVS region [mem 0x9fa03000-0x9fc05fff] (2109440 bytes)
    [ 0.258125] pinctrl core: initialized pinctrl subsystem
    [ 0.258173] RTC time: 18:50:52, date: 02/22/15
    [ 0.258343] NET: Registered protocol family 16
    [ 0.270952] cpuidle: using governor ladder
    [ 0.284279] cpuidle: using governor menu
    [ 0.284490] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.284493] ACPI: bus type PCI registered
    [ 0.284495] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.284605] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.284608] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.285035] PCI: Using configuration type 1 for base access
    [ 0.299021] ACPI: Added _OSI(Module Device)
    [ 0.299025] ACPI: Added _OSI(Processor Device)
    [ 0.299027] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.299029] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.300870] ACPI : EC: EC description table is found, configuring boot EC
    [ 0.302900] ACPI: Executed 2 blocks of module-level executable AML code
    [ 0.831121] ACPI: Interpreter enabled
    [ 0.831132] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
    [ 0.831140] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
    [ 0.831167] ACPI: (supports S0 S3 S4 S5)
    [ 0.831169] ACPI: Using IOAPIC for interrupt routing
    [ 0.831382] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.842727] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.842738] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.843157] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
    [ 0.843782] PCI host bridge to bus 0000:00
    [ 0.843788] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.843792] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.843796] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.843800] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.843803] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.843806] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.843810] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.843813] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
    [ 0.843825] pci 0000:00:00.0: [1022:1705] type 00 class 0x060000
    [ 0.843978] pci 0000:00:01.0: [1002:9647] type 00 class 0x030000
    [ 0.843993] pci 0000:00:01.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.844002] pci 0000:00:01.0: reg 0x14: [io 0xf000-0xf0ff]
    [ 0.844011] pci 0000:00:01.0: reg 0x18: [mem 0xfeb00000-0xfeb3ffff]
    [ 0.844070] pci 0000:00:01.0: supports D1 D2
    [ 0.844185] pci 0000:00:01.1: [1002:1714] type 00 class 0x040300
    [ 0.844197] pci 0000:00:01.1: reg 0x10: [mem 0xfeb44000-0xfeb47fff]
    [ 0.844272] pci 0000:00:01.1: supports D1 D2
    [ 0.844388] pci 0000:00:02.0: [1022:1707] type 01 class 0x060400
    [ 0.844483] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.844641] pci 0000:00:11.0: [1022:7801] type 00 class 0x010601
    [ 0.844665] pci 0000:00:11.0: reg 0x10: [io 0xf190-0xf197]
    [ 0.844678] pci 0000:00:11.0: reg 0x14: [io 0xf180-0xf183]
    [ 0.844690] pci 0000:00:11.0: reg 0x18: [io 0xf170-0xf177]
    [ 0.844703] pci 0000:00:11.0: reg 0x1c: [io 0xf160-0xf163]
    [ 0.844715] pci 0000:00:11.0: reg 0x20: [io 0xf150-0xf15f]
    [ 0.844728] pci 0000:00:11.0: reg 0x24: [mem 0xfeb4e000-0xfeb4e7ff]
    [ 0.844896] pci 0000:00:12.0: [1022:7807] type 00 class 0x0c0310
    [ 0.844914] pci 0000:00:12.0: reg 0x10: [mem 0xfeb4d000-0xfeb4dfff]
    [ 0.845044] pci 0000:00:12.0: System wakeup disabled by ACPI
    [ 0.845114] pci 0000:00:12.2: [1022:7808] type 00 class 0x0c0320
    [ 0.845138] pci 0000:00:12.2: reg 0x10: [mem 0xfeb4c000-0xfeb4c0ff]
    [ 0.845242] pci 0000:00:12.2: supports D1 D2
    [ 0.845245] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.845313] pci 0000:00:12.2: System wakeup disabled by ACPI
    [ 0.845383] pci 0000:00:13.0: [1022:7807] type 00 class 0x0c0310
    [ 0.845400] pci 0000:00:13.0: reg 0x10: [mem 0xfeb4b000-0xfeb4bfff]
    [ 0.845529] pci 0000:00:13.0: System wakeup disabled by ACPI
    [ 0.845599] pci 0000:00:13.2: [1022:7808] type 00 class 0x0c0320
    [ 0.845623] pci 0000:00:13.2: reg 0x10: [mem 0xfeb4a000-0xfeb4a0ff]
    [ 0.845727] pci 0000:00:13.2: supports D1 D2
    [ 0.845730] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.845799] pci 0000:00:13.2: System wakeup disabled by ACPI
    [ 0.845867] pci 0000:00:14.0: [1022:780b] type 00 class 0x0c0500
    [ 0.846051] pci 0000:00:14.1: [1022:780c] type 00 class 0x01018a
    [ 0.846069] pci 0000:00:14.1: reg 0x10: [io 0xf140-0xf147]
    [ 0.846081] pci 0000:00:14.1: reg 0x14: [io 0xf130-0xf133]
    [ 0.846094] pci 0000:00:14.1: reg 0x18: [io 0xf120-0xf127]
    [ 0.846107] pci 0000:00:14.1: reg 0x1c: [io 0xf110-0xf113]
    [ 0.846119] pci 0000:00:14.1: reg 0x20: [io 0xf100-0xf10f]
    [ 0.846145] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    [ 0.846148] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
    [ 0.846151] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    [ 0.846154] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
    [ 0.846275] pci 0000:00:14.2: [1022:780d] type 00 class 0x040300
    [ 0.846303] pci 0000:00:14.2: reg 0x10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 0.846387] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.846454] pci 0000:00:14.2: System wakeup disabled by ACPI
    [ 0.846515] pci 0000:00:14.3: [1022:780e] type 00 class 0x060100
    [ 0.846704] pci 0000:00:14.4: [1022:780f] type 01 class 0x060401
    [ 0.846806] pci 0000:00:14.4: System wakeup disabled by ACPI
    [ 0.846879] pci 0000:00:15.0: [1022:43a0] type 01 class 0x060400
    [ 0.846982] pci 0000:00:15.0: supports D1 D2
    [ 0.847053] pci 0000:00:15.0: System wakeup disabled by ACPI
    [ 0.847122] pci 0000:00:15.1: [1022:43a1] type 01 class 0x060400
    [ 0.847225] pci 0000:00:15.1: supports D1 D2
    [ 0.847296] pci 0000:00:15.1: System wakeup disabled by ACPI
    [ 0.847363] pci 0000:00:15.2: [1022:43a2] type 01 class 0x060400
    [ 0.847466] pci 0000:00:15.2: supports D1 D2
    [ 0.847537] pci 0000:00:15.2: System wakeup disabled by ACPI
    [ 0.847610] pci 0000:00:16.0: [1022:7807] type 00 class 0x0c0310
    [ 0.847628] pci 0000:00:16.0: reg 0x10: [mem 0xfeb49000-0xfeb49fff]
    [ 0.847757] pci 0000:00:16.0: System wakeup disabled by ACPI
    [ 0.847827] pci 0000:00:16.2: [1022:7808] type 00 class 0x0c0320
    [ 0.847851] pci 0000:00:16.2: reg 0x10: [mem 0xfeb48000-0xfeb480ff]
    [ 0.847956] pci 0000:00:16.2: supports D1 D2
    [ 0.847959] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.848026] pci 0000:00:16.2: System wakeup disabled by ACPI
    [ 0.848093] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
    [ 0.848228] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
    [ 0.848359] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
    [ 0.848490] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
    [ 0.848632] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
    [ 0.848762] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
    [ 0.848892] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
    [ 0.849021] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
    [ 0.849252] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.849360] pci 0000:00:14.4: PCI bridge to [bus 02] (subtractive decode)
    [ 0.849372] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.849376] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.849379] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.849383] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.849387] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.849390] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.849394] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 0.849483] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.849617] pci 0000:04:00.0: [10ec:8176] type 00 class 0x028000
    [ 0.849646] pci 0000:04:00.0: reg 0x10: [io 0xe000-0xe0ff]
    [ 0.849687] pci 0000:04:00.0: reg 0x18: [mem 0xfea00000-0xfea03fff 64bit]
    [ 0.849834] pci 0000:04:00.0: supports D1 D2
    [ 0.849837] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.849878] pci 0000:04:00.0: System wakeup disabled by ACPI
    [ 0.854467] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.854488] pci 0000:00:15.1: bridge window [io 0xe000-0xefff]
    [ 0.854499] pci 0000:00:15.1: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.854661] pci 0000:05:00.0: [10ec:8136] type 00 class 0x020000
    [ 0.854688] pci 0000:05:00.0: reg 0x10: [io 0xd000-0xd0ff]
    [ 0.854722] pci 0000:05:00.0: reg 0x18: [mem 0xd0004000-0xd0004fff 64bit pref]
    [ 0.854743] pci 0000:05:00.0: reg 0x20: [mem 0xd0000000-0xd0003fff 64bit pref]
    [ 0.854860] pci 0000:05:00.0: supports D1 D2
    [ 0.854863] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.854907] pci 0000:05:00.0: System wakeup disabled by ACPI
    [ 0.861144] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.861165] pci 0000:00:15.2: bridge window [io 0xd000-0xdfff]
    [ 0.861180] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.861237] acpi PNP0A03:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.861791] ACPI: PCI Interrupt Link [LN24] (IRQs *24)
    [ 0.861823] ACPI: PCI Interrupt Link [LN25] (IRQs *25)
    [ 0.861855] ACPI: PCI Interrupt Link [LN26] (IRQs *26)
    [ 0.861887] ACPI: PCI Interrupt Link [LN27] (IRQs *27)
    [ 0.861918] ACPI: PCI Interrupt Link [LN28] (IRQs *28)
    [ 0.861951] ACPI: PCI Interrupt Link [LN29] (IRQs *29)
    [ 0.861981] ACPI: PCI Interrupt Link [LN30] (IRQs *30)
    [ 0.862011] ACPI: PCI Interrupt Link [LN31] (IRQs *31)
    [ 0.862041] ACPI: PCI Interrupt Link [LN32] (IRQs *32)
    [ 0.862071] ACPI: PCI Interrupt Link [LN33] (IRQs *33)
    [ 0.862101] ACPI: PCI Interrupt Link [LN34] (IRQs *34)
    [ 0.862130] ACPI: PCI Interrupt Link [LN35] (IRQs *35)
    [ 0.862160] ACPI: PCI Interrupt Link [LN36] (IRQs *36)
    [ 0.862190] ACPI: PCI Interrupt Link [LN37] (IRQs *37)
    [ 0.862219] ACPI: PCI Interrupt Link [LN38] (IRQs *38)
    [ 0.862249] ACPI: PCI Interrupt Link [LN39] (IRQs *39)
    [ 0.862279] ACPI: PCI Interrupt Link [LN40] (IRQs *40)
    [ 0.862309] ACPI: PCI Interrupt Link [LN41] (IRQs *41)
    [ 0.862338] ACPI: PCI Interrupt Link [LN42] (IRQs *42)
    [ 0.862368] ACPI: PCI Interrupt Link [LN43] (IRQs *43)
    [ 0.862398] ACPI: PCI Interrupt Link [LN44] (IRQs *44)
    [ 0.862428] ACPI: PCI Interrupt Link [LN45] (IRQs *45)
    [ 0.862457] ACPI: PCI Interrupt Link [LN46] (IRQs *46)
    [ 0.862487] ACPI: PCI Interrupt Link [LN47] (IRQs *47)
    [ 0.862517] ACPI: PCI Interrupt Link [LN48] (IRQs *48)
    [ 0.862546] ACPI: PCI Interrupt Link [LN49] (IRQs *49)
    [ 0.862576] ACPI: PCI Interrupt Link [LN50] (IRQs *50)
    [ 0.862606] ACPI: PCI Interrupt Link [LN51] (IRQs *51)
    [ 0.862635] ACPI: PCI Interrupt Link [LN52] (IRQs *52)
    [ 0.862665] ACPI: PCI Interrupt Link [LN53] (IRQs *53)
    [ 0.862695] ACPI: PCI Interrupt Link [LN54] (IRQs *54)
    [ 0.862726] ACPI: PCI Interrupt Link [LN55] (IRQs *55)
    [ 0.862781] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.862883] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.862986] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863084] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863164] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863228] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863292] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.863356] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.864141] ACPI : EC: GPE = 0xc, I/O: command/status = 0x66, data = 0x62
    [ 0.864446] vgaarb: setting as boot device: PCI:0000:00:01.0
    [ 0.864452] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.864464] vgaarb: loaded
    [ 0.864466] vgaarb: bridge control possible 0000:00:01.0
    [ 0.864788] PCI: Using ACPI for IRQ routing
    [ 0.874741] PCI: pci_cache_line_size set to 64 bytes
    [ 0.874840] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.874844] e820: reserve RAM buffer [mem 0x9f8f5000-0x9fffffff]
    [ 0.874848] e820: reserve RAM buffer [mem 0x9f956000-0x9fffffff]
    [ 0.874851] e820: reserve RAM buffer [mem 0x9f9b6000-0x9fffffff]
    [ 0.874854] e820: reserve RAM buffer [mem 0x9fd79000-0x9fffffff]
    [ 0.874856] e820: reserve RAM buffer [mem 0x9ff00000-0x9fffffff]
    [ 0.874859] e820: reserve RAM buffer [mem 0x23f000000-0x23fffffff]
    [ 0.875079] NetLabel: Initializing
    [ 0.875081] NetLabel: domain hash size = 128
    [ 0.875083] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.875101] NetLabel: unlabeled traffic allowed by default
    [ 0.875143] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.875149] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.877246] Switched to clocksource hpet
    [ 0.884868] pnp: PnP ACPI init
    [ 0.885072] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.885079] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.886017] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.886021] system 00:01: [io 0x040b] has been reserved
    [ 0.886025] system 00:01: [io 0x04d6] has been reserved
    [ 0.886029] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.886032] system 00:01: [io 0x0c14] has been reserved
    [ 0.886036] system 00:01: [io 0x0c50-0x0c51] has been reserved
    [ 0.886039] system 00:01: [io 0x0c52] has been reserved
    [ 0.886042] system 00:01: [io 0x0c6c] has been reserved
    [ 0.886046] system 00:01: [io 0x0c6f] has been reserved
    [ 0.886049] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.886052] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.886056] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.886059] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.886063] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.886067] system 00:01: [io 0x0800-0x089f] could not be reserved
    [ 0.886070] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    [ 0.886074] system 00:01: [io 0x0900-0x090f] has been reserved
    [ 0.886082] system 00:01: [io 0x0910-0x091f] has been reserved
    [ 0.886086] system 00:01: [io 0xfe00-0xfefe] has been reserved
    [ 0.886091] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.886096] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.886100] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.886104] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.886107] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.886112] system 00:01: [mem 0xfed00000-0xfed00fff] could not be reserved
    [ 0.886116] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.886120] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886180] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.886279] system 00:03: [io 0x04d0-0x04d1] has been reserved
    [ 0.886283] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886353] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886420] system 00:05: [io 0x0240-0x0259] has been reserved
    [ 0.886424] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.886523] pnp 00:06: Plug and Play ACPI device, IDs TOS0220 SYN1d00 SYN0002 PNP0f13 (active)
    [ 0.886596] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.886784] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.887277] pnp: PnP ACPI: found 9 devices
    [ 0.895955] pci 0000:00:02.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.895964] pci 0000:00:02.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.895969] pci 0000:00:02.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    [ 0.896008] pci 0000:00:02.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.896012] pci 0000:00:02.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.896016] pci 0000:00:02.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.896026] pci 0000:00:02.0: BAR 14: assigned [mem 0xd0100000-0xd02fffff]
    [ 0.896039] pci 0000:00:02.0: BAR 15: assigned [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.896046] pci 0000:00:02.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.896051] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.896056] pci 0000:00:02.0: bridge window [io 0x1000-0x1fff]
    [ 0.896061] pci 0000:00:02.0: bridge window [mem 0xd0100000-0xd02fffff]
    [ 0.896067] pci 0000:00:02.0: bridge window [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.896073] pci 0000:00:14.4: PCI bridge to [bus 02]
    [ 0.896089] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.896103] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.896107] pci 0000:00:15.1: bridge window [io 0xe000-0xefff]
    [ 0.896114] pci 0000:00:15.1: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.896124] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.896129] pci 0000:00:15.2: bridge window [io 0xd000-0xdfff]
    [ 0.896138] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.896147] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.896151] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.896154] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.896157] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.896160] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.896164] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.896167] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.896171] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
    [ 0.896174] pci_bus 0000:01: resource 1 [mem 0xd0100000-0xd02fffff]
    [ 0.896178] pci_bus 0000:01: resource 2 [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.896182] pci_bus 0000:02: resource 4 [io 0x0000-0x03af]
    [ 0.896185] pci_bus 0000:02: resource 5 [io 0x03e0-0x0cf7]
    [ 0.896188] pci_bus 0000:02: resource 6 [io 0x03b0-0x03df]
    [ 0.896191] pci_bus 0000:02: resource 7 [io 0x0d00-0xffff]
    [ 0.896194] pci_bus 0000:02: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.896198] pci_bus 0000:02: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.896201] pci_bus 0000:02: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.896205] pci_bus 0000:04: resource 0 [io 0xe000-0xefff]
    [ 0.896208] pci_bus 0000:04: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.896212] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff]
    [ 0.896215] pci_bus 0000:05: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.896259] NET: Registered protocol family 2
    [ 0.896597] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.896863] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.897301] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.897360] TCP: reno registered
    [ 0.897379] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.897467] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.897618] NET: Registered protocol family 1
    [ 0.897646] pci 0000:00:01.0: Video device with shadowed ROM
    [ 1.838171] PCI: CLS 64 bytes, default 64
    [ 1.838242] Unpacking initramfs...
    [ 1.934095] Freeing initrd memory: 4924K (ffff880037652000 - ffff880037b21000)
    [ 1.934107] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.934110] software IO TLB [mem 0x9b8f5000-0x9f8f5000] (64MB) mapped at [ffff88009b8f5000-ffff88009f8f4fff]
    [ 1.934495] microcode: CPU0: patch_level=0x03000014
    [ 1.934537] microcode: CPU1: patch_level=0x03000014
    [ 1.934580] microcode: CPU2: patch_level=0x03000014
    [ 1.934625] microcode: CPU3: patch_level=0x03000014
    [ 1.934758] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 1.934766] LVT offset 0 assigned for vector 0x400
    [ 1.934817] perf: AMD IBS detected (0x000000ff)
    [ 1.934854] Scanning for low memory corruption every 60 seconds
    [ 1.935293] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 1.935315] Initialise system trusted keyring
    [ 1.935789] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.937285] zpool: loaded
    [ 1.937288] zbud: loaded
    [ 1.937658] VFS: Disk quotas dquot_6.5.2
    [ 1.937709] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.937948] Key type big_key registered
    [ 1.938436] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.938508] io scheduler noop registered
    [ 1.938511] io scheduler deadline registered
    [ 1.938546] io scheduler cfq registered (default)
    [ 1.939375] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
    [ 1.939380] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
    [ 1.939399] pcieport 0000:00:15.0: Signaling PME through PCIe PME interrupt
    [ 1.939403] pcie_pme 0000:00:15.0:pcie01: service driver pcie_pme loaded
    [ 1.939421] pcieport 0000:00:15.1: Signaling PME through PCIe PME interrupt
    [ 1.939423] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
    [ 1.939428] pcie_pme 0000:00:15.1:pcie01: service driver pcie_pme loaded
    [ 1.939447] pcieport 0000:00:15.2: Signaling PME through PCIe PME interrupt
    [ 1.939449] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
    [ 1.939453] pcie_pme 0000:00:15.2:pcie01: service driver pcie_pme loaded
    [ 1.939461] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.939494] pciehp 0000:00:02.0:pcie04: Slot #2 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
    [ 1.939528] pciehp 0000:00:02.0:pcie04: service driver pciehp loaded
    [ 1.939533] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.939550] vesafb: mode is 1152x864x32, linelength=4608, pages=0
    [ 1.939552] vesafb: scrolling: redraw
    [ 1.939554] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 1.939576] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 3904k, total 3904k
    [ 1.955978] Console: switching to colour frame buffer device 144x54
    [ 1.972261] fb0: VESA VGA frame buffer device
    [ 1.972328] GHES: HEST is not enabled!
    [ 1.972535] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.973720] Linux agpgart interface v0.103
    [ 1.973797] rtc_cmos 00:02: RTC can wake from S4
    [ 1.973936] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.973964] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.973983] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.974434] TCP: cubic registered
    [ 1.974593] NET: Registered protocol family 10
    [ 1.975020] NET: Registered protocol family 17
    [ 1.975476] Loading compiled-in X.509 certificates
    [ 1.975502] registered taskstats version 1
    [ 1.976231] Magic number: 3:326:848
    [ 1.976341] rtc_cmos 00:02: setting system clock to 2015-02-22 18:50:54 UTC (1424631054)
    [ 1.976444] PM: Hibernation image not present or could not be loaded.
    [ 1.977023] Freeing unused kernel memory: 1164K (ffffffff818e7000 - ffffffff81a0a000)
    [ 1.977027] Write protecting the kernel read-only data: 8192k
    [ 1.977495] Freeing unused kernel memory: 600K (ffff88000156a000 - ffff880001600000)
    [ 1.977718] Freeing unused kernel memory: 304K (ffff8800017b4000 - ffff880001800000)
    [ 1.979659] random: systemd urandom read with 1 bits of entropy available
    [ 1.980307] systemd[1]: systemd 219 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    [ 1.980576] systemd[1]: Detected architecture 'x86-64'.
    [ 1.980581] systemd[1]: Running in initial RAM disk.
    [ 1.980590] systemd[1]: Running with unpopulated /etc.
    [ 1.980603] systemd[1]: No hostname configured.
    [ 1.980609] systemd[1]: Set hostname to <localhost>.
    [ 1.980655] systemd[1]: Initializing machine ID from random generator.
    [ 1.996373] systemd[1]: Populated /etc with preset unit settings.
    [ 1.999327] systemd[1]: Unit type .busname is not supported on this system.
    [ 2.003390] systemd[1]: Created slice -.slice.
    [ 2.003412] systemd[1]: Starting -.slice.
    [ 2.005054] systemd[1]: Listening on Journal Audit Socket.
    [ 2.005188] systemd[1]: Created slice system.slice.
    [ 2.005200] systemd[1]: Starting system.slice.
    [ 2.005218] systemd[1]: Reached target Swap.
    [ 2.005226] systemd[1]: Starting Swap.
    [ 2.005288] systemd[1]: Listening on udev Control Socket.
    [ 2.005296] systemd[1]: Starting udev Control Socket.
    [ 2.005312] systemd[1]: Reached target Slices.
    [ 2.005320] systemd[1]: Starting Slices.
    [ 2.005335] systemd[1]: Reached target Local File Systems.
    [ 2.005342] systemd[1]: Starting Local File Systems.
    [ 2.005358] systemd[1]: Reached target Timers.
    [ 2.005366] systemd[1]: Starting Timers.
    [ 2.005398] systemd[1]: Listening on udev Kernel Socket.
    [ 2.005409] systemd[1]: Starting udev Kernel Socket.
    [ 2.005430] systemd[1]: Reached target Paths.
    [ 2.005441] systemd[1]: Starting Paths.
    [ 2.005497] systemd[1]: Listening on Journal Socket.
    [ 2.005510] systemd[1]: Starting Journal Socket.
    [ 2.006097] systemd[1]: Starting udev Coldplug all Devices...
    [ 2.006689] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 2.006801] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 2.006811] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 2.006860] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 2.006870] systemd[1]: Starting Journal Socket (/dev/log).
    [ 2.007428] systemd[1]: Starting Journal Service...
    [ 2.007472] systemd[1]: Reached target Sockets.
    [ 2.007494] systemd[1]: Starting Sockets.
    [ 2.011399] systemd[1]: Started Create list of required static device nodes for the current kernel.
    [ 2.012026] systemd[1]: Starting Create Static Device Nodes in /dev...
    [ 2.012842] systemd-journald[63]: Failed to set file attributes: Inappropriate ioctl for device
    [ 2.016230] systemd[1]: Started Create Static Device Nodes in /dev.
    [ 2.016999] systemd[1]: Starting udev Kernel Device Manager...
    [ 2.021212] systemd[1]: Started udev Kernel Device Manager.
    [ 2.024169] systemd[1]: Started udev Coldplug all Devices.
    [ 2.029792] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 2.032026] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 2.032044] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 2.041719] SCSI subsystem initialized
    [ 2.042505] ACPI: bus type USB registered
    [ 2.042538] usbcore: registered new interface driver usbfs
    [ 2.042552] usbcore: registered new interface driver hub
    [ 2.042588] usbcore: registered new device driver usb
    [ 2.044174] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.045154] systemd[1]: Started Journal Service.
    [ 2.045633] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 2.045840] ohci-pci: OHCI PCI platform driver
    [ 2.045993] QUIRK: Enable AMD PLL fix
    [ 2.046022] ohci-pci 0000:00:12.0: OHCI PCI host controller
    [ 2.046033] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
    [ 2.046079] ohci-pci 0000:00:12.0: irq 18, io mem 0xfeb4d000
    [ 2.046697] ehci-pci: EHCI PCI platform driver
    [ 2.047833] libata version 3.00 loaded.
    [ 2.084196] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 2.102273] hub 1-0:1.0: USB hub found
    [ 2.102287] hub 1-0:1.0: 5 ports detected
    [ 2.102593] ohci-pci 0000:00:13.0: OHCI PCI host controller
    [ 2.102600] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 2
    [ 2.102631] ohci-pci 0000:00:13.0: irq 18, io mem 0xfeb4b000
    [ 2.159071] hub 2-0:1.0: USB hub found
    [ 2.159085] hub 2-0:1.0: 5 ports detected
    [ 2.160195] ohci-pci 0000:00:16.0: OHCI PCI host controller
    [ 2.160202] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 3
    [ 2.160235] ohci-pci 0000:00:16.0: irq 18, io mem 0xfeb49000
    [ 2.215699] hub 3-0:1.0: USB hub found
    [ 2.215713] hub 3-0:1.0: 4 ports detected
    [ 2.271489] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 2.271502] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 4
    [ 2.271509] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.271523] ehci-pci 0000:00:12.2: debug port 1
    [ 2.271574] ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb4c000
    [ 2.281276] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 2.281694] hub 4-0:1.0: USB hub found
    [ 2.281705] hub 4-0:1.0: 5 ports detected
    [ 2.338086] hub 1-0:1.0: USB hub found
    [ 2.338100] hub 1-0:1.0: 5 ports detected
    [ 2.338571] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 2.338579] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 5
    [ 2.338584] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.338596] ehci-pci 0000:00:13.2: debug port 1
    [ 2.338634] ehci-pci 0000:00:13.2: irq 17, io mem 0xfeb4a000
    [ 2.347963] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 2.348396] hub 5-0:1.0: USB hub found
    [ 2.348414] hub 5-0:1.0: 5 ports detected
    [ 2.404806] hub 2-0:1.0: USB hub found
    [ 2.404820] hub 2-0:1.0: 5 ports detected
    [ 2.461536] ehci-pci 0000:00:16.2: EHCI Host Controller
    [ 2.461550] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 6
    [ 2.461557] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 2.461571] ehci-pci 0000:00:16.2: debug port 1
    [ 2.461611] ehci-pci 0000:00:16.2: irq 17, io mem 0xfeb48000
    [ 2.471331] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 2.471768] hub 6-0:1.0: USB hub found
    [ 2.471780] hub 6-0:1.0: 4 ports detected
    [ 2.528139] hub 3-0:1.0: USB hub found
    [ 2.528154] hub 3-0:1.0: 4 ports detected
    [ 2.528415] ahci 0000:00:11.0: version 3.0
    [ 2.528689] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    [ 2.528693] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 2.529180] scsi host0: ahci
    [ 2.529664] scsi host1: ahci
    [ 2.529777] ata1: SATA max UDMA/133 abar m2048@0xfeb4e000 port 0xfeb4e100 irq 28
    [ 2.529781] ata2: SATA max UDMA/133 abar m2048@0xfeb4e000 port 0xfeb4e180 irq 28
    [ 2.530551] scsi host2: pata_atiixp
    [ 2.530815] scsi host3: pata_atiixp
    [ 2.530912] ata3: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf100 irq 14
    [ 2.530914] ata4: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf108 irq 15
    [ 2.654798] usb 5-4: new high-speed USB device number 2 using ehci-pci
    [ 2.934859] tsc: Refined TSC clocksource calibration: 1397.458 MHz
    [ 3.014908] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 3.014947] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 3.016183] ata1.00: ATA-8: Hitachi HTS547550A9E384, JE3OA60B, max UDMA/133
    [ 3.016190] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 3.016972] ata2.00: ATAPI: TSSTcorp CDDVDW TS-L633F, TF01, max UDMA/100
    [ 3.017307] ata1.00: configured for UDMA/133
    [ 3.017807] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54755 A60B PQ: 0 ANSI: 5
    [ 3.019278] ata2.00: configured for UDMA/100
    [ 3.025787] scsi 1:0:0:0: CD-ROM TSSTcorp CDDVDW TS-L633F TF01 PQ: 0 ANSI: 5
    [ 3.044649] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 3.044654] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 3.044859] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.044865] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.044918] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.061859] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 3.061874] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 3.062232] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 3.084075] sda: sda1 sda2 sda3
    [ 3.085567] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.414041] SGI XFS with ACLs, security attributes, realtime, no debug enabled
    [ 3.528901] XFS (sda1): Mounting V4 Filesystem
    [ 3.710527] XFS (sda1): Ending clean mount
    [ 3.935255] Switched to clocksource tsc
    [ 3.999076] systemd-journald[63]: Received SIGTERM from PID 1 (systemd).
    [ 4.799287] random: nonblocking pool is initialized
    [ 6.377516] systemd-journald[187]: Failed to set file attributes: Inappropriate ioctl for device
    [ 7.417234] ACPI: acpi_idle registered with cpuidle
    [ 7.464892] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 7.544509] wmi: Mapper loaded
    [ 7.612504] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 7.626522] acpi device:2b: registered as cooling_device4
    [ 7.626631] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:01/input/input2
    [ 7.700708] ACPI Warning: SystemIO range 0x0000000000000b00-0x0000000000000b07 conflicts with OpRegion 0x0000000000000b00-0x0000000000000b0f (\SMBX) (20141107/utaddress-258)
    [ 7.700729] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.734642] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    [ 7.737166] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.737173] ACPI: Thermal Zone [THRM] (50 C)
    [ 7.746486] ACPI: Lid Switch [LID]
    [ 7.746714] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    [ 7.746725] ACPI: Power Button [SLPB]
    [ 7.746874] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 7.746880] ACPI: Power Button [PWRF]
    [ 7.749494] ACPI: Battery Slot [BAT0] (battery present)
    [ 7.749951] ACPI: AC Adapter [AC0] (on-line)
    [ 7.755509] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 7.961538] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 8.061752] [drm] Initialized drm 1.1.0 20060810
    [ 8.296521] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.319199] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 8.319231] r8169 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 8.320035] r8169 0000:05:00.0 eth0: RTL8105e at 0xffffc90000032000, 38:60:77:69:8f:16, XID 00a00000 IRQ 29
    [ 8.363138] kvm: Nested Virtualization enabled
    [ 8.363151] kvm: Nested Paging enabled
    [ 8.704039] [drm] radeon kernel modesetting enabled.
    [ 8.794078] r8169 0000:05:00.0 enp5s0: renamed from eth0
    [ 8.832358] AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    [ 8.832364] AMD IOMMUv2 functionality not available on this system
    [ 8.959092] rtl8192ce: Using firmware rtlwifi/rtl8192cfw.bin
    [ 8.961187] snd_hda_codec_hdmi: unknown parameter 'index' ignored
    [ 8.965010] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card1/input8
    [ 9.031523] media: Linux media interface: v0.10
    [ 9.102014] CRAT table not found
    [ 9.102024] Finished initializing topology ret=0
    [ 9.102177] kfd kfd: Initialized module
    [ 9.102941] checking generic (c0000000 3d0000) vs hw (c0000000 10000000)
    [ 9.102951] fb: switching to radeondrmfb from VESA VGA
    [ 9.103002] Console: switching to colour dummy device 80x25
    [ 9.104030] [drm] initializing kernel modesetting (SUMO 0x1002:0x9647 0x1179:0xFC62).
    [ 9.104059] [drm] register mmio base: 0xFEB00000
    [ 9.104063] [drm] register mmio size: 262144
    [ 9.104144] ATOM BIOS: Toshiba
    [ 9.104219] radeon 0000:00:01.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
    [ 9.104227] radeon 0000:00:01.0: GTT: 1024M 0x0000000020000000 - 0x000000005FFFFFFF
    [ 9.104231] [drm] Detected VRAM RAM=512M, BAR=256M
    [ 9.104235] [drm] RAM width 32bits DDR
    [ 9.104379] [TTM] Zone kernel: Available graphics memory: 3821360 kiB
    [ 9.104390] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
    [ 9.104394] [TTM] Initializing pool allocator
    [ 9.104407] [TTM] Initializing DMA pool allocator
    [ 9.104455] [drm] radeon: 512M of VRAM memory ready
    [ 9.104459] [drm] radeon: 1024M of GTT memory ready.
    [ 9.104497] [drm] Loading SUMO Microcode
    [ 9.124664] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000, board id: 3655, fw id: 582762
    [ 9.124685] psmouse serio1: synaptics: Toshiba Satellite L775D detected, limiting rate to 40pps.
    [ 9.160285] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
    [ 9.170455] Linux video capture interface: v2.00
    [ 9.179293] mousedev: PS/2 mouse device common for all mice
    [ 9.223473] [drm] Internal thermal controller without fan control
    [ 9.223622] [drm] Found smc ucode version: 0x00011200
    [ 9.223730] [drm] radeon: dpm initialized
    [ 9.266919] [drm] GART: num cpu pages 262144, num gpu pages 262144
    [ 9.282200] [drm] PCIE GART of 1024M enabled (table at 0x0000000000274000).
    [ 9.282345] radeon 0000:00:01.0: WB enabled
    [ 9.282349] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0xffff88009b70ac00
    [ 9.282351] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c and cpu addr 0xffff88009b70ac0c
    [ 9.283078] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xffffc90010f32118
    [ 9.283081] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 9.283082] [drm] Driver supports precise vblank timestamp query.
    [ 9.283084] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
    [ 9.283121] radeon 0000:00:01.0: radeon: using MSI.
    [ 9.283145] [drm] radeon: irq initialized.
    [ 9.298245] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
    [ 9.298931] rtlwifi: rtlwifi: wireless switch is on
    [ 9.299718] [drm] ring test on 0 succeeded in 1 usecs
    [ 9.299728] [drm] ring test on 3 succeeded in 3 usecs
    [ 9.307045] sound hdaudioC0D2: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 9.307049] sound hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 9.307053] sound hdaudioC0D2: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    [ 9.307055] sound hdaudioC0D2: mono: mono_out=0x0
    [ 9.307058] sound hdaudioC0D2: inputs:
    [ 9.307061] sound hdaudioC0D2: Mic=0x18
    [ 9.307065] sound hdaudioC0D2: Internal Mic=0x12
    [ 9.315899] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/sound/card0/hdaudioC0D2/input9
    [ 9.316387] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 9.316507] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 9.349814] [drm] ring test on 5 succeeded in 1 usecs
    [ 9.369840] [drm] UVD initialized successfully.
    [ 9.370279] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 9.370314] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 9.524205] rtl8192ce 0000:04:00.0 wlp4s0: renamed from wlan0
    [ 9.769931] uvcvideo: Found UVC 1.00 device TOSHIBA Web Camera - MP (04f2:b289)
    [ 9.788893] input: TOSHIBA Web Camera - MP as /devices/pci0000:00/0000:00:13.2/usb5/5-4/5-4:1.0/input/input12
    [ 9.789309] usbcore: registered new interface driver uvcvideo
    [ 9.789319] USB Video Class driver (1.1.1)
    [ 9.871399] cfg80211: World regulatory domain updated:
    [ 9.871412] cfg80211: DFS Master region: unset
    [ 9.871417] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 9.871425] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871431] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871436] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871441] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    [ 9.871447] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    [ 9.871453] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [ 9.871457] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9.871463] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    [ 9.890507] [drm] ib test on ring 5 succeeded
    [ 9.911771] [drm] radeon atom DIG backlight initialized
    [ 9.911776] [drm] Radeon Display Connectors
    [ 9.911777] [drm] Connector 0:
    [ 9.911779] [drm] VGA-1
    [ 9.911780] [drm] HPD2
    [ 9.911782] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    [ 9.911783] [drm] Encoders:
    [ 9.911784] [drm] CRT1: INTERNAL_UNIPHY2
    [ 9.911786] [drm] CRT1: NUTMEG
    [ 9.911787] [drm] Connector 1:
    [ 9.911788] [drm] LVDS-1
    [ 9.911789] [drm] HPD1
    [ 9.911790] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
    [ 9.911791] [drm] Encoders:
    [ 9.911792] [drm] LCD1: INTERNAL_UNIPHY2
    [ 9.911793] [drm] LCD1: TRAVIS
    [ 9.911794] [drm] Connector 2:
    [ 9.911795] [drm] HDMI-A-1
    [ 9.911796] [drm] HPD5
    [ 9.911798] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
    [ 9.911799] [drm] Encoders:
    [ 9.911800] [drm] DFP1: INTERNAL_UNIPHY1
    [ 10.016569] [drm] fb mappable at 0xC0478000
    [ 10.016576] [drm] vram apper at 0xC0000000
    [ 10.016578] [drm] size 5787648
    [ 10.016580] [drm] fb depth is 24
    [ 10.016582] [drm] pitch is 6400
    [ 10.016970] fbcon: radeondrmfb (fb0) is primary device
    [ 10.078763] Adding 8388604k swap on /dev/sda2. Priority:-1 extents:1 across:8388604k FS
    [ 10.143532] Console: switching to colour frame buffer device 200x56
    [ 10.150308] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
    [ 10.150312] radeon 0000:00:01.0: registered panic notifier
    [ 10.164191] [drm] Initialized radeon 2.40.0 20080528 for 0000:00:01.0 on minor 0
    [ 10.194853] cfg80211: Calling CRDA for country: US
    [ 10.231380] cfg80211: Regulatory domain changed to country: US
    [ 10.231393] cfg80211: DFS Master region: FCC
    [ 10.231397] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 10.231406] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A)
    [ 10.231413] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 1700 mBm), (N/A)
    [ 10.231419] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (0 s)
    [ 10.231425] cfg80211: (5490000 KHz - 5600000 KHz @ 80000 KHz), (N/A, 2300 mBm), (0 s)
    [ 10.231429] cfg80211: (5650000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2300 mBm), (0 s)
    [ 10.231434] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A)
    [ 10.231439] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
    [ 10.422003] XFS (sda3): Mounting V5 Filesystem
    [ 10.837256] XFS (sda3): Ending clean mount
    [ 10.899226] systemd-journald[187]: Received request to flush runtime journal from PID 1
    [ 11.195453] microcode: CPU0: new patch_level=0x03000027
    [ 11.195496] microcode: CPU1: new patch_level=0x03000027
    [ 11.195601] microcode: CPU2: new patch_level=0x03000027
    [ 11.195693] microcode: CPU3: new patch_level=0x03000027
    [ 12.465476] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
    [ 13.726328] wlp4s0: authenticate with 00:1e:2a:6f:46:f8
    [ 13.745730] wlp4s0: send auth to 00:1e:2a:6f:46:f8 (try 1/3)
    [ 13.753012] wlp4s0: authenticated
    [ 13.755130] wlp4s0: associate with 00:1e:2a:6f:46:f8 (try 1/3)
    [ 13.758031] wlp4s0: RX AssocResp from 00:1e:2a:6f:46:f8 (capab=0x411 status=0 aid=3)
    [ 13.758283] wlp4s0: associated
    [ 13.758302] IPv6: ADDRCONF(NETDEV_CHANGE): wlp4s0: link becomes ready
    [ 23.961417] PM: Syncing filesystems ... done.
    [ 24.305227] PM: Preparing system for mem sleep
    [ 24.310243] Freezing user space processes ... (elapsed 0.001 seconds) done.
    [ 24.311535] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
    [ 24.311542] PM: Entering mem sleep
    [ 24.311898] Suspending console(s) (use no_console_suspend to debug)
    [ 24.320753] wlp4s0: deauthenticating f

    Suspend has always been problematic under Linux. It seems to be hit or miss for the most part, but here are some things you can try:
    Use an LTS kernel, tuxonice, pm-utils, etc. See Suspend and Hibernate
    Try a different graphics driver
    Tweak the driver module parameters or build your own driver.
    Unfortunately I don't have experience with the radeon driver, so I can only give you ideas.

  • Corrupted video with Linux 3.8 and i915

    Ever since I upgraded my Linux Kernel to 3.8, I've been getting corrupted graphics after booting. I can get past the corruption if I add "nomodeset" kernel option, however this causes X to use a fallback driver instead of the Intel one.
    This is the dmesg logs with the default modesetting and corrupted graphics:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.7-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.0 20130411 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Apr 13 09:01:47 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ec00-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-0x00000000bad8bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bad8c000-0x00000000badd5fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000badd6000-0x00000000badddfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000badde000-0x00000000baddefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baddf000-0x00000000bae00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae01000-0x00000000bae01fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bae02000-0x00000000bae11fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae12000-0x00000000bae1ffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae20000-0x00000000bae44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae45000-0x00000000bae87fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae88000-0x00000000baffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bb800000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000e00fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000fe407fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe800000-0x00000000fe9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed90000-0x00000000fed93fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: BIOSTAR Group H61MGC/H61MGC, BIOS 4.6.4 01/19/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43fe00 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 C00000000 write-back
    [ 0.000000] 1 base 400000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BB800000 mask FFF800000 uncachable
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0C0000000 mask FC0000000 uncachable
    [ 0.000000] 5 base 43FE00000 mask FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 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: update [mem 0xbb800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbae02 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fcd80-0x000fcd8f] mapped at [ffff8800000fcd80]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbae01fff]
    [ 0.000000] [mem 0x00000000-0xbadfffff] page 2M
    [ 0.000000] [mem 0xbae00000-0xbae01fff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xbae01fff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] [mem 0x100000000-0x43fdfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x43fdfffff @ [mem 0xbad7e000-0xbad8bfff]
    [ 0.000000] RAMDISK: [mem 0x37982000-0x37cb8fff]
    [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 00000000badd6068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000baddcfe0 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000badd6150 06E89 (v02 ALASKA A M I 00000014 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000bae17f80 00040
    [ 0.000000] ACPI: APIC 00000000baddd0d8 00072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 00000000baddd150 00102 (v01 AMICPU PROC 00000001 MSFT 03000001)
    [ 0.000000] ACPI: MCFG 00000000baddd258 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000baddd298 00038 (v01 ALASKA A M I 01072009 AMI. 00000004)
    [ 0.000000] ACPI: ASPT 00000000baddd2d0 00034 (v07 ALASKA PerfTune 01072009 AMI 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43fdfffff]
    [ 0.000000] NODE_DATA [mem 0x43fdfb000-0x43fdfffff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042f400000-ffff88043f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xbad8bfff]
    [ 0.000000] node 0: [mem 0xbae01000-0xbae01fff]
    [ 0.000000] node 0: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] On node 0 totalpages: 4171547
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11879 pages used for memmap
    [ 0.000000] DMA32 zone: 748326 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53240 pages used for memmap
    [ 0.000000] Normal zone: 3354120 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_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, 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 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000bad8c000 - 00000000badd6000
    [ 0.000000] PM: Registered nosave memory: 00000000badd6000 - 00000000badde000
    [ 0.000000] PM: Registered nosave memory: 00000000badde000 - 00000000baddf000
    [ 0.000000] PM: Registered nosave memory: 00000000baddf000 - 00000000bae01000
    [ 0.000000] PM: Registered nosave memory: 00000000bae02000 - 00000000bae12000
    [ 0.000000] PM: Registered nosave memory: 00000000bae12000 - 00000000bae20000
    [ 0.000000] PM: Registered nosave memory: 00000000bae20000 - 00000000bae45000
    [ 0.000000] PM: Registered nosave memory: 00000000bae45000 - 00000000bae88000
    [ 0.000000] PM: Registered nosave memory: 00000000bae88000 - 00000000bb000000
    [ 0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bb800000
    [ 0.000000] PM: Registered nosave memory: 00000000bb800000 - 00000000bfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000d0000000
    [ 0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000e0100000
    [ 0.000000] PM: Registered nosave memory: 00000000e0100000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fe408000
    [ 0.000000] PM: Registered nosave memory: 00000000fe408000 - 00000000fe800000
    [ 0.000000] PM: Registered nosave memory: 00000000fe800000 - 00000000fea00000
    [ 0.000000] PM: Registered nosave memory: 00000000fea00000 - 00000000feb00000
    [ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000fed04000
    [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed08000
    [ 0.000000] PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000
    [ 0.000000] PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed45000
    [ 0.000000] PM: Registered nosave memory: 00000000fed45000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fed94000
    [ 0.000000] PM: Registered nosave memory: 00000000fed94000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] e820: [mem 0xbfa00000-0xcfffffff] 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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88043fa00000 s85184 r8192 d21312 u524288
    [ 0.000000] pcpu-alloc: s85184 r8192 d21312 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4106358
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 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: 16342728k/17823744k available (4908k kernel code, 1137556k absent, 343460k reserved, 4024k data, 820k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 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 3392.088 MHz processor
    [ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6786.85 BogoMIPS (lpj=11306960)
    [ 0.000003] pid_max: default: 32768 minimum: 301
    [ 0.000022] Security Framework initialized
    [ 0.000027] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000680] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003594] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004879] Mount-cache hash table entries: 256
    [ 0.004996] Initializing cgroup subsys cpuacct
    [ 0.004998] Initializing cgroup subsys memory
    [ 0.005003] Initializing cgroup subsys devices
    [ 0.005004] Initializing cgroup subsys freezer
    [ 0.005005] Initializing cgroup subsys net_cls
    [ 0.005006] Initializing cgroup subsys blkio
    [ 0.005023] CPU: Physical Processor ID: 0
    [ 0.005024] CPU: Processor Core ID: 0
    [ 0.005027] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005289] mce: CPU supports 9 MCE banks
    [ 0.005298] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005305] process: using mwait in idle threads
    [ 0.005308] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.005431] Freeing SMP alternatives: 20k freed
    [ 0.006105] ACPI: Core revision 20121018
    [ 0.007846] ftrace: allocating 19310 entries in 76 pages
    [ 0.014700] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.047607] smpboot: CPU0: Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.047612] TSC deadline timer enabled
    [ 0.047615] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
    [ 0.047619] ... version: 3
    [ 0.047620] ... bit width: 48
    [ 0.047620] ... generic registers: 8
    [ 0.047621] ... value mask: 0000ffffffffffff
    [ 0.047622] ... max period: 000000007fffffff
    [ 0.047622] ... fixed-purpose events: 3
    [ 0.047623] ... event mask: 00000007000000ff
    [ 0.084381] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.070954] smpboot: Booting Node 0, Processors #1 #2 #3 OK
    [ 0.124713] Brought up 4 CPUs
    [ 0.124716] smpboot: Total of 4 processors activated (27147.40 BogoMIPS)
    [ 0.127034] devtmpfs: initialized
    [ 0.128242] PM: Registering ACPI NVS region [mem 0xbad8c000-0xbadd5fff] (303104 bytes)
    [ 0.128247] PM: Registering ACPI NVS region [mem 0xbadde000-0xbaddefff] (4096 bytes)
    [ 0.128248] PM: Registering ACPI NVS region [mem 0xbae12000-0xbae1ffff] (57344 bytes)
    [ 0.128249] PM: Registering ACPI NVS region [mem 0xbae45000-0xbae87fff] (274432 bytes)
    [ 0.128713] RTC time: 12:28:08, date: 04/21/13
    [ 0.128739] NET: Registered protocol family 16
    [ 0.128821] ACPI: bus type pci registered
    [ 0.128858] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.128860] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.134043] PCI: Using configuration type 1 for base access
    [ 0.134456] bio: create slab <bio-0> at 0
    [ 0.134491] ACPI: Added _OSI(Module Device)
    [ 0.134492] ACPI: Added _OSI(Processor Device)
    [ 0.134492] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.134493] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.135068] ACPI: EC: Look up EC in DSDT
    [ 0.135781] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.137166] ACPI: SSDT 00000000bae16c18 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.137329] ACPI: Dynamic OEM Table Load:
    [ 0.137331] ACPI: SSDT (null) 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.137344] ACPI: SSDT 00000000bae17e18 00084 (v01 AMI CST 00000001 MSFT 03000001)
    [ 0.137479] ACPI: Dynamic OEM Table Load:
    [ 0.137480] ACPI: SSDT (null) 00084 (v01 AMI CST 00000001 MSFT 03000001)
    [ 0.137815] ACPI: Interpreter enabled
    [ 0.137817] ACPI: (supports S0 S1 S4 S5)
    [ 0.137825] ACPI: Using IOAPIC for interrupt routing
    [ 0.137957] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.140373] ACPI: No dock devices found.
    [ 0.140376] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.140460] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.140461] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.140644] pci_root PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.140660] PCI host bridge to bus 0000:00
    [ 0.140662] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.140663] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.140664] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.140666] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.140667] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.140668] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.140669] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.140670] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xffffffff]
    [ 0.140676] pci 0000:00:00.0: [8086:0150] type 00 class 0x060000
    [ 0.140703] pci 0000:00:02.0: [8086:0162] type 00 class 0x030000
    [ 0.140710] pci 0000:00:02.0: reg 10: [mem 0xfe000000-0xfe3fffff 64bit]
    [ 0.140714] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.140717] pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f]
    [ 0.140761] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 0.140782] pci 0000:00:16.0: reg 10: [mem 0xfe407000-0xfe40700f 64bit]
    [ 0.140852] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.140882] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 0.140901] pci 0000:00:1a.0: reg 10: [mem 0xfe406000-0xfe4063ff]
    [ 0.140986] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.141009] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 0.141022] pci 0000:00:1b.0: reg 10: [mem 0xfe400000-0xfe403fff 64bit]
    [ 0.141084] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.141106] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 0.141179] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.141202] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    [ 0.141274] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.141305] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 0.141327] pci 0000:00:1d.0: reg 10: [mem 0xfe405000-0xfe4053ff]
    [ 0.141412] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.141435] pci 0000:00:1f.0: [8086:1c5c] type 00 class 0x060100
    [ 0.141547] pci 0000:00:1f.2: [8086:1c00] type 00 class 0x01018a
    [ 0.141560] pci 0000:00:1f.2: reg 10: [io 0xf110-0xf117]
    [ 0.141566] pci 0000:00:1f.2: reg 14: [io 0xf100-0xf103]
    [ 0.141573] pci 0000:00:1f.2: reg 18: [io 0xf0f0-0xf0f7]
    [ 0.141580] pci 0000:00:1f.2: reg 1c: [io 0xf0e0-0xf0e3]
    [ 0.141587] pci 0000:00:1f.2: reg 20: [io 0xf0d0-0xf0df]
    [ 0.141594] pci 0000:00:1f.2: reg 24: [io 0xf0c0-0xf0cf]
    [ 0.141635] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 0.141648] pci 0000:00:1f.3: reg 10: [mem 0xfe404000-0xfe4040ff 64bit]
    [ 0.141666] pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f]
    [ 0.141696] pci 0000:00:1f.5: [8086:1c08] type 00 class 0x010185
    [ 0.141709] pci 0000:00:1f.5: reg 10: [io 0xf0b0-0xf0b7]
    [ 0.141716] pci 0000:00:1f.5: reg 14: [io 0xf0a0-0xf0a3]
    [ 0.141723] pci 0000:00:1f.5: reg 18: [io 0xf090-0xf097]
    [ 0.141730] pci 0000:00:1f.5: reg 1c: [io 0xf080-0xf083]
    [ 0.141737] pci 0000:00:1f.5: reg 20: [io 0xf070-0xf07f]
    [ 0.141743] pci 0000:00:1f.5: reg 24: [io 0xf060-0xf06f]
    [ 0.141821] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.141889] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.141908] pci 0000:02:00.0: reg 10: [io 0xe000-0xe0ff]
    [ 0.141941] pci 0000:02:00.0: reg 18: [mem 0xe0004000-0xe0004fff 64bit pref]
    [ 0.141961] pci 0000:02:00.0: reg 20: [mem 0xe0000000-0xe0003fff 64bit pref]
    [ 0.142050] pci 0000:02:00.0: supports D1 D2
    [ 0.142051] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.147998] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.148003] pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
    [ 0.148013] pci 0000:00:1c.1: bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
    [ 0.148056] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    [ 0.148071] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
    [ 0.148131] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.148233] pci0000:00: ACPI _OSC control (0x19) granted
    [ 0.148555] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.148580] ACPI: PCI Interrupt Link [LNKB] (IRQs *3 4 5 6 7 10 11 12 14 15)
    [ 0.148604] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.148627] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 12 14 15)
    [ 0.148651] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
    [ 0.148675] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
    [ 0.148699] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.148724] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    [ 0.148771] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.148772] vgaarb: loaded
    [ 0.148773] vgaarb: bridge control possible 0000:00:02.0
    [ 0.148791] PCI: Using ACPI for IRQ routing
    [ 0.150239] PCI: pci_cache_line_size set to 64 bytes
    [ 0.150274] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.150275] e820: reserve RAM buffer [mem 0xbad8c000-0xbbffffff]
    [ 0.150276] e820: reserve RAM buffer [mem 0xbae02000-0xbbffffff]
    [ 0.150277] e820: reserve RAM buffer [mem 0x43fe00000-0x43fffffff]
    [ 0.150330] NetLabel: Initializing
    [ 0.150330] NetLabel: domain hash size = 128
    [ 0.150331] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.150338] NetLabel: unlabeled traffic allowed by default
    [ 0.150351] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.150354] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.152358] Switching to clocksource hpet
    [ 0.154978] pnp: PnP ACPI init
    [ 0.154986] ACPI: bus type pnp registered
    [ 0.155052] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
    [ 0.155054] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.155055] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.155056] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.155057] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
    [ 0.155060] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.155126] system 00:01: [io 0x0a00-0x0a0f] has been reserved
    [ 0.155127] system 00:01: [io 0x0a30-0x0a3f] has been reserved
    [ 0.155128] system 00:01: [io 0x0a20-0x0a2f] has been reserved
    [ 0.155130] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.155242] pnp 00:02: [dma 0 disabled]
    [ 0.155272] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.155473] pnp 00:03: [dma 0 disabled]
    [ 0.155550] pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.155556] pnp 00:04: [dma 4]
    [ 0.155565] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.155584] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.155595] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.155622] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 0.155624] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.155639] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.155737] system 00:09: [io 0x0400-0x0453] has been reserved
    [ 0.155738] system 00:09: [io 0x0458-0x047f] has been reserved
    [ 0.155740] system 00:09: [io 0x1180-0x119f] has been reserved
    [ 0.155741] system 00:09: [io 0x0500-0x057f] has been reserved
    [ 0.155742] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.155744] system 00:09: [mem 0xfec00000-0xfecfffff] could not be reserved
    [ 0.155745] system 00:09: [mem 0xfed08000-0xfed08fff] has been reserved
    [ 0.155746] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.155748] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.155778] system 00:0a: [io 0x0454-0x0457] has been reserved
    [ 0.155779] system 00:0a: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.155841] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.155914] pnp: PnP ACPI: found 12 devices
    [ 0.155915] ACPI: ACPI bus type pnp unregistered
    [ 0.161646] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.161657] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.161660] pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
    [ 0.161666] pci 0000:00:1c.1: bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
    [ 0.161686] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.161687] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.161688] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.161689] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.161690] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.161692] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.161693] pci_bus 0000:00: resource 10 [mem 0xbfa00000-0xffffffff]
    [ 0.161694] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.161695] pci_bus 0000:02: resource 2 [mem 0xe0000000-0xe00fffff 64bit pref]
    [ 0.161711] NET: Registered protocol family 2
    [ 0.161855] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    [ 0.162134] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.162257] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.162268] TCP: reno registered
    [ 0.162280] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.162322] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.162389] NET: Registered protocol family 1
    [ 0.162397] pci 0000:00:02.0: Boot video device
    [ 1.491880] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
    [ 2.821411] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
    [ 2.821534] PCI: CLS 64 bytes, default 64
    [ 2.821560] Unpacking initramfs...
    [ 2.860148] Freeing initrd memory: 3292k freed
    [ 2.860410] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 2.860412] software IO TLB [mem 0xb6d7e000-0xbad7e000] (64MB) mapped at [ffff8800b6d7e000-ffff8800bad7dfff]
    [ 2.860631] audit: initializing netlink socket (disabled)
    [ 2.860638] type=2000 audit(1366547290.869:1): initialized
    [ 2.869024] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 2.870168] VFS: Disk quotas dquot_6.5.2
    [ 2.870192] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 2.870287] msgmni has been set to 31925
    [ 2.870432] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 2.870451] io scheduler noop registered
    [ 2.870452] io scheduler deadline registered
    [ 2.870455] io scheduler cfq registered (default)
    [ 2.870600] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 2.870600] vesafb: scrolling: redraw
    [ 2.870602] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 2.871275] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90005c00000, using 8128k, total 8128k
    [ 2.980432] Console: switching to colour frame buffer device 240x67
    [ 3.089134] fb0: VESA VGA frame buffer device
    [ 3.089141] intel_idle: MWAIT substates: 0x1120
    [ 3.089141] intel_idle: v0.4 model 0x3A
    [ 3.089142] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 3.089165] GHES: HEST is not enabled!
    [ 3.089198] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 3.109690] 00:02: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 3.109934] Linux agpgart interface v0.103
    [ 3.109973] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 3.110328] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 3.110343] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 3.110406] mousedev: PS/2 mouse device common for all mice
    [ 3.110446] rtc_cmos 00:05: RTC can wake from S4
    [ 3.110549] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 3.110579] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 3.110620] cpuidle: using governor ladder
    [ 3.110670] cpuidle: using governor menu
    [ 3.110671] EFI Variables Facility v0.08 2004-May-17
    [ 3.110696] drop_monitor: Initializing network drop monitor service
    [ 3.110739] TCP: cubic registered
    [ 3.110796] NET: Registered protocol family 10
    [ 3.110880] NET: Registered protocol family 17
    [ 3.110888] Key type dns_resolver registered
    [ 3.111039] PM: Hibernation image not present or could not be loaded.
    [ 3.111044] registered taskstats version 1
    [ 3.111641] Magic number: 9:762:481
    [ 3.111722] rtc_cmos 00:05: setting system clock to 2013-04-21 12:28:11 UTC (1366547291)
    [ 3.112698] Freeing unused kernel memory: 820k freed
    [ 3.112774] Write protecting the kernel read-only data: 8192k
    [ 3.115117] Freeing unused kernel memory: 1224k freed
    [ 3.116059] Freeing unused kernel memory: 440k freed
    [ 3.120597] systemd-udevd[55]: starting version 201
    [ 3.121991] [drm] Initialized drm 1.1.0 20060810
    [ 3.122543] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
    [ 3.122548] ACPI: Power Button [PWRB]
    [ 3.122604] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 3.122606] ACPI: Power Button [PWRF]
    [ 3.124834] [drm] Memory usable by graphics device = 2048M
    [ 3.124837] checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
    [ 3.124838] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 3.124847] Console: switching to colour dummy device 80x25
    [ 3.124912] i915 0000:00:02.0: setting latency timer to 64
    [ 3.147632] i915 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 3.147637] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.147638] [drm] Driver supports precise vblank timestamp query.
    [ 3.147660] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.160432] [drm:__gen6_gt_force_wake_mt_get] *ERROR* Timed out waiting for forcewake to ack request.
    [ 3.170403] [drm:__gen6_gt_wait_for_thread_c0] *ERROR* GT thread status wait timed out
    [ 3.223613] [drm:init_ring_common] *ERROR* render ring initialization failed ctl 00000000 head 00000000 tail 00000000 start 00000000
    [ 4.074424] [drm:__gen6_gt_force_wake_mt_get] *ERROR* Timed out waiting for forcewake to ack request.
    [ 4.094365] [drm:__gen6_gt_wait_for_thread_c0] *ERROR* GT thread status wait timed out
    [ 4.094384] tsc: Refined TSC clocksource calibration: 3392.294 MHz
    [ 4.094386] Switching to clocksource tsc
    [ 4.147630] [drm:init_ring_common] *ERROR* bsd ring initialization failed ctl 00000000 head 00000000 tail 00000000 start 00000000
    [ 4.147706] [drm:i915_driver_load] *ERROR* failed to init modeset
    [ 4.148415] i915: probe of 0000:00:02.0 failed with error -5
    [ 4.161263] ACPI: bus type usb registered
    [ 4.161317] usbcore: registered new interface driver usbfs
    [ 4.161324] usbcore: registered new interface driver hub
    [ 4.161413] usbcore: registered new device driver usb
    [ 4.161574] SCSI subsystem initialized
    [ 4.162262] ACPI: bus type scsi registered
    [ 4.162335] libata version 3.00 loaded.
    [ 4.162367] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.162577] ehci-pci: EHCI PCI platform driver
    [ 4.162612] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 4.162615] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 4.162619] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 4.162631] ehci-pci 0000:00:1a.0: debug port 2
    [ 4.166507] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 4.166520] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfe406000
    [ 4.174224] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 4.174406] hub 1-0:1.0: USB hub found
    [ 4.174411] hub 1-0:1.0: 2 ports detected
    [ 4.174488] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 4.174491] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 4.174494] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 4.174504] ehci-pci 0000:00:1d.0: debug port 2
    [ 4.178376] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 4.178387] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfe405000
    [ 4.187519] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 4.187706] hub 2-0:1.0: USB hub found
    [ 4.187709] hub 2-0:1.0: 2 ports detected
    [ 4.187805] ata_piix 0000:00:1f.2: version 2.13
    [ 4.187823] ata_piix 0000:00:1f.2: MAP [
    [ 4.187824] P0 P2 P1 P3 ]
    [ 4.340467] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 4.340720] scsi0 : ata_piix
    [ 4.341117] scsi1 : ata_piix
    [ 4.341342] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf0d0 irq 14
    [ 4.341347] ata2: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf0d8 irq 15
    [ 4.341360] ata_piix 0000:00:1f.5: MAP [
    [ 4.341360] P0 -- P1 -- ]
    [ 4.480019] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 4.493313] ata_piix 0000:00:1f.5: SCR access via SIDPR is available but doesn't work
    [ 4.493326] ata_piix 0000:00:1f.5: setting latency timer to 64
    [ 4.493538] scsi2 : ata_piix
    [ 4.493885] scsi3 : ata_piix
    [ 4.494108] ata3: SATA max UDMA/133 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 19
    [ 4.494109] ata4: SATA max UDMA/133 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 19
    [ 4.603626] hub 1-1:1.0: USB hub found
    [ 4.603699] hub 1-1:1.0: 4 ports detected
    [ 4.709364] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 4.832948] hub 2-1:1.0: USB hub found
    [ 4.833043] hub 2-1:1.0: 6 ports detected
    [ 4.898989] usb 1-1.1: new low-speed USB device number 3 using ehci-pci
    [ 4.999004] usbcore: registered new interface driver usbhid
    [ 4.999005] usbhid: USB HID core driver
    [ 4.999367] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input2
    [ 4.999427] hid-generic 0003:046D:C521.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1.1/input0
    [ 5.002139] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1/input/input3
    [ 5.002355] hid-generic 0003:046D:C521.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1a.0-1.1/input1
    [ 5.055167] usb 1-1.3: new high-speed USB device number 4 using ehci-pci
    [ 5.360826] ata2.00: failed to resume link (SControl 0)
    [ 5.424109] usb 1-1.4: new full-speed USB device number 5 using ehci-pci
    [ 5.517457] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input4
    [ 5.517569] hid-generic 0003:045E:0745.0003: input,hidraw2: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-0000:00:1a.0-1.4/input0
    [ 5.523155] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1/input/input5
    [ 5.523390] hid-generic 0003:045E:0745.0004: input,hidraw3: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-0000:00:1a.0-1.4/input1
    [ 5.538878] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.2/input/input6
    [ 5.539104] hid-generic 0003:045E:0745.0005: input,hiddev0,hidraw4: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-0000:00:1a.0-1.4/input2
    [ 5.616931] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
    [ 5.679916] ata1.01: failed to resume link (SControl 0)
    [ 5.702724] input: Western Digital External HDD as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/input/input7
    [ 5.702795] hid-generic 0003:1058:0705.0006: input,hidraw5: USB HID v1.10 Device [Western Digital External HDD ] on usb-0000:00:1d.0-1.3/input1
    [ 5.703448] Initializing USB Mass Storage driver...
    [ 5.703513] scsi4 : usb-storage 2-1.3:1.0
    [ 5.703555] usbcore: registered new interface driver usb-storage
    [ 5.703556] USB Mass Storage support registered.
    [ 5.832877] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 5.832888] ata1.01: SATA link down (SStatus 0 SControl 0)
    [ 5.839930] ata1.00: ATA-8: Hitachi HDS721010CLA330, JP4OA3MA, max UDMA/133
    [ 5.839934] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 5.853220] ata1.00: configured for UDMA/133
    [ 5.853398] scsi 0:0:0:0: Direct-Access ATA Hitachi HDS72101 JP4O PQ: 0 ANSI: 5
    [ 6.381306] ata2.01: failed to resume link (SControl 0)
    [ 6.392485] ata2.00: SATA link down (SStatus 4 SControl 0)
    [ 6.392498] ata2.01: SATA link down (SStatus 0 SControl 0)
    [ 6.393465] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 6.393486] sd 0:0:0:0: [sda] Write Protect is off
    [ 6.393488] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 6.393496] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 6.398867] sda: sda1 sda2
    [ 6.399148] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 6.684261] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 6.704492] scsi 4:0:0:0: Direct-Access WD 5000BEV External 1.75 PQ: 0 ANSI: 4
    [ 6.705358] sd 4:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 6.706072] sd 4:0:0:0: [sdb] Write Protect is off
    [ 6.706077] sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00
    [ 6.706816] sd 4:0:0:0: [sdb] No Caching mode page present
    [ 6.706824] sd 4:0:0:0: [sdb] Assuming drive cache: write through
    [ 6.709057] sd 4:0:0:0: [sdb] No Caching mode page present
    [ 6.709064] sd 4:0:0:0: [sdb] Assuming drive cache: write through
    [ 6.709536] sdb: sdb1 sdb2 sdb3
    [ 6.712170] sd 4:0:0:0: [sdb] No Caching mode page present
    [ 6.712177] sd 4:0:0:0: [sdb] Assuming drive cache: write through
    [ 6.712182] sd 4:0:0:0: [sdb] Attached SCSI disk
    [ 7.159102] systemd[1]: systemd 201 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 7.170787] systemd[1]: Set hostname to <monolith>.
    [ 7.649154] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 7.649194] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 7.649202] systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device...
    [ 7.649209] systemd[1]: Starting Network is Online.
    [ 7.649215] systemd[1]: Reached target Network is Online.
    [ 7.649220] systemd[1]: Starting mnt-netfs.automount.
    [ 7.661823] systemd[1]: Set up automount mnt-netfs.automount.
    [ 7.661832] systemd[1]: Starting Remote File Systems.
    [ 7.661838] systemd[1]: Reached target Remote File Systems.
    [ 7.661843] systemd[1]: Starting Syslog Socket.
    [ 7.661864] systemd[1]: Listening on Syslog Socket.
    [ 7.661870] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 7.661885] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 7.661890] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 7.661900] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 7.661904] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 7.661918] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 7.661923] systemd[1]: Starting Delayed Shutdown Socket.
    [ 7.661934] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 7.661940] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 7.661962] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 7.661980] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 7.662020] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 7.662026] systemd[1]: Starting Journal Socket.
    [ 7.662050] systemd[1]: Listening on Journal Socket.
    [ 7.662059] systemd[1]: Mounting POSIX Message Queue File System...
    [ 7.682703] systemd[1]: Started Set Up Additional Binary Formats.
    [ 7.686581] systemd[1]: Starting Apply Kernel Variables...
    [ 7.690932] systemd[1]: Mounting Debug File System...
    [ 7.694343] systemd[1]: Starting Journal Service...
    [ 7.700886] systemd[1]: Started Journal Service.
    [ 7.712541] systemd[1]: Starting Load Kernel Modules...
    [ 7.714248] systemd[1]: Starting Encrypted Volumes.
    [ 7.714259] systemd[1]: Reached target Encrypted Volumes.
    [ 7.714267] systemd[1]: Starting Setup Virtual Console...
    [ 7.730815] systemd[1]: Starting udev Kernel Socket.
    [ 7.730835] systemd[1]: Listening on udev Kernel Socket.
    [ 7.730869] systemd[1]: Starting udev Control Socket.
    [ 7.730884] systemd[1]: Listening on udev Control Socket.
    [ 7.730912] systemd[1]: Starting udev Coldplug all Devices...
    [ 7.747426] systemd[1]: Starting udev Kernel Device Manager...
    [ 7.770676] systemd[1]: Mounting Huge Pages File System...
    [ 7.787329] systemd[1]: Starting Swap.
    [ 7.787341] systemd[1]: Reached target Swap.
    [ 7.787360] systemd[1]: Started File System Check on Root Device.
    [ 7.787366] systemd[1]: Mounting Temporary Directory...
    [ 7.810621] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 7.817216] systemd[1]: Expecting device dev-disk-by\x2duuid-e2db39e9\x2d056c\x2d44ed\x2d8d42\x2d1b027e4a0d24.device...
    [ 8.023502] EXT4-fs (sda1): re-mounted. Opts: (null)
    [ 8.045846] systemd-udevd[121]: starting version 201
    [ 8.151804] loop: module loaded
    [ 8.186713] vboxdrv: Found 4 processor cores.
    [ 8.186976] vboxdrv: fAsync=0 offMin=0x216 offMax=0x9aea
    [ 8.187033] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 8.187034] vboxdrv: Successfully loaded version 4.2.12_OSE (interface 0x001a0004).
    [ 8.716904] ACPI: Requesting acpi_cpufreq
    [ 8.728317] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 8.767237] microcode: CPU0 sig=0x306a9, pf=0x2, revision=0xa
    [ 8.853130] thermal LNXTHERM:00: registered as thermal_zone0
    [ 8.853132] ACPI: Thermal Zone [THRM] (37 C)
    [ 8.929755] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 9.026224] mei 0000:00:16.0: setting latency timer to 64
    [ 9.026302] mei 0000:00:16.0: irq 40 for MSI/MSI-X
    [ 9.032384] parport_pc 00:03: reported by Plug and Play ACPI
    [ 9.032430] parport0: PC-style at 0x378, irq 5 [PCSPP,TRISTATE]
    [ 9.167592] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 9.167844] r8169 0000:02:00.0: irq 41 for MSI/MSI-X
    [ 9.167971] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90005c22000, b8:97:5a:0a:fc:9e, XID 0c900800 IRQ 41
    [ 9.167973] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 9.345693] microcode: CPU1 sig=0x306a9, pf=0x2, revision=0xa
    [ 9.386088] ppdev: user-space parallel port driver
    [ 9.386810] microcode: CPU2 sig=0x306a9, pf=0x2, revision=0xa
    [ 9.387792] microcode: CPU3 sig=0x306a9, pf=0x2, revision=0xa
    [ 9.388032] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 9.469096] media: Linux media interface: v0.10
    [ 9.476345] Linux video capture interface: v2.00
    [ 9.497387] uvcvideo: Found UVC 1.00 device <unnamed> (046d:081b)
    [ 9.510837] input: UVC Camera (046d:081b) as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input9
    [ 9.510906] usbcore: registered new interface driver uvcvideo
    [ 9.510907] USB Video Class driver (1.1.1)
    [ 9.529106] iTCO_vendor_support: vendor-support=0
    [ 9.537373] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 9.537428] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 9.537524] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 9.544558] gpio_ich: GPIO from 180 to 255 on gpio_ich
    [ 9.607707] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [ 9.626188] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 9.626255] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 9.626287] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 9.626319] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    [ 9.626349] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    [ 10.336472] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 10.732413] 4:3:1: cannot set freq 16000 to ep 0x86
    [ 10.881026] usbcore: registered new interface driver snd-usb-audio
    [ 10.903764] r8169 0000:02:00.0 eth0: link down
    [ 10.903796] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 10.903806] r8169 0000:02:00.0 eth0: link down
    [ 11.696715] systemd-logind[297]: Watching system buttons on /dev/input/event1 (Power Button)
    [ 11.696774] systemd-logind[297]: Watching system buttons on /dev/input/event0 (Power Button)
    [ 12.498819] r8169 0000:02:00.0 eth0: link up
    [ 12.498826] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 19.281485] FS-Cache: Loaded
    [ 19.295688] FS-Cache: Netfs 'cifs' registered for caching
    [ 19.295798] Key type cifs.spnego registered
    [ 19.295811] Key type cifs.idmap registered
    [ 74.361879] mtrr: no MTRR for d0000000,3ff0000 found
    With modesetting disabled I no longer see " [drm:i915_driver_load] *ERROR* failed to init modeset", but get a new error that the agpgart module cannot be initialized:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.7-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.0 20130411 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Apr 13 09:01:47 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet nomodeset
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ec00-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-0x00000000bad8bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bad8c000-0x00000000badd5fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000badd6000-0x00000000badddfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000badde000-0x00000000baddefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baddf000-0x00000000bae00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae01000-0x00000000bae01fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bae02000-0x00000000bae11fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae12000-0x00000000bae1ffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae20000-0x00000000bae44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae45000-0x00000000bae87fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae88000-0x00000000baffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bb800000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000e00fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000fe407fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe800000-0x00000000fe9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed90000-0x00000000fed93fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: BIOSTAR Group H61MGC/H61MGC, BIOS 4.6.4 01/19/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43fe00 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 C00000000 write-back
    [ 0.000000] 1 base 400000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BB800000 mask FFF800000 uncachable
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0C0000000 mask FC0000000 uncachable
    [ 0.000000] 5 base 43FE00000 mask FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 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: update [mem 0xbb800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbae02 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fcd80-0x000fcd8f] mapped at [ffff8800000fcd80]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbae01fff]
    [ 0.000000] [mem 0x00000000-0xbadfffff] page 2M
    [ 0.000000] [mem 0xbae00000-0xbae01fff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xbae01fff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] [mem 0x100000000-0x43fdfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x43fdfffff @ [mem 0xbad7e000-0xbad8bfff]
    [ 0.000000] RAMDISK: [mem 0x37982000-0x37cb8fff]
    [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 00000000badd6068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000baddcfe0 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000badd6150 06E89 (v02 ALASKA A M I 00000014 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000bae17f80 00040
    [ 0.000000] ACPI: APIC 00000000baddd0d8 00072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 00000000baddd150 00102 (v01 AMICPU PROC 00000001 MSFT 03000001)
    [ 0.000000] ACPI: MCFG 00000000baddd258 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000baddd298 00038 (v01 ALASKA A M I 01072009 AMI. 00000004)
    [ 0.000000] ACPI: ASPT 00000000baddd2d0 00034 (v07 ALASKA PerfTune 01072009 AMI 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43fdfffff]
    [ 0.000000] NODE_DATA [mem 0x43fdfb000-0x43fdfffff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042f400000-ffff88043f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xbad8bfff]
    [ 0.000000] node 0: [mem 0xbae01000-0xbae01fff]
    [ 0.000000] node 0: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] On node 0 totalpages: 4171547
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11879 pages used for memmap
    [ 0.000000] DMA32 zone: 748326 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53240 pages used for memmap
    [ 0.000000] Normal zone: 3354120 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_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, 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 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000bad8c000 - 00000000badd6000
    [ 0.000000] PM: Registered nosave memory: 00000000badd6000 - 00000000badde000
    [ 0.000000] PM: Registered nosave memory: 00000000badde000 - 00000000baddf000
    [ 0.000000] PM: Registered nosave memory: 00000000baddf000 - 00000000bae01000
    [ 0.000000] PM: Registered nosave memory: 00000000bae02000 - 00000000bae12000
    [ 0.000000] PM: Registered nosave memory: 00000000bae12000 - 00000000bae20000
    [ 0.000000] PM: Registered nosave memory: 00000000bae20000 - 00000000bae45000
    [ 0.000000] PM: Registered nosave memory: 00000000bae45000 - 00000000bae88000
    [ 0.000000] PM: Registered nosave memory: 00000000bae88000 - 00000000bb000000
    [ 0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bb800000
    [ 0.000000] PM: Registered nosave memory: 00000000bb800000 - 00000000bfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000d0000000
    [ 0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000e0100000
    [ 0.000000] PM: Registered nosave memory: 00000000e0100000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fe408000
    [ 0.000000] PM: Registered nosave memory: 00000000fe408000 - 00000000fe800000
    [ 0.000000] PM: Registered nosave memory: 00000000fe800000 - 00000000fea00000
    [ 0.000000] PM: Registered nosave memory: 00000000fea00000 - 00000000feb00000
    [ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000fed04000
    [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed08000
    [ 0.000000] PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000
    [ 0.000000] PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed45000
    [ 0.000000] PM: Registered nosave memory: 00000000fed45000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fed94000
    [ 0.000000] PM: Registered nosave memory: 00000000fed94000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] e820: [mem 0xbfa00000-0xcfffffff] 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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88043fa00000 s85184 r8192 d21312 u524288
    [ 0.000000] pcpu-alloc: s85184 r8192 d21312 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4106358
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet nomodeset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 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: 16342728k/17823744k available (4908k kernel code, 1137556k absent, 343460k reserved, 4024k data, 820k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 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 3392.360 MHz processor
    [ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6787.41 BogoMIPS (lpj=11307866)
    [ 0.000003] pid_max: default: 32768 minimum: 301
    [ 0.000022] Security Framework initialized
    [ 0.000027] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000670] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003579] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004861] Mount-cache hash table entries: 256
    [ 0.004978] Initializing cgroup subsys cpuacct
    [ 0.004980] Initializing cgroup subsys memory
    [ 0.004985] Initializing cgroup subsys devices
    [ 0.004986] Initializing cgroup subsys freezer
    [ 0.004987] Initializing cgroup subsys net_cls
    [ 0.004988] Initializing cgroup subsys blkio
    [ 0.005004] CPU: Physical Processor ID: 0
    [ 0.005005] CPU: Processor Core ID: 0
    [ 0.005009] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005270] mce: CPU supports 9 MCE banks
    [ 0.005280] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005287] process: using mwait in idle threads
    [ 0.005289] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.005412] Freeing SMP alternatives: 20k freed
    [ 0.006082] ACPI: Core revision 20121018
    [ 0.007828] ftrace: allocating 19310 entries in 76 pages
    [ 0.014664] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.047574] smpboot: CPU0: Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.047580] TSC deadline timer enabled
    [ 0.047582] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
    [ 0.047586] ... version: 3
    [ 0.047586] ... bit width: 48
    [ 0.047587] ... generic registers: 8
    [ 0.047588] ... value mask: 0000ffffffffffff
    [ 0.047588] ... max period: 000000007fffffff
    [ 0.047589] ... fixed-purpose events: 3
    [ 0.047590] ... event mask: 00000007000000ff
    [ 0.087678] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.074249] smpboot: Booting Node 0, Processors #1 #2 #3 OK
    [ 0.128013] Brought up 4 CPUs
    [ 0.128016] smpboot: Total of 4 processors activated (27149.66 BogoMIPS)
    [ 0.130345] devtmpfs: initialized
    [ 0.131553] PM: Registering ACPI NVS region [mem 0xbad8c000-0xbadd5fff] (303104 bytes)
    [ 0.131558] PM: Registering ACPI NVS region [mem 0xbadde000-0xbaddefff] (4096 bytes)
    [ 0.131559] PM: Registering ACPI NVS region [mem 0xbae12000-0xbae1ffff] (57344 bytes)
    [ 0.131560] PM: Registering ACPI NVS region [mem 0xbae45000-0xbae87fff] (274432 bytes)
    [ 0.132024] RTC time: 13:15:37, date: 04/21/13
    [ 0.132050] NET: Registered protocol family 16
    [ 0.132136] ACPI: bus type pci registered
    [ 0.132173] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.132175] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.137361] PCI: Using configuration type 1 for base access
    [ 0.137775] bio: create slab <bio-0> at 0
    [ 0.137809] ACPI: Added _OSI(Module Device)
    [ 0.137810] ACPI: Added _OSI(Processor Device)
    [ 0.137811] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.137811] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.138385] ACPI: EC: Look up EC in DSDT
    [ 0.139103] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.140495] ACPI: SSDT 00000000bae16c18 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.140660] ACPI: Dynamic OEM Table Load:
    [ 0.140662]

    Meanwhile, I encountered it seems to be a problem of the gdm in conjunction with the gpu and the intel driver - once again :-(
    Look at this thread: https://bbs.archlinux.org/viewtopic.php?id=161964
    Actually, I can start my DE (Gnome 3.8) manually with the following workaround:
    First, I disable gdm on my machine
    # systemctl disable gdm
    After bootin the machine, I'm logging in into the console
    $ startx
    stopping the X system again
    $ sudo systemctl start gdm
    logging in into the Gnome Shell.
    I need to start the X server first manually. Otherwise the gdm will hang again.
    Last edited by thesofty (2013-04-24 21:12:10)

  • [Solved] Issue setting HDMI audio to default

    Hoping I'm not overlooking something very simple here.
    I have a Radeon HD4650 in my HTPC which I'm trying to run the audio through the HDMI output. I've set the kernel parameter "radeon.audio=1" and am able to hear sound through HDMI when I specify it manually within each application (for example XBMC or VLC going to Audio->Audio Device->HD-Audio Generic, HDMI 0 HDMI Audio Output).
    From there I tried to set the HDMI audio as default by following the wiki here:
    https://wiki.archlinux.org/index.php/Al … sound_card
    And here:
    https://wiki.archlinux.org/index.php/Al … s_not_work
    I've tried several combinations within my .asoundrc and asound.conf including:
    pcm.!default {
    type plug
    slave.pcm {
    @func getenv
    vars [ ALSAPCM ]
    default "hw:0,3"
    defaults.pcm.card 0
    defaults.pcm.device 3
    defaults.ctl.card 0
    pcm.!default "plughw:0,3"
    ctl.!default "plughw:0,3"
    pcm.dmixer {
    type dmix
    ipc_key 2048
    slave {
    pcm "hw:0,3"
    period_size 512
    buffer_size 4096
    rate 48000
    format S16_LE
    bindings {
    0 0
    1 1
    pcm.!default {
    type plug
    slave.pcm dmixer
    pcm:iec958 {
    type plug
    slave.pcm dmixer
    pcm.!default {
    type plug
    slave {
    pcm "hw:0,3"
    ctl.!default {
    type hw
    card 0
    Most of these I just copied from the wiki or various forum posts I found and edited the proper device in. These appear to work, as the HDMI card shows up as default in alsamixer (I've made sure everything is unmuted here), but selecting the default channel in VLC still results in no sound, not even from the built in audio (I can change the output to the HDMI option and it works fine).
    I've also tried this which results in no sound:
    aplay -D plughw:0,3 /usr/share/sounds/alsa/Front_Center.wav
    Is there something I'm missing here?
    Here's my aplay -l:
    **** List of PLAYBACK Hardware Devices ****
    card 0: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: Intel [HDA Intel], device 0: ALC1200 Analog [ALC1200 Analog]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: Intel [HDA Intel], device 1: ALC1200 Digital [ALC1200 Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    A quick note here: I set this option in /etc/modprobe.d/:
    options snd_hda_intel index=-2
    This moved the HDMI card up to device 0 instead of 1. I've tried everything above as well with plughw:1,3 when that was the HDMI device.
    aplay -L:
    null
    Discard all samples (playback) or generate zero samples (capture)
    hdmi:CARD=Generic,DEV=0
    HD-Audio Generic, HDMI 0
    HDMI Audio Output
    sysdefault:CARD=Intel
    HDA Intel, ALC1200 Analog
    Default Audio Device
    front:CARD=Intel,DEV=0
    HDA Intel, ALC1200 Analog
    Front speakers
    surround40:CARD=Intel,DEV=0
    HDA Intel, ALC1200 Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=Intel,DEV=0
    HDA Intel, ALC1200 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=Intel,DEV=0
    HDA Intel, ALC1200 Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=Intel,DEV=0
    HDA Intel, ALC1200 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=Intel,DEV=0
    HDA Intel, ALC1200 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    iec958:CARD=Intel,DEV=0
    HDA Intel, ALC1200 Digital
    IEC958 (S/PDIF) Digital Audio Output
    lsmod | grep snd:
    snd_hda_codec_hdmi 29701 1
    snd_hda_codec_realtek 35517 1
    snd_hda_intel 35309 0
    snd_hda_codec 147474 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    snd_hwdep 6332 1 snd_hda_codec
    snd_pcm 77765 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 7234 2 snd_pcm,snd_hda_intel
    snd_timer 18718 1 snd_pcm
    snd 58950 7 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 5418 1 snd
    amixer -c 0:
    Simple mixer control 'PCM',0
    Capabilities: pvolume
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'IEC958',0
    Capabilities: pswitch pswitch-joined
    Playback channels: Mono
    Mono: Playback [on]
    dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.10.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 (GCC) ) #1 SMP PREEMPT Mon Jul 22 08:47:24 CEST 2013
    [ 0.000000] Command line: root=/dev/system/root cryptdevice=/dev/sda2:system resume=/dev/system/swap ro radeon.audio=1 initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ee6ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007ee70000-0x000000007eecbfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007eecc000-0x000000007fdf4fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007fdf5000-0x000000007fe00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000007fe01000-0x000000007fe97fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007fe98000-0x000000007fee7fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000007fee8000-0x000000007feebfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007feec000-0x000000007fef0fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000007fef1000-0x000000007fef1fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007fef2000-0x000000007fefefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000007feff000-0x000000007fefffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000007ff00000-0x000000007fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: /DG35EC, BIOS ECG3510M.86A.0118.2010.0113.1426 01/13/2010
    [ 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 = 0x7ff00 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-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 07FF00000 mask FFFF00000 uncachable
    [ 0.000000] 2 disabled
    [ 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] found SMP MP-table at [mem 0x000fe200-0x000fe20f] mapped at [ffff8800000fe200]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000089000] 89000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b22000, 0x01b22fff] PGTABLE
    [ 0.000000] BRK [0x01b23000, 0x01b23fff] PGTABLE
    [ 0.000000] BRK [0x01b24000, 0x01b24fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x7fa00000-0x7fbfffff]
    [ 0.000000] [mem 0x7fa00000-0x7fbfffff] page 2M
    [ 0.000000] BRK [0x01b25000, 0x01b25fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x7c000000-0x7ee6ffff]
    [ 0.000000] [mem 0x7c000000-0x7edfffff] page 2M
    [ 0.000000] [mem 0x7ee00000-0x7ee6ffff] page 4k
    [ 0.000000] BRK [0x01b26000, 0x01b26fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x7eecc000-0x7f9fffff]
    [ 0.000000] [mem 0x7eecc000-0x7effffff] page 4k
    [ 0.000000] [mem 0x7f000000-0x7f9fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x7bffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x7bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x7fc00000-0x7fdf4fff]
    [ 0.000000] [mem 0x7fc00000-0x7fdf4fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x7fe01000-0x7fe97fff]
    [ 0.000000] [mem 0x7fe01000-0x7fe97fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x7fee8000-0x7feebfff]
    [ 0.000000] [mem 0x7fee8000-0x7feebfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x7fef1000-0x7fef1fff]
    [ 0.000000] [mem 0x7fef1000-0x7fef1fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x7feff000-0x7fefffff]
    [ 0.000000] [mem 0x7feff000-0x7fefffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x7e79a000-0x7ee6efff]
    [ 0.000000] ACPI: RSDP 00000000000fe020 00014 (v00 INTEL )
    [ 0.000000] ACPI: RSDT 000000007fefd038 0004C (v01 INTEL ECG3510M 00000076 01000013)
    [ 0.000000] ACPI: FACP 000000007fefc000 00074 (v01 INTEL ECG3510M 00000076 MSFT 01000013)
    [ 0.000000] ACPI: DSDT 000000007fef6000 05BEB (v01 INTEL ECG3510M 00000076 MSFT 01000013)
    [ 0.000000] ACPI: FACS 000000007fe98000 00040
    [ 0.000000] ACPI: APIC 000000007fef5000 00078 (v01 INTEL ECG3510M 00000076 MSFT 01000013)
    [ 0.000000] ACPI: WDDT 000000007fef4000 00040 (v01 INTEL ECG3510M 00000076 MSFT 01000013)
    [ 0.000000] ACPI: MCFG 000000007fef3000 0003C (v01 INTEL ECG3510M 00000076 MSFT 01000013)
    [ 0.000000] ACPI: ASF! 000000007fef2000 000A6 (v32 INTEL ECG3510M 00000076 MSFT 01000013)
    [ 0.000000] ACPI: SSDT 000000007fef0000 0020C (v01 INTEL CpuPm 00000076 MSFT 01000013)
    [ 0.000000] ACPI: SSDT 000000007feef000 001B7 (v01 INTEL Cpu0Ist 00000076 MSFT 01000013)
    [ 0.000000] ACPI: SSDT 000000007feee000 001B7 (v01 INTEL Cpu1Ist 00000076 MSFT 01000013)
    [ 0.000000] ACPI: SSDT 000000007feed000 001B7 (v01 INTEL Cpu2Ist 00000076 MSFT 01000013)
    [ 0.000000] ACPI: SSDT 000000007feec000 001B7 (v01 INTEL Cpu3Ist 00000076 MSFT 01000013)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000007fefffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x7fefffff]
    [ 0.000000] NODE_DATA [mem 0x7fe93000-0x7fe97fff]
    [ 0.000000] [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007c600000-ffff88007e5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 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 0x00100000-0x7ee6ffff]
    [ 0.000000] node 0: [mem 0x7eecc000-0x7fdf4fff]
    [ 0.000000] node 0: [mem 0x7fe01000-0x7fe97fff]
    [ 0.000000] node 0: [mem 0x7fee8000-0x7feebfff]
    [ 0.000000] node 0: [mem 0x7fef1000-0x7fef1fff]
    [ 0.000000] node 0: [mem 0x7feff000-0x7fefffff]
    [ 0.000000] On node 0 totalpages: 523716
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3982 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 8124 pages used for memmap
    [ 0.000000] DMA32 zone: 519734 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[0x82] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl 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] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000008f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 000000007ee70000 - 000000007eecc000
    [ 0.000000] PM: Registered nosave memory: 000000007fdf5000 - 000000007fe01000
    [ 0.000000] PM: Registered nosave memory: 000000007fe98000 - 000000007fee8000
    [ 0.000000] PM: Registered nosave memory: 000000007feec000 - 000000007fef1000
    [ 0.000000] PM: Registered nosave memory: 000000007fef2000 - 000000007feff000
    [ 0.000000] e820: [mem 0x80000000-0xffefffff] 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:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88007f800000 s86144 r8192 d24448 u524288
    [ 0.000000] pcpu-alloc: s86144 r8192 d24448 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 515507
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: root=/dev/system/root cryptdevice=/dev/sda2:system resume=/dev/system/swap ro radeon.audio=1 initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 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: 2042856k/2096128k available (4920k kernel code, 1264k absent, 52008k reserved, 4046k data, 1124k init)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 8388608 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2188.974 MHz processor
    [ 0.006671] Calibrating delay loop (skipped), value calculated using timer frequency.. 4379.36 BogoMIPS (lpj=7296580)
    [ 0.006675] pid_max: default: 32768 minimum: 301
    [ 0.006714] Security Framework initialized
    [ 0.006729] AppArmor: AppArmor disabled by boot time parameter
    [ 0.006937] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008033] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.008556] Mount-cache hash table entries: 256
    [ 0.008842] Initializing cgroup subsys memory
    [ 0.008862] Initializing cgroup subsys devices
    [ 0.008864] Initializing cgroup subsys freezer
    [ 0.008866] Initializing cgroup subsys net_cls
    [ 0.008868] Initializing cgroup subsys blkio
    [ 0.008905] CPU: Physical Processor ID: 0
    [ 0.008907] CPU: Processor Core ID: 0
    [ 0.008910] mce: CPU supports 6 MCE banks
    [ 0.008918] CPU0: Thermal monitoring enabled (TM2)
    [ 0.008926] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    [ 0.009009] Freeing SMP alternatives: 20k freed
    [ 0.010372] ACPI: Core revision 20130328
    [ 0.013611] ACPI: All ACPI Tables successfully acquired
    [ 0.014894] ftrace: allocating 19564 entries in 77 pages
    [ 0.020479] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.055426] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU E4500 @ 2.20GHz (fam: 06, model: 0f, stepping: 0d)
    [ 0.056666] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.056666] perf_event_intel: PEBS disabled due to CPU errata
    [ 0.056666] ... version: 2
    [ 0.056666] ... bit width: 40
    [ 0.056666] ... generic registers: 2
    [ 0.056666] ... value mask: 000000ffffffffff
    [ 0.056666] ... max period: 000000007fffffff
    [ 0.056666] ... fixed-purpose events: 3
    [ 0.056666] ... event mask: 0000000700000003
    [ 0.090007] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.076769] smpboot: Booting Node 0, Processors #1
    [ 0.090021] Brought up 2 CPUs
    [ 0.090024] smpboot: Total of 2 processors activated (8759.72 BogoMIPS)
    [ 0.091305] devtmpfs: initialized
    [ 0.091305] PM: Registering ACPI NVS region [mem 0x7ee70000-0x7eecbfff] (376832 bytes)
    [ 0.091305] PM: Registering ACPI NVS region [mem 0x7fe98000-0x7fee7fff] (327680 bytes)
    [ 0.091305] RTC time: 21:34:09, date: 08/06/13
    [ 0.091305] NET: Registered protocol family 16
    [ 0.091305] ACPI: bus type PCI registered
    [ 0.091305] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
    [ 0.091305] PCI: not using MMCONFIG
    [ 0.091305] PCI: Using configuration type 1 for base access
    [ 0.093396] bio: create slab <bio-0> at 0
    [ 0.093411] ACPI: Added _OSI(Module Device)
    [ 0.093411] ACPI: Added _OSI(Processor Device)
    [ 0.093411] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.093411] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.094284] ACPI: EC: Look up EC in DSDT
    [ 0.097855] ACPI: Interpreter enabled
    [ 0.097864] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568)
    [ 0.097879] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.097881] ACPI: Using IOAPIC for interrupt routing
    [ 0.097896] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
    [ 0.098027] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in ACPI motherboard resources
    [ 0.115962] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.116042] ACPI: No dock devices found.
    [ 0.121485] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.122691] acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
    [ 0.122777] PCI host bridge to bus 0000:00
    [ 0.122781] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.122783] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.122786] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.122788] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.122791] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff]
    [ 0.122793] pci_bus 0000:00: root bus resource [mem 0xf8000000-0xfeafffff]
    [ 0.122795] pci_bus 0000:00: root bus resource [mem 0x80000000-0xefffffff]
    [ 0.122806] pci 0000:00:00.0: [8086:2980] type 00 class 0x060000
    [ 0.122920] pci 0000:00:01.0: [8086:2981] type 01 class 0x060400
    [ 0.122965] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.122994] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.123063] pci 0000:00:19.0: [8086:104b] type 00 class 0x020000
    [ 0.123081] pci 0000:00:19.0: reg 10: [mem 0x90b00000-0x90b1ffff]
    [ 0.123089] pci 0000:00:19.0: reg 14: [mem 0x90b24000-0x90b24fff]
    [ 0.123098] pci 0000:00:19.0: reg 18: [io 0x30c0-0x30df]
    [ 0.123156] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.123180] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.123224] pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
    [ 0.123264] pci 0000:00:1a.0: reg 20: [io 0x30a0-0x30bf]
    [ 0.123345] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.123387] pci 0000:00:1a.1: [8086:2835] type 00 class 0x0c0300
    [ 0.123427] pci 0000:00:1a.1: reg 20: [io 0x3080-0x309f]
    [ 0.123507] pci 0000:00:1a.1: System wakeup disabled by ACPI
    [ 0.123560] pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
    [ 0.123579] pci 0000:00:1a.7: reg 10: [mem 0x90b25400-0x90b257ff]
    [ 0.123661] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.123725] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.123775] pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
    [ 0.123790] pci 0000:00:1b.0: reg 10: [mem 0x90b20000-0x90b23fff 64bit]
    [ 0.123859] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.123926] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.123974] pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
    [ 0.124043] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.124074] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.124118] pci 0000:00:1c.1: [8086:2841] type 01 class 0x060400
    [ 0.124188] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.124220] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.124264] pci 0000:00:1c.2: [8086:2843] type 01 class 0x060400
    [ 0.124333] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.124366] pci 0000:00:1c.2: System wakeup disabled by ACPI
    [ 0.124414] pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
    [ 0.124454] pci 0000:00:1d.0: reg 20: [io 0x3060-0x307f]
    [ 0.124522] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.124567] pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
    [ 0.124607] pci 0000:00:1d.1: reg 20: [io 0x3040-0x305f]
    [ 0.124675] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.124717] pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
    [ 0.124757] pci 0000:00:1d.2: reg 20: [io 0x3020-0x303f]
    [ 0.124827] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.124880] pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
    [ 0.124899] pci 0000:00:1d.7: reg 10: [mem 0x90b25000-0x90b253ff]
    [ 0.124981] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.125043] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.125088] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    [ 0.125156] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.125205] pci 0000:00:1f.0: [8086:2810] type 00 class 0x060100
    [ 0.125284] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO
    [ 0.125289] pci 0000:00:1f.0: quirk: [io 0x0500-0x053f] claimed by ICH6 GPIO
    [ 0.125293] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f)
    [ 0.125376] pci 0000:00:1f.2: [8086:2820] type 00 class 0x01018f
    [ 0.125390] pci 0000:00:1f.2: reg 10: [io 0x3438-0x343f]
    [ 0.125399] pci 0000:00:1f.2: reg 14: [io 0x344c-0x344f]
    [ 0.125407] pci 0000:00:1f.2: reg 18: [io 0x3430-0x3437]
    [ 0.125415] pci 0000:00:1f.2: reg 1c: [io 0x3448-0x344b]
    [ 0.125423] pci 0000:00:1f.2: reg 20: [io 0x3410-0x341f]
    [ 0.125432] pci 0000:00:1f.2: reg 24: [io 0x3400-0x340f]
    [ 0.125461] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.125543] pci 0000:00:1f.3: [8086:283e] type 00 class 0x0c0500
    [ 0.125555] pci 0000:00:1f.3: reg 10: [mem 0x90b25800-0x90b258ff]
    [ 0.125582] pci 0000:00:1f.3: reg 20: [io 0x3000-0x301f]
    [ 0.125683] pci 0000:00:1f.5: [8086:2825] type 00 class 0x010185
    [ 0.125697] pci 0000:00:1f.5: reg 10: [io 0x3428-0x342f]
    [ 0.125706] pci 0000:00:1f.5: reg 14: [io 0x3444-0x3447]
    [ 0.125714] pci 0000:00:1f.5: reg 18: [io 0x3420-0x3427]
    [ 0.125722] pci 0000:00:1f.5: reg 1c: [io 0x3440-0x3443]
    [ 0.125730] pci 0000:00:1f.5: reg 20: [io 0x30f0-0x30ff]
    [ 0.125739] pci 0000:00:1f.5: reg 24: [io 0x30e0-0x30ef]
    [ 0.125768] pci 0000:00:1f.5: PME# supported from D3hot
    [ 0.125901] pci 0000:01:00.0: [1002:6779] type 00 class 0x030000
    [ 0.125917] pci 0000:01:00.0: reg 10: [mem 0x80000000-0x8fffffff 64bit pref]
    [ 0.125930] pci 0000:01:00.0: reg 18: [mem 0x90a00000-0x90a1ffff 64bit]
    [ 0.125939] pci 0000:01:00.0: reg 20: [io 0x2000-0x20ff]
    [ 0.125954] pci 0000:01:00.0: reg 30: [mem 0xfffe0000-0xffffffff pref]
    [ 0.125992] pci 0000:01:00.0: supports D1 D2
    [ 0.126044] pci 0000:01:00.1: [1002:aa98] type 00 class 0x040300
    [ 0.126060] pci 0000:01:00.1: reg 10: [mem 0x90a20000-0x90a23fff 64bit]
    [ 0.126130] pci 0000:01:00.1: supports D1 D2
    [ 0.126194] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.126198] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    [ 0.126201] pci 0000:00:01.0: bridge window [mem 0x90a00000-0x90afffff]
    [ 0.126206] pci 0000:00:01.0: bridge window [mem 0x80000000-0x8fffffff 64bit pref]
    [ 0.126282] pci 0000:02:00.0: [1106:3432] type 00 class 0x0c0330
    [ 0.126300] pci 0000:02:00.0: reg 10: [mem 0x90900000-0x90900fff]
    [ 0.126416] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.130024] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.130034] pci 0000:00:1c.0: bridge window [mem 0x90900000-0x909fffff]
    [ 0.130126] pci 0000:03:00.0: [1131:7164] type 00 class 0x048000
    [ 0.130153] pci 0000:03:00.0: reg 10: [mem 0x90000000-0x903fffff 64bit]
    [ 0.130174] pci 0000:03:00.0: reg 18: [mem 0x90400000-0x907fffff 64bit]
    [ 0.130281] pci 0000:03:00.0: supports D1 D2
    [ 0.130283] pci 0000:03:00.0: PME# supported from D0 D1 D2
    [ 0.136688] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.136698] pci 0000:00:1c.1: bridge window [mem 0x90000000-0x907fffff]
    [ 0.136792] pci 0000:04:00.0: [197b:2368] type 00 class 0x010185
    [ 0.136823] pci 0000:04:00.0: reg 10: [io 0x1018-0x101f]
    [ 0.136837] pci 0000:04:00.0: reg 14: [io 0x1024-0x1027]
    [ 0.136851] pci 0000:04:00.0: reg 18: [io 0x1010-0x1017]
    [ 0.136866] pci 0000:04:00.0: reg 1c: [io 0x1020-0x1023]
    [ 0.136880] pci 0000:04:00.0: reg 20: [io 0x1000-0x100f]
    [ 0.136906] pci 0000:04:00.0: reg 30: [mem 0xffff0000-0xffffffff pref]
    [ 0.137025] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.137035] pci 0000:00:1c.2: PCI bridge to [bus 04]
    [ 0.137039] pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    [ 0.137098] pci 0000:05:03.0: [1814:0301] type 00 class 0x028000
    [ 0.137116] pci 0000:05:03.0: reg 10: [mem 0x90800000-0x90807fff]
    [ 0.137237] pci 0000:05:05.0: [11c1:5811] type 00 class 0x0c0010
    [ 0.137254] pci 0000:05:05.0: reg 10: [mem 0x90808000-0x90808fff]
    [ 0.137329] pci 0000:05:05.0: supports D1 D2
    [ 0.137331] pci 0000:05:05.0: PME# supported from D0 D1 D2 D3hot
    [ 0.137409] pci 0000:00:1e.0: PCI bridge to [bus 05] (subtractive decode)
    [ 0.137415] pci 0000:00:1e.0: bridge window [mem 0x90800000-0x908fffff]
    [ 0.137421] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.137423] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.137426] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.137428] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000effff] (subtractive decode)
    [ 0.137431] pci 0000:00:1e.0: bridge window [mem 0xf8000000-0xfeafffff] (subtractive decode)
    [ 0.137433] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xefffffff] (subtractive decode)
    [ 0.137455] acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.137457] acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.137544] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
    [ 0.137616] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 *9 10 11 12)
    [ 0.137685] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 *9 10 11 12)
    [ 0.137753] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
    [ 0.137820] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 *10 11 12)
    [ 0.137887] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 *11 12)
    [ 0.137954] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 *10 11 12)
    [ 0.138021] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 *11 12)
    [ 0.138507] ACPI: Enabled 4 GPEs in block 00 to 1F
    [ 0.138515] acpi root: \_SB_.PCI0 notify handler is installed
    [ 0.138552] Found 1 acpi root devices
    [ 0.138645] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.138645] vgaarb: loaded
    [ 0.138645] vgaarb: bridge control possible 0000:01:00.0
    [ 0.138645] PCI: Using ACPI for IRQ routing
    [ 0.141702] PCI: pci_cache_line_size set to 64 bytes
    [ 0.141771] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
    [ 0.141774] e820: reserve RAM buffer [mem 0x7ee70000-0x7fffffff]
    [ 0.141776] e820: reserve RAM buffer [mem 0x7fdf5000-0x7fffffff]
    [ 0.141778] e820: reserve RAM buffer [mem 0x7fe98000-0x7fffffff]
    [ 0.141780] e820: reserve RAM buffer [mem 0x7feec000-0x7fffffff]
    [ 0.141782] e820: reserve RAM buffer [mem 0x7fef2000-0x7fffffff]
    [ 0.141784] e820: reserve RAM buffer [mem 0x7ff00000-0x7fffffff]
    [ 0.141898] NetLabel: Initializing
    [ 0.141900] NetLabel: domain hash size = 128
    [ 0.141901] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.141917] NetLabel: unlabeled traffic allowed by default
    [ 0.141945] Switching to clocksource refined-jiffies
    [ 0.148603] pnp: PnP ACPI init
    [ 0.148630] ACPI: bus type PNP registered
    [ 0.148744] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
    [ 0.148747] system 00:00: [mem 0xfed13000-0xfed13fff] has been reserved
    [ 0.148750] system 00:00: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.148753] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.148756] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.148758] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.148761] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.148764] system 00:00: [mem 0xfed45000-0xfed99fff] has been reserved
    [ 0.148767] system 00:00: [mem 0x000c0000-0x000dffff] could not be reserved
    [ 0.148769] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.148774] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.148919] pnp 00:01: [dma 4]
    [ 0.148948] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.148992] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.149031] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.149063] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.149126] system 00:05: [io 0x0500-0x053f] has been reserved
    [ 0.149129] system 00:05: [io 0x0400-0x047f] has been reserved
    [ 0.149132] system 00:05: [io 0x0360-0x0361] has been reserved
    [ 0.149135] system 00:05: [io 0x0680-0x06ff] has been reserved
    [ 0.149139] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.149220] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.149501] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.149573] pnp 00:08: Plug and Play ACPI device, IDs PNP0003 (active)
    [ 0.149624] pnp: PnP ACPI: found 9 devices
    [ 0.149626] ACPI: bus type PNP unregistered
    [ 0.156213] Switching to clocksource acpi_pm
    [ 0.156232] pci 0000:01:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 0.156236] pci 0000:04:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 0.156264] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.156267] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.156276] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 0.156279] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 0.156288] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x001fffff pref] to [bus 04] add_size 200000
    [ 0.156291] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
    [ 0.156304] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.156307] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.156310] pci 0000:00:1c.2: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.156313] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x001fffff pref] get_res_add_size add_size 200000
    [ 0.156315] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.156318] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.156324] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf8000000-0xf81fffff 64bit pref]
    [ 0.156327] pci 0000:00:1c.1: BAR 15: assigned [mem 0xf8200000-0xf83fffff 64bit pref]
    [ 0.156330] pci 0000:00:1c.2: BAR 14: assigned [mem 0xf8400000-0xf85fffff]
    [ 0.156334] pci 0000:00:1c.2: BAR 15: assigned [mem 0xf8600000-0xf88fffff pref]
    [ 0.156337] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.156340] pci 0000:00:1c.1: BAR 13: assigned [io 0x5000-0x5fff]
    [ 0.156344] pci 0000:01:00.0: BAR 6: assigned [mem 0x90a40000-0x90a5ffff pref]
    [ 0.156348] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.156351] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    [ 0.156355] pci 0000:00:01.0: bridge window [mem 0x90a00000-0x90afffff]
    [ 0.156358] pci 0000:00:01.0: bridge window [mem 0x80000000-0x8fffffff 64bit pref]
    [ 0.156363] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.156366] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.156371] pci 0000:00:1c.0: bridge window [mem 0x90900000-0x909fffff]
    [ 0.156375] pci 0000:00:1c.0: bridge window [mem 0xf8000000-0xf81fffff 64bit pref]
    [ 0.156381] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.156384] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
    [ 0.156389] pci 0000:00:1c.1: bridge window [mem 0x90000000-0x907fffff]
    [ 0.156393] pci 0000:00:1c.1: bridge window [mem 0xf8200000-0xf83fffff 64bit pref]
    [ 0.156400] pci 0000:04:00.0: BAR 6: assigned [mem 0xf8600000-0xf860ffff pref]
    [ 0.156402] pci 0000:00:1c.2: PCI bridge to [bus 04]
    [ 0.156405] pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    [ 0.156410] pci 0000:00:1c.2: bridge window [mem 0xf8400000-0xf85fffff]
    [ 0.156414] pci 0000:00:1c.2: bridge window [mem 0xf8600000-0xf88fffff pref]
    [ 0.156421] pci 0000:00:1e.0: PCI bridge to [bus 05]
    [ 0.156425] pci 0000:00:1e.0: bridge window [mem 0x90800000-0x908fffff]
    [ 0.156425] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.156425] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.156425] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.156425] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.156425] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff]
    [ 0.156425] pci_bus 0000:00: resource 8 [mem 0xf8000000-0xfeafffff]
    [ 0.156425] pci_bus 0000:00: resource 9 [mem 0x80000000-0xefffffff]
    [ 0.156425] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    [ 0.156425] pci_bus 0000:01: resource 1 [mem 0x90a00000-0x90afffff]
    [ 0.156425] pci_bus 0000:01: resource 2 [mem 0x80000000-0x8fffffff 64bit pref]
    [ 0.156425] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
    [ 0.156425] pci_bus 0000:02: resource 1 [mem 0x90900000-0x909fffff]
    [ 0.156425] pci_bus 0000:02: resource 2 [mem 0xf8000000-0xf81fffff 64bit pref]
    [ 0.156425] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
    [ 0.156425] pci_bus 0000:03: resource 1 [mem 0x90000000-0x907fffff]
    [ 0.156425] pci_bus 0000:03: resource 2 [mem 0xf8200000-0xf83fffff 64bit pref]
    [ 0.156425] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
    [ 0.156425] pci_bus 0000:04: resource 1 [mem 0xf8400000-0xf85fffff]
    [ 0.156425] pci_bus 0000:04: resource 2 [mem 0xf8600000-0xf88fffff pref]
    [ 0.156425] pci_bus 0000:05: resource 1 [mem 0x90800000-0x908fffff]
    [ 0.156425] pci_bus 0000:05: resource 4 [io 0x0000-0x0cf7]
    [ 0.156425] pci_bus 0000:05: resource 5 [io 0x0d00-0xffff]
    [ 0.156425] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.156425] pci_bus 0000:05: resource 7 [mem 0x000e0000-0x000effff]
    [ 0.156425] pci_bus 0000:05: resource 8 [mem 0xf8000000-0xfeafffff]
    [ 0.156425] pci_bus 0000:05: resource 9 [mem 0x80000000-0xefffffff]
    [ 0.156425] NET: Registered protocol family 2
    [ 0.156425] TCP established hash table entries: 16384 (order: 6, 262144 bytes)
    [ 0.156425] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
    [ 0.156425] TCP: Hash tables configured (established 16384 bind 16384)
    [ 0.156425] TCP: reno registered
    [ 0.156425] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.156425] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.156425] NET: Registered protocol family 1
    [ 0.156791] pci 0000:01:00.0: Boot video device
    [ 0.156891] PCI: CLS 64 bytes, default 64
    [ 0.156941] Unpacking initramfs...
    [ 0.310182] Freeing initrd memory: 6996k freed
    [ 0.313496] Scanning for low memory corruption every 60 seconds
    [ 0.313787] audit: initializing netlink socket (disabled)
    [ 0.313804] type=2000 audit(1375824849.313:1): initialized
    [ 0.326819] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.328674] VFS: Disk quotas dquot_6.5.2
    [ 0.328731] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.328948] msgmni has been set to 4003
    [ 0.329231] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.329273] io scheduler noop registered
    [ 0.329276] io scheduler deadline registered
    [ 0.329310] io scheduler cfq registered (default)
    [ 0.329439] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.329503] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.329571] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
    [ 0.329644] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
    [ 0.329814] intel_idle: does not run on family 6 model 15
    [ 0.329849] GHES: HEST is not enabled!
    [ 0.329917] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.350447] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 0.350819] Linux agpgart interface v0.103
    [ 0.350895] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.353919] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.353952] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.354077] mousedev: PS/2 mouse device common for all mice
    [ 0.354143] rtc_cmos 00:02: RTC can wake from S4
    [ 0.354275] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 0.354297] rtc_cmos 00:02: alarms up to one month, 114 bytes nvram
    [ 0.354307] cpuidle: using governor ladder
    [ 0.354309] cpuidle: using governor menu
    [ 0.354362] drop_monitor: Initializing network drop monitor service
    [ 0.354438] TCP: cubic registered
    [ 0.354554] NET: Registered protocol family 10
    [ 0.354764] NET: Registered protocol family 17
    [ 0.354780] Key type dns_resolver registered
    [ 0.355037] PM: Checking hibernation image partition /dev/system/swap
    [ 0.397240] PM: Hibernation image not present or could not be loaded.
    [ 0.397253] registered taskstats version 1
    [ 0.397804] Magic number: 9:719:600
    [ 0.397885] rtc_cmos 00:02: setting system clock to 2013-08-06 21:34:10 UTC (1375824850)
    [ 0.398920] Freeing unused kernel memory: 1124k freed
    [ 0.399295] Write protecting the kernel read-only data: 8192k
    [ 0.402578] Freeing unused kernel memory: 1212k freed
    [ 0.404163] Freeing unused kernel memory: 408k freed
    [ 0.412320] systemd-udevd[45]: starting version 204
    [ 0.417813] [drm] Initialized drm 1.1.0 20060810
    [ 0.423117] [drm] radeon kernel modesetting enabled.
    [ 0.423539] [drm] initializing kernel modesetting (CAICOS 0x1002:0x6779 0x174B:0xE180).
    [ 0.423580] [drm] register mmio base: 0x90A00000
    [ 0.423582] [drm] register mmio size: 131072
    [ 0.424493] ATOM BIOS: CAICOS
    [ 0.424939] radeon 0000:01:00.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
    [ 0.424942] radeon 0000:01:00.0: GTT: 512M 0x0000000020000000 - 0x000000003FFFFFFF
    [ 0.425844] [drm] Detected VRAM RAM=512M, BAR=256M
    [ 0.425848] [drm] RAM width 64bits DDR
    [ 0.425929] [TTM] Zone kernel: Available graphics memory: 1026308 kiB
    [ 0.425931] [TTM] Initializing pool allocator
    [ 0.425937] [TTM] Initializing DMA pool allocator
    [ 0.425964] [drm] radeon: 512M of VRAM memory ready
    [ 0.425966] [drm] radeon: 512M of GTT memory ready.
    [ 0.426256] radeon 0000:01:00.0: ffff88007e85a800 unpin not necessary
    [ 0.881477] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xffffc90008be6118
    [ 0.881489] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 0.882702] [drm] Loading CAICOS Microcode
    [ 0.901197] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 0.901323] radeon 0000:01:00.0: WB enabled
    [ 0.901327] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0xffff880079fd2c00
    [ 0.901330] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c and cpu addr 0xffff880079fd2c0c
    [ 0.903890] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000174118 and cpu addr 0xffffc90009432118
    [ 0.903895] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 0.903897] [drm] Driver supports precise vblank timestamp query.
    [ 0.903924] radeon 0000:01:00.0: irq 44 for MSI/MSI-X
    [ 0.903940] radeon 0000:01:00.0: radeon: using MSI.
    [ 0.903977] [drm] radeon: irq initialized.
    [ 0.920415] [drm] ring test on 0 succeeded in 2 usecs
    [ 0.920480] [drm] ring test on 3 succeeded in 1 usecs
    [ 1.106683] [drm] ring test on 5 succeeded in 2 usecs
    [ 1.106688] [drm] UVD initialized successfully.
    [ 1.106780] [drm] Enabling audio support
    [ 1.106827] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 1.106873] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 1.259354] [drm] ib test on ring 5 succeeded
    [ 1.259721] [drm] Radeon Display Connectors
    [ 1.259723] [drm] Connector 0:
    [ 1.259725] [drm] HDMI-A-1
    [ 1.259726] [drm] HPD2
    [ 1.259729] [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
    [ 1.259730] [drm] Encoders:
    [ 1.259732] [drm] DFP1: INTERNAL_UNIPHY1
    [ 1.259733] [drm] Connector 1:
    [ 1.259734] [drm] VGA-1
    [ 1.259736] [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
    [ 1.259738] [drm] Encoders:
    [ 1.259739] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 1.259818] [drm] Internal thermal controller with fan control
    [ 1.260722] [drm] radeon: power management initialized
    [ 1.313356] tsc: Refined TSC clocksource calibration: 2188.999 MHz
    [ 1.313363] Switching to clocksource tsc
    [ 1.331618] [drm] fb mappable at 0x80375000
    [ 1.331620] [drm] vram apper at 0x80000000
    [ 1.331622] [drm] size 8294400
    [ 1.331623] [drm] fb depth is 24
    [ 1.331625] [drm] pitch is 7680
    [ 1.331702] fbcon: radeondrmfb (fb0) is primary device
    [ 1.544648] Console: switching to colour frame buffer device 240x67
    [ 1.550480] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    [ 1.550482] radeon 0000:01:00.0: registered panic notifier
    [ 1.550488] [drm] Initialized radeon 2.33.0 20080528 for 0000:01:00.0 on minor 0
    [ 1.551576] device-mapper: uevent: version 1.0.3
    [ 1.551788] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: [email protected]
    [ 1.584940] SCSI subsystem initialized
    [ 1.587002] ACPI: bus type ATA registered
    [ 1.587124] ACPI: bus type USB registered
    [ 1.587165] usbcore: registered new interface driver usbfs
    [ 1.587199] libata version 3.00 loaded.
    [ 1.587772] ata_piix 0000:00:1f.2: version 2.13
    [ 1.587914] ata_piix 0000:00:1f.2: MAP [
    [ 1.587916] P0 P2 P1 P3 ]
    [ 1.590067] usbcore: registered new interface driver hub
    [ 1.590515] usbcore: registered new device driver usb
    [ 1.591219] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.591393] ehci-pci: EHCI PCI platform driver
    [ 1.592276] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 1.592288] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
    [ 1.592501] xhci_hcd 0000:02:00.0: irq 45 for MSI/MSI-X
    [ 1.592673] xHCI xhci_add_endpoint called for root hub
    [ 1.592675] xHCI xhci_check_bandwidth called for root hub
    [ 1.592706] hub 1-0:1.0: USB hub found
    [ 1.592713] hub 1-0:1.0: 1 port detected
    [ 1.592813] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 1.592819] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
    [ 1.592917] xHCI xhci_add_endpoint called for root hub
    [ 1.592919] xHCI xhci_check_bandwidth called for root hub
    [ 1.592948] hub 2-0:1.0: USB hub found
    [ 1.592957] hub 2-0:1.0: 4 ports detected
    [ 1.593131] scsi0 : pata_jmicron
    [ 1.593158] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.593424] scsi1 : pata_jmicron
    [ 1.593609] ata1: PATA max UDMA/100 cmd 0x1018 ctl 0x1024 bmdma 0x1000 irq 18
    [ 1.593612] ata2: PATA max UDMA/100 cmd 0x1010 ctl 0x1020 bmdma 0x1008 irq 18
    [ 1.596715] firewire_ohci 0000:05:05.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x80
    [ 1.740079] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 1.740483] scsi2 : ata_piix
    [ 1.740779] scsi3 : ata_piix
    [ 1.741044] ata3: SATA max UDMA/133 cmd 0x3438 ctl 0x344c bmdma 0x3410 irq 19
    [ 1.741049] ata4: SATA max UDMA/133 cmd 0x3430 ctl 0x3448 bmdma 0x3418 irq 19
    [ 1.741248] ata_piix 0000:00:1f.5: MAP [
    [ 1.741250] P0 -- P1 -- ]
    [ 1.741284] ata_piix 0000:00:1f.5: setting latency timer to 64
    [ 1.741526] scsi4 : ata_piix
    [ 1.741784] scsi5 : ata_piix
    [ 1.742032] ata5: SATA max UDMA/133 cmd 0x3428 ctl 0x3444 bmdma 0x30f0 irq 19
    [ 1.742036] ata6: SATA max UDMA/133 cmd 0x3420 ctl 0x3440 bmdma 0x30f8 irq 19
    [ 1.742228] ehci-pci 0000:00:1a.7: setting latency timer to 64
    [ 1.742244] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 1.742252] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 3
    [ 1.742266] ehci-pci 0000:00:1a.7: debug port 1
    [ 1.746161] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.746168] ehci-pci 0000:00:1a.7: irq 18, io mem 0x90b25400
    [ 1.753360] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.753568] hub 3-0:1.0: USB hub found
    [ 1.753573] hub 3-0:1.0: 4 ports detected
    [ 1.753841] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.753845] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.753852] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 4
    [ 1.753886] uhci_hcd 0000:00:1a.0: irq 16, io base 0x000030a0
    [ 1.754034] hub 4-0:1.0: USB hub found
    [ 1.754039] hub 4-0:1.0: 2 ports detected
    [ 1.754278] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 1.754282] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.754288] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 5
    [ 1.754321] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00003080
    [ 1.754470] hub 5-0:1.0: USB hub found
    [ 1.754475] hub 5-0:1.0: 2 ports detected
    [ 1.754707] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.754711] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.754717] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 1.754748] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00003060
    [ 1.754886] hub 6-0:1.0: USB hub found
    [ 1.754890] hub 6-0:1.0: 2 ports detected
    [ 1.755113] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.755117] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.755123] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.755146] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00003040
    [ 1.755279] hub 7-0:1.0: USB hub found
    [ 1.755284] hub 7-0:1.0: 2 ports detected
    [ 1.755501] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.755505] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.755511] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.755533] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00003020
    [ 1.755672] hub 8-0:1.0: USB hub found
    [ 1.755677] hub 8-0:1.0: 2 ports detected
    [ 1.756794] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 1.757624] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.757636] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 9
    [ 1.757651] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.761541] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.761550] ehci-pci 0000:00:1d.7: irq 23, io mem 0x90b25000
    [ 1.770027] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.770236] hub 9-0:1.0: USB hub found
    [ 1.770242] hub 9-0:1.0: 6 ports detected
    [ 1.793425] hub 6-0:1.0: USB hub found
    [ 1.793434] hub 6-0:1.0: 2 ports detected
    [ 1.816762] hub 7-0:1.0: USB hub found
    [ 1.816772] hub 7-0:1.0: 2 ports detected
    [ 1.840122] hub 8-0:1.0: USB hub found
    [ 1.840131] hub 8-0:1.0: 2 ports detected
    [ 1.896698] usb 1-1: new high-speed USB device number 2 using xhci_hcd
    [ 1.911468] hub 1-1:1.0: USB hub found
    [ 1.911627] hub 1-1:1.0: 4 ports detected
    [ 2.064043] ata6: SATA link down (SStatus 0 SControl 300)
    [ 2.074751] ata5: SATA link down (SStatus 0 SControl 300)
    [ 2.096814] firewire_core 0000:05:05.0: created device fw0: GUID 009027000228f4cc, S400
    [ 2.520099] ata4.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.520116] ata4.01: SATA link down (SStatus 4 SControl 300)
    [ 2.520129] ata4.01: link offline, clearing class 3 to NONE
    [ 2.526834] ata4.00: ATAPI: HL-DT-ST BDDVDRW UH12NS30, 1.00, max UDMA/100
    [ 2.540115] ata3.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.540132] ata3.01: SATA link down (SStatus 4 SControl 300)
    [ 2.540234] ata4.00: configured for UDMA/100
    [ 2.547003] ata3.00: ATA-8: Hitachi HTS545025B9A300, PB2OC60F, max UDMA/133
    [ 2.547008] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.560344] ata3.00: configured for UDMA/133
    [ 2.560526] scsi 2:0:0:0: Direct-Access ATA Hitachi HTS54502 PB2O PQ: 0 ANSI: 5
    [ 2.562299] scsi 3:0:0:0: CD-ROM HL-DT-ST BDDVDRW UH12NS30 1.00 PQ: 0 ANSI: 5
    [ 2.565388] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 2.565443] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.565446] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.565469] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.569249] sr0: scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.569254] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.569537] sr 3:0:0:0: Attached scsi CD-ROM sr0
    [ 2.582466] sda: sda1 sda2
    [ 2.582770] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 2.763375] usb 6-1: new full-speed USB device number 2 using uhci_hcd
    [ 3.186725] usb 7-1: new full-speed USB device number 2 using uhci_hcd
    [ 3.373997] hidraw: raw HID events driver (C) Jiri Kosina
    [ 3.384911] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.1-1/input2
    [ 3.384942] usbcore: registered new interface driver usbhid
    [ 3.384944] usbhid: USB HID core driver
    [ 3.389375] input: Logitech Unifying Device. Wireless PID:4024 as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.2/0003:046D:C52B.0003/input/input0
    [ 3.389518] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:4024] on usb-0000:00:1d.1-1:1
    [ 3.956744] usb 8-1: new low-speed USB device number 2 using uhci_hcd
    [ 4.193021] input: HID 05a4:9881 as /devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.0/input/input1
    [ 4.193111] hid-generic 0003:05A4:9881.0005: input,hidraw2: USB HID v1.10 Keyboard [HID 05a4:9881] on usb-0000:00:1d.2-1/input0
    [ 4.323187] input: HID 05a4:9881 as /devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.1/input/input2
    [ 4.323310] hid-generic 0003:05A4:9881.0006: input,hidraw3: USB HID v1.10 Mouse [HID 05a4:9881] on usb-0000:00:1d.2-1/input1
    [ 11.876733] bio: create slab <bio-1> at 1
    [ 12.881119] bio: create slab <bio-1> at 1
    [ 13.707370] PM: Starting manual resume from disk
    [ 13.707375] PM: Hibernation image partition 254:2 present
    [ 13.707377] PM: Looking for hibernation image.
    [ 13.707685] PM: Image not found (code -22)
    [ 13.707689] PM: Hibernation image not present or could not be loaded.
    [ 14.046090] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 14.787445] systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 14.788676] systemd[1]: Set hostname to <HTPC-Arch>.
    [ 15.226797] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 15.226858] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 15.226873] systemd[1]: Starting Remote File Systems.
    [ 15.227011] systemd[1]: Reached target Remote File Systems.
    [ 15.227023] systemd[1]: Expecting device sys-subsystem-net-devices-enp0s25.device...
    [ 15.227118] systemd[1]: Starting Delayed Shutdown Socket.
    [ 15.227240] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 15.227251] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 15.227365] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 15.227375] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 15.227491] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 15.227501] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 15.227623] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 15.227662] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 15.227875] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 15.227893] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 15.227935] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 15.227945] systemd[1]: Starting Paths.
    [ 15.228037] systemd[1]: Reached target Paths.
    [ 15.228050] systemd[1]: Starting Journal Socket.
    [ 15.228187] systemd[1]: Listening on Journal Socket.
    [ 15.249416] systemd[1]: Started Set Up Additional Binary Formats.
    [ 15.262084] systemd[1]: Starting Apply Kernel Variables...
    [ 15.262799] systemd[1]: Starting Create static device nodes in /dev...
    [ 15.263427] systemd[1]: Mounting Huge Pages File System...
    [ 15.263983] systemd[1]: Starting Setup Virtual Console...
    [ 15.264564] systemd[1]: Mounting POSIX Message Queue File System...
    [ 15.265156] systemd[1]: Mounting Debug File System...
    [ 15.280316] systemd[1]: Started Load Kernel Modules.
    [ 15.280348] systemd[1]: Mounting Configuration File System...
    [ 15.280921] systemd[1]: Mounted FUSE Control File System.
    [ 15.280939] systemd[1]: Starting Journal Service...
    [ 15.281676] systemd[1]: Started Journal Service.
    [ 15.281761] systemd[1]: Starting udev Kernel Socket.
    [ 15.281891] systemd[1]: Listening on udev Kernel Socket.
    [ 15.281945] systemd[1]: Starting udev Control Socket.
    [ 15.282059] systemd[1]: Listening on udev Control Socket.
    [ 15.282117] systemd[1]: Starting udev Coldplug all Devices...
    [ 15.282675] systemd[1]: Starting Encrypted Volumes.
    [ 15.282783] systemd[1]: Reached target Encrypted Volumes.
    [ 15.282802] systemd[1]: Expecting device dev-disk-by\x2duuid-0318dc88\x2d9059\x2d4a62\x2dbcff\x2d33265de192a4.device...
    [ 15.282920] systemd[1]: Started File System Check on Root Device.
    [ 15.282933] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 15.283591] systemd[1]: Mounting Temporary Directory...
    [ 15.420998] systemd[1]: Expecting device dev-disk-by\x2duuid-53882be2\x2d6e5d\x2d4f81\x2d8336\x2d8115b139229a.device...
    [ 15.422283] systemd[1]: Expecting device dev-disk-by\x2duuid-a510d99d\x2dd043\x2d415c\x2d9357\x2d87584ac75ce0.device...
    [ 15.753587] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
    [ 15.847848] systemd-udevd[185]: starting version 204
    [ 16.644359] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 16.644369] ACPI: Sleep Button [SLPB]
    [ 16.644450] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 16.644454] ACPI: Power Button [PWRF]
    [ 16.751410] pps_core: LinuxPPS API ver. 1 registered
    [ 16.751415] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 16.808340] media: Linux media interface: v0.10
    [ 16.812148] Linux video capture interface: v2.00
    [ 16.820027] PTP clock support registered
    [ 16.833228] ACPI: Requesting acpi_cpufreq
    [ 16.874833] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 16.874837] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 16.875034] e1000e 0000:00:19.0: setting latency timer to 64
    [ 16.875118] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 16.875143] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    [ 16.914814] saa7164 driver loaded
    [ 16.916507] CORE saa7164[0]: subsystem: 0070:8851, board: Hauppauge WinTV-HVR2250 [card=7,autodetected]
    [ 16.916513] saa7164[0]/0: found at 0000:03:00.0, rev: 129, irq: 17, latency: 0, mmio: 0x90000000
    [ 17.050022] saa7164_downloadfirmware() no first image
    [ 17.050682] cfg80211: Calling CRDA to update world regulatory domain
    [ 17.051569] saa7164_downloadfirmware() Waiting for firmware upload (NXP7164-2010-03-10.1.fw)
    [ 17.187584] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:1c:c0:78:69:22
    [ 17.187590] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 17.187615] e1000e 0000:00:19.0 eth0: MAC: 6, PHY: 6, PBA No: FFFFFF-0FF
    [ 17.187944] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \GPE0 1 (20130328/utaddress-251)
    [ 17.187951] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 17.187976] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 17.448874] ieee80211 phy0: rt2x00_set_chip: Info - Chipset detected - rt: 2561, rf: 0003, rev: 000c
    [ 17.481174] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 17.580464] saa7164_downloadfirmware() firmware read 4019072 bytes.
    [ 17.580469] saa7164_downloadfirmware() firmware loaded.
    [ 17.580471] Firmware file header part 1:
    [ 17.580473] .FirmwareSize = 0x0
    [ 17.580474] .BSLSize = 0x0
    [ 17.580475] .Reserved = 0x3d538
    [ 17.580477] .Version = 0x3
    [ 17.580479] saa7164_downloadfirmware() SecBootLoader.FileSize = 4019072
    [ 17.580485] saa7164_downloadfirmware() FirmwareSize = 0x1fd6
    [ 17.580486] saa7164_downloadfirmware() BSLSize = 0x0
    [ 17.580488] saa7164_downloadfirmware() Reserved = 0x0
    [ 17.580489] saa7164_downloadfirmware() Version = 0x1661c00
    [ 17.621991] snd_hda_intel 0000:00:1b.0: irq 47 for MSI/MSI-X
    [ 17.694365] input: HDA Intel Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card1/input5
    [ 17.694422] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card1/input6
    [ 17.694477] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input7
    [ 17.694908] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 17.694980] snd_hda_intel 0000:01:00.1: irq 48 for MSI/MSI-X
    [ 17.707929] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 17.907140] microcode: CPU0 sig=0x6fd, pf=0x1, revision=0xa3
    [ 17.907184] microcode: CPU1 sig=0x6fd, pf=0x1, revision=0xa3
    [ 17.907251] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 17.993729] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card0/input8
    [ 18.040563] coretemp coretemp.0: Using relative temperature scale!
    [ 18.040576] coretemp coretemp.0: Using relative temperature scale!
    [ 18.100383] gpio_ich: GPIO from 206 to 255 on gpio_ich
    [ 18.112063] iTCO_vendor_support: vendor-support=0
    [ 18.298748] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 18.298795] iTCO_wdt: Found a ICH8 or ICH8R TCO device (Version=2, TCOBASE=0x0460)
    [ 18.298917] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 18.520198] systemd-udevd[206]: renamed network interface wlan0 to wlp5s3
    [ 18.624855] Adding 10485756k swap on /dev/mapper/system-swap. Priority:-1 extents:1 across:10485756k FS
    [ 18.730190] systemd-udevd[200]: renamed network interface eth0 to enp0s25
    [ 20.673933] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 20.681617] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 20.855405] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 21.795385] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    [ 21.896764] e1000e 0000:00:19.0: irq 46 for MSI/MSI-X
    [ 21.896898] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
    [ 22.415792] systemd-logind[284]: Watching system buttons on /dev/input/event4 (Power Button)
    [ 22.415885] systemd-logind[284]: Watching system buttons on /dev/input/event3 (Sleep Button)
    [ 22.618057] input: Xbox Gamepad (userspace driver) as /devices/virtual/input/input9
    [ 22.619178] input: Xbox Gamepad (userspace driver) #2 as /devices/virtual/input/input10
    [ 24.390026] saa7164_downloadimage() Image downloaded, booting...
    [ 24.493363] saa7164_downloadimage() Image booted successfully.
    [ 24.493397] starting firmware download(2)
    [ 26.916146] systemd-logind[284]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
    [ 27.103368] saa7164_downloadimage() Image downloaded, booting...
    [ 29.170040] saa7164_downloadimage() Image booted successfully.
    [ 29.170074] firmware download complete.
    [ 29.217377] tveeprom 9-0000: Hauppauge model 88061, rev C4F2, serial# 8524019
    [ 29.217381] tveeprom 9-0000: MAC address is 00:0d:fe:82:10:f3
    [ 29.217383] tveeprom 9-0000: tuner model is NXP 18271C2_716x (idx 152, type 4)
    [ 29.217386] tveeprom 9-0000: TV standards NTSC(M) ATSC/DVB Digital (eeprom 0x88)
    [ 29.217388] tveeprom 9-0000: audio processor is SAA7164 (idx 43)
    [ 29.217390] tveeprom 9-0000: decoder processor is SAA7164 (idx 40)
    [ 29.217392] tveeprom 9-0000: has radio, has IR receiver, has no IR transmitter
    [ 29.217394] saa7164[0]: Hauppauge eeprom: model=88061
    [ 29.865010] tda18271 10-0060: creating new instance
    [ 29.869343] TDA18271HD/C2 detected @ 10-0060
    [ 30.094538] DVB: registering new adapter (saa7164)
    [ 30.094548] saa7164 0000:03:00.0: DVB: registering adapter 0 frontend 0 (Samsung S5H1411 QAM/8VSB Frontend)...
    [ 30.383509] tda18271 11-0060: creating new instance
    [ 30.387943] TDA18271HD/C2 detected @ 11-0060
    [ 30.457571] e1000e: enp0s25 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx
    [ 30.457682] e1000e 0000:00:19.0 enp0s25: Link Speed was downgraded by SmartSpeed
    [ 30.457685] e1000e 0000:00:19.0 enp0s25: 10/100 speed: disabling TSO
    [ 30.457715] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
    [ 30.612017] tda18271: performing RF tracking filter calibration
    [ 32.898604] tda18271: RF tracking filter calibration complete
    [ 32.901771] DVB: registering new adapter (saa7164)
    [ 32.901779] saa7164 0000:03:00.0: DVB: registering adapter 1 frontend 0 (Samsung S5H1411 QAM/8VSB Frontend)...
    [ 32.902195] saa7164[0]: registered device video0 [mpeg]
    [ 33.133183] saa7164[0]: registered device video1 [mpeg]
    [ 33.343857] saa7164[0]: registered device vbi0 [vbi]
    [ 33.343959] saa7164[0]: registered device vbi1 [vbi]
    [ 37.832133] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
    [ 38.787420] EXT4-fs (dm-1): re-mounted. Opts: data=ordered,commit=0
    [ 39.333649] EXT4-fs (dm-3): re-mounted.

    I seemed to have solved this by following the advice in the Gentoo wiki:
    https://wiki.gentoo.org/wiki/Radeon#Audio_over_HDMI
    pcm.!default {
    type plug
    slave.pcm "hdmi"
    Those four lines in my /etc/asound.conf work. I'm not sure what the difference is between specifying "hdmi" vs the hardware device "hw:0,3".
    I still get no sound with `aplay -D plughw:0,3 /usr/share/sounds/alsa/Front_Center.wav` however, `aplay /usr/share/sounds/alsa/Front_Center.wav` works now. `aplay -D hdmi /usr/share/sounds/alsa/Front_Center.wav` results in an error/warning:
    Playing WAVE '/usr/share/sounds/alsa/Front_Center.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Mono
    aplay: set_params:1239: Channels count non available

  • [solved] Makepkg fails to sign package w/o asking password.

    I'm not sure when exactly this issue really started happening, but it was somewhere around the time that the new versions of Pacman and gnupg came out (a few weeks).
    I have a local ~/.makepkg.conf configured to sign any package I build with my key. The issue is that once any package completes building, and it is ready to be signed, I will sometimes be presented with a Pinentry screen to enter my password for signing the package and sometimes it will just fail to sign the package without ever asking for my password. There is no indication as to why it failed in the terminal output nor in the journal.
    This is happening on both of my Arch systems, so I know it's not just a localized issue with my one computer.
    Linux Betelgeuse 3.18.2-2-ARCH #1 SMP PREEMPT Fri Jan 9 07:37:51 CET 2015 x86_64 GNU/Linux
    Pacman, gnupg, and pinentry versions:
    [gilmoreja@Betelgeuse lib32-allegro]$ pacman -Qi pacman gnupg pinentry
    Name : pacman
    Version : 4.2.0-6
    Description : A library-based package manager with dependency support
    Architecture : x86_64
    URL : http://www.archlinux.org/pacman/
    Licenses : GPL
    Groups : base base-devel
    Provides : pacman-contrib
    Depends On : bash glibc libarchive>=3.1.2 curl>=7.39.0 gpgme pacman-mirrorlist
    archlinux-keyring
    Optional Deps : None
    Required By : cower pkgfile
    Optional For : None
    Conflicts With : pacman-contrib
    Replaces : pacman-contrib
    Installed Size : 4.22 MiB
    Packager : Allan McRae <[email protected]>
    Build Date : Sun 11 Jan 2015 11:44:40 PM CST
    Install Date : Mon 26 Jan 2015 07:13:41 AM CST
    Install Reason : Explicitly installed
    Install Script : No
    Validated By : Signature
    Name : gnupg
    Version : 2.1.1-1
    Description : Complete and free implementation of the OpenPGP standard
    Architecture : x86_64
    URL : http://www.gnupg.org/
    Licenses : GPL
    Groups : None
    Provides : dirmngr gnupg2=2.1.1
    Depends On : npth libgpg-error libgcrypt libksba libassuan pinentry bzip2 readline
    gnutls
    Optional Deps : libldap: gpg2keys_ldap [installed]
    libusb-compat: scdaemon [installed]
    Required By : gpgme
    Optional For : None
    Conflicts With : dirmngr gnupg2
    Replaces : dirmngr gnupg2
    Installed Size : 8.32 MiB
    Packager : Gaetan Bisson <[email protected]>
    Build Date : Tue 16 Dec 2014 01:39:55 PM CST
    Install Date : Wed 24 Dec 2014 06:17:22 PM CST
    Install Reason : Installed as a dependency for another package
    Install Script : Yes
    Validated By : Signature
    Name : pinentry
    Version : 0.9.0-1
    Description : a collection of simple PIN or passphrase entry dialogs which utilize the Assuan
    protocol
    Architecture : x86_64
    URL : http://gnupg.org/related_software/pinentry/
    Licenses : GPL
    Groups : None
    Provides : None
    Depends On : ncurses libcap>=2.16
    Optional Deps : gtk2: for gtk2 backend [installed]
    qt4: for qt4 backend [installed]
    Required By : gnupg
    Optional For : None
    Conflicts With : None
    Replaces : None
    Installed Size : 329.00 KiB
    Packager : Tobias Powalowski <[email protected]>
    Build Date : Wed 12 Nov 2014 05:43:08 AM CST
    Install Date : Wed 24 Dec 2014 06:17:21 PM CST
    Install Reason : Installed as a dependency for another package
    Install Script : Yes
    Validated By : Signature
    makepkg output:
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "lib32-allegro"...
    -> Generating .PKGINFO file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Signing package...
    ==> WARNING: Failed to sign package file.
    ==> Leaving fakeroot environment.
    ==> Finished making: lib32-allegro 5.0.11-1 (Mon Jan 26 08:00:43 CST 2015)
    ==> Installing package lib32-allegro with pacman -U...
    Password:
    loading packages...
    error: '/home/gilmoreja/sources/lib32-allegro/lib32-allegro-5.0.11-1-x86_64.pkg.tar.xz': package missing required signature
    ==> WARNING: Failed to install built package(s).
    ==> Cleaning up...
    Current boot's journal:
    -- Logs begin at Wed 2014-12-24 18:48:34 CST, end at Mon 2015-01-26 08:02:04 CST. --
    Jan 26 07:01:14 Betelgeuse systemd-journal[106]: Runtime journal is using 6.2M (max allowed 49.8M, trying to leave 74.8M free of 492.6M available → current limit 49.8M).
    Jan 26 07:01:14 Betelgeuse systemd-journal[106]: Permanent journal is using 272.0M (max allowed 1.9G, trying to leave 2.9G free of 8.8G available → current limit 1.9G).
    Jan 26 07:01:16 Betelgeuse systemd-journal[106]: Time spent on flushing to /var is 1.569419s for 2 entries.
    Jan 26 07:01:16 Betelgeuse kernel: Initializing cgroup subsys cpuset
    Jan 26 07:01:16 Betelgeuse kernel: Initializing cgroup subsys cpu
    Jan 26 07:01:16 Betelgeuse kernel: Initializing cgroup subsys cpuacct
    Jan 26 07:01:16 Betelgeuse kernel: Linux version 3.18.2-2-ARCH (builduser@tobias) (gcc version 4.9.2 20141224 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Jan 9 07:37:51 CET 2015
    Jan 26 07:01:16 Betelgeuse kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=9fba7516-1115-4d75-a604-841e18996568 rw
    Jan 26 07:01:16 Betelgeuse kernel: tseg: 0000000000
    Jan 26 07:01:16 Betelgeuse kernel: e820: BIOS-provided physical RAM map:
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003ffcffff] usable
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x000000003ffd0000-0x000000003ffdefff] ACPI data
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x000000003ffdf000-0x000000003fffffff] ACPI NVS
    Jan 26 07:01:16 Betelgeuse kernel: BIOS-e820: [mem 0x00000000fff80000-0x00000000ffffffff] reserved
    Jan 26 07:01:16 Betelgeuse kernel: NX (Execute Disable) protection: active
    Jan 26 07:01:16 Betelgeuse kernel: SMBIOS 2.3 present.
    Jan 26 07:01:16 Betelgeuse kernel: DMI: Magnell / , BIOS 1.04 01/21/2005
    Jan 26 07:01:17 Betelgeuse kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jan 26 07:01:17 Betelgeuse kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00:00: AGP bridge
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe1ffffff] (old size 32MB)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe7ffffff] (128MB, APSIZE 0xf20)
    Jan 26 07:01:17 Betelgeuse kernel: e820: last_pfn = 0x3ffd0 max_arch_pfn = 0x400000000
    Jan 26 07:01:17 Betelgeuse kernel: MTRR default type: uncachable
    Jan 26 07:01:17 Betelgeuse kernel: MTRR fixed ranges enabled:
    Jan 26 07:01:17 Betelgeuse kernel: 00000-9FFFF write-back
    Jan 26 07:01:17 Betelgeuse kernel: A0000-EFFFF uncachable
    Jan 26 07:01:17 Betelgeuse kernel: F0000-FFFFF write-protect
    Jan 26 07:01:17 Betelgeuse kernel: MTRR variable ranges enabled:
    Jan 26 07:01:17 Betelgeuse kernel: 0 base 0000000000 mask FFC0000000 write-back
    Jan 26 07:01:17 Betelgeuse kernel: 1 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 2 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 3 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 4 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 5 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 6 disabled
    Jan 26 07:01:17 Betelgeuse kernel: 7 disabled
    Jan 26 07:01:17 Betelgeuse kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 26 07:01:17 Betelgeuse kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    Jan 26 07:01:17 Betelgeuse kernel: Scanning 1 areas for low memory corruption
    Jan 26 07:01:17 Betelgeuse kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b38000, 0x01b38fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x3fc00000-0x3fdfffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x3fc00000-0x3fdfffff] page 2M
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x3c000000-0x3fbfffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x3c000000-0x3fbfffff] page 2M
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x00100000-0x3bffffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x00100000-0x001fffff] page 4k
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x00200000-0x3bffffff] page 2M
    Jan 26 07:01:17 Betelgeuse kernel: init_memory_mapping: [mem 0x3fe00000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: [mem 0x3fe00000-0x3ffcffff] page 4k
    Jan 26 07:01:17 Betelgeuse kernel: BRK [0x01b39000, 0x01b39fff] PGTABLE
    Jan 26 07:01:17 Betelgeuse kernel: RAMDISK: [mem 0x373b4000-0x379d1fff]
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Early table checksum verification disabled
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: RSDP 0x00000000000F7090 000014 (v00 ACPIAM)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: RSDT 0x000000003FFD0000 000030 (v01 A M I OEMRSDT 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: FACP 0x000000003FFD0200 000081 (v02 A M I OEMFACP 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: DSDT 0x000000003FFD03F0 003A1B (v01 258KA 258KA000 00000000 INTL 02002026)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: FACS 0x000000003FFDF000 000040
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: APIC 0x000000003FFD0390 000054 (v01 A M I OEMAPIC 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: OEMB 0x000000003FFDF040 000108 (v01 A M I AMI_OEM 01000521 MSFT 00000097)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 07:01:17 Betelgeuse kernel: Scanning NUMA topology in Northbridge 24
    Jan 26 07:01:17 Betelgeuse kernel: No NUMA configuration found
    Jan 26 07:01:17 Betelgeuse kernel: Faking a node at [mem 0x0000000000000000-0x000000003ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: NODE_DATA(0) allocated [mem 0x3ffcc000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: [ffffea0000000000-ffffea0000ffffff] PMD -> [ffff88003e600000-ffff88003f5fffff] on node 0
    Jan 26 07:01:17 Betelgeuse kernel: Zone ranges:
    Jan 26 07:01:17 Betelgeuse kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 26 07:01:17 Betelgeuse kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: Normal empty
    Jan 26 07:01:17 Betelgeuse kernel: Movable zone start for each node
    Jan 26 07:01:17 Betelgeuse kernel: Early memory node ranges
    Jan 26 07:01:17 Betelgeuse kernel: node 0: [mem 0x00001000-0x0009efff]
    Jan 26 07:01:17 Betelgeuse kernel: node 0: [mem 0x00100000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: Initmem setup node 0 [mem 0x00001000-0x3ffcffff]
    Jan 26 07:01:17 Betelgeuse kernel: On node 0 totalpages: 261998
    Jan 26 07:01:17 Betelgeuse kernel: DMA zone: 64 pages used for memmap
    Jan 26 07:01:17 Betelgeuse kernel: DMA zone: 21 pages reserved
    Jan 26 07:01:17 Betelgeuse kernel: DMA zone: 3998 pages, LIFO batch:0
    Jan 26 07:01:17 Betelgeuse kernel: DMA32 zone: 4032 pages used for memmap
    Jan 26 07:01:17 Betelgeuse kernel: DMA32 zone: 258000 pages, LIFO batch:31
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PM-Timer IO Port: 0x808
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    Jan 26 07:01:17 Betelgeuse kernel: IOAPIC[0]: apic_id 1, version 2, address 0xfec00000, GSI 0-23
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 low level)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: IRQ0 used by override.
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: IRQ10 used by override.
    Jan 26 07:01:17 Betelgeuse kernel: Using ACPI (MADT) for SMP configuration information
    Jan 26 07:01:17 Betelgeuse kernel: smpboot: Allowing 1 CPUs, 0 hotplug CPUs
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Jan 26 07:01:17 Betelgeuse kernel: e820: [mem 0x40000000-0xfff7ffff] available for PCI devices
    Jan 26 07:01:17 Betelgeuse kernel: Booting paravirtualized kernel on bare hardware
    Jan 26 07:01:17 Betelgeuse kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1
    Jan 26 07:01:17 Betelgeuse kernel: PERCPU: Embedded 30 pages/cpu @ffff88003fc00000 s82880 r8192 d31808 u2097152
    Jan 26 07:01:17 Betelgeuse kernel: pcpu-alloc: s82880 r8192 d31808 u2097152 alloc=1*2097152
    Jan 26 07:01:17 Betelgeuse kernel: pcpu-alloc: [0] 0
    Jan 26 07:01:17 Betelgeuse kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 257881
    Jan 26 07:01:17 Betelgeuse kernel: Policy zone: DMA32
    Jan 26 07:01:17 Betelgeuse kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=9fba7516-1115-4d75-a604-841e18996568 rw
    Jan 26 07:01:17 Betelgeuse kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: Checking aperture...
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00:00: AGP bridge
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe1ffffff] (old size 32MB)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: pci 0000:00:00.0: AGP aperture [bus addr 0xe0000000-0xe7ffffff] (128MB, APSIZE 0xf20)
    Jan 26 07:01:17 Betelgeuse kernel: AGP: Node 0: aperture [bus addr 0xe0000000-0xe7ffffff] (128MB)
    Jan 26 07:01:17 Betelgeuse kernel: Memory: 1013368K/1047992K available (5478K kernel code, 908K rwdata, 1720K rodata, 1160K init, 1184K bss, 34624K reserved)
    Jan 26 07:01:17 Betelgeuse kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Jan 26 07:01:17 Betelgeuse kernel: Preemptible hierarchical RCU implementation.
    Jan 26 07:01:17 Betelgeuse kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 26 07:01:17 Betelgeuse kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 26 07:01:17 Betelgeuse kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1.
    Jan 26 07:01:17 Betelgeuse kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
    Jan 26 07:01:17 Betelgeuse kernel: NR_IRQS:8448 nr_irqs:256 0
    Jan 26 07:01:17 Betelgeuse kernel: spurious 8259A interrupt: IRQ7.
    Jan 26 07:01:17 Betelgeuse kernel: Console: colour dummy device 80x25
    Jan 26 07:01:17 Betelgeuse kernel: console [tty0] enabled
    Jan 26 07:01:17 Betelgeuse kernel: allocated 4194304 bytes of page_cgroup
    Jan 26 07:01:17 Betelgeuse kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 26 07:01:17 Betelgeuse kernel: tsc: Fast TSC calibration using PIT
    Jan 26 07:01:17 Betelgeuse kernel: tsc: Detected 798.222 MHz processor
    Jan 26 07:01:17 Betelgeuse kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 1597.96 BogoMIPS (lpj=2660740)
    Jan 26 07:01:17 Betelgeuse kernel: pid_max: default: 32768 minimum: 301
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Core revision 20140926
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: All ACPI Tables successfully acquired
    Jan 26 07:01:17 Betelgeuse kernel: Security Framework initialized
    Jan 26 07:01:17 Betelgeuse kernel: Yama: becoming mindful.
    Jan 26 07:01:17 Betelgeuse kernel: Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys memory
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys devices
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys freezer
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys net_cls
    Jan 26 07:01:17 Betelgeuse kernel: Initializing cgroup subsys blkio
    Jan 26 07:01:17 Betelgeuse kernel: mce: CPU supports 5 MCE banks
    Jan 26 07:01:17 Betelgeuse kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
    Jan 26 07:01:17 Betelgeuse kernel: Freeing SMP alternatives memory: 20K (ffffffff81a07000 - ffffffff81a0c000)
    Jan 26 07:01:17 Betelgeuse kernel: ftrace: allocating 20920 entries in 82 pages
    Jan 26 07:01:17 Betelgeuse kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 26 07:01:17 Betelgeuse kernel: smpboot: CPU0: AMD Athlon(tm) 64 Processor 3400+ (fam: 0f, model: 04, stepping: 0a)
    Jan 26 07:01:17 Betelgeuse kernel: Performance Events: AMD PMU driver.
    Jan 26 07:01:17 Betelgeuse kernel: ... version: 0
    Jan 26 07:01:17 Betelgeuse kernel: ... bit width: 48
    Jan 26 07:01:17 Betelgeuse kernel: ... generic registers: 4
    Jan 26 07:01:17 Betelgeuse kernel: ... value mask: 0000ffffffffffff
    Jan 26 07:01:17 Betelgeuse kernel: ... max period: 00007fffffffffff
    Jan 26 07:01:17 Betelgeuse kernel: ... fixed-purpose events: 0
    Jan 26 07:01:17 Betelgeuse kernel: ... event mask: 000000000000000f
    Jan 26 07:01:17 Betelgeuse kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 26 07:01:17 Betelgeuse kernel: x86: Booted up 1 node, 1 CPUs
    Jan 26 07:01:17 Betelgeuse kernel: smpboot: Total of 1 processors activated (1597.96 BogoMIPS)
    Jan 26 07:01:17 Betelgeuse kernel: devtmpfs: initialized
    Jan 26 07:01:17 Betelgeuse kernel: PM: Registering ACPI NVS region [mem 0x3ffdf000-0x3fffffff] (135168 bytes)
    Jan 26 07:01:17 Betelgeuse kernel: pinctrl core: initialized pinctrl subsystem
    Jan 26 07:01:17 Betelgeuse kernel: RTC time: 13:01:08, date: 01/26/15
    Jan 26 07:01:17 Betelgeuse kernel: NET: Registered protocol family 16
    Jan 26 07:01:17 Betelgeuse kernel: cpuidle: using governor ladder
    Jan 26 07:01:17 Betelgeuse kernel: cpuidle: using governor menu
    Jan 26 07:01:17 Betelgeuse kernel: node 0 link 0: io port [1000, ffffff]
    Jan 26 07:01:17 Betelgeuse kernel: TOM: 0000000040000000 aka 1024M
    Jan 26 07:01:17 Betelgeuse kernel: node 0 link 0: mmio [a0000, bffff]
    Jan 26 07:01:17 Betelgeuse kernel: node 0 link 0: mmio [40000000, ffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: bus: [bus 00-ff] on node 0 link 0
    Jan 26 07:01:17 Betelgeuse kernel: bus: 00 [io 0x0000-0xffff]
    Jan 26 07:01:17 Betelgeuse kernel: bus: 00 [mem 0x000a0000-0x000bffff]
    Jan 26 07:01:17 Betelgeuse kernel: bus: 00 [mem 0x40000000-0xfcffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: bus type PCI registered
    Jan 26 07:01:17 Betelgeuse kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 26 07:01:17 Betelgeuse kernel: PCI: Using configuration type 1 for base access
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(Module Device)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(Processor Device)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Actual Package length (202) is larger than NumElements field (4), truncated
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Interpreter enabled
    Jan 26 07:01:17 Betelgeuse kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140926/hwxface-580)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140926/hwxface-580)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 26 07:01:17 Betelgeuse kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Jan 26 07:01:17 Betelgeuse kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: host bridge window [mem 0x40000000-0xffffffff] (ignored)
    Jan 26 07:01:17 Betelgeuse kernel: PCI: root bus 00: hardware-probed resources
    Jan 26 07:01:17 Betelgeuse kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
    Jan 26 07:01:17 Betelgeuse kernel: PCI host bridge to bus 0000:00
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: root bus resource [mem 0x40000000-0xfcffffffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:00.0: [1039:0755] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:00.0: reg 0x10: [mem 0xe0000000-0xe7ffffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: [1039:0002] type 01 class 0x060400
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.0: [1039:0008] type 00 class 0x060100
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.0: Enabling SiS 96x SMBus
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.1: [1039:0016] type 00 class 0x0c0500
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.1: reg 0x20: [io 0x0c00-0x0c1f]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: [1039:5513] type 00 class 0x010180
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: reg 0x20: [io 0xffa0-0xffaf]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x14: [io 0x03f6]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.5: legacy IDE quirk: reg 0x1c: [io 0x0376]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: [1039:7013] type 00 class 0x070300
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: reg 0x10: [io 0xe400-0xe4ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: reg 0x14: [io 0xe000-0xe07f]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: PME# supported from D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.6: System wakeup disabled by ACPI
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: [1039:7012] type 00 class 0x040100
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: reg 0x10: [io 0xe800-0xe8ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: reg 0x14: [io 0xec00-0xec7f]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: PME# supported from D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:02.7: System wakeup disabled by ACPI
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.0: [1039:7001] type 00 class 0x0c0310
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.0: reg 0x10: [mem 0xdfffd000-0xdfffdfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.1: [1039:7001] type 00 class 0x0c0310
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.1: reg 0x10: [mem 0xdfffe000-0xdfffefff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.3: [1039:7002] type 00 class 0x0c0320
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.3: reg 0x10: [mem 0xdffff000-0xdfffffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: [1039:0900] type 00 class 0x020000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: reg 0x10: [io 0xd800-0xd8ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: reg 0x14: [mem 0xdfffc000-0xdfffcfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: reg 0x30: [mem 0xdffc0000-0xdffdffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:04.0: System wakeup disabled by ACPI
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: [104c:8023] type 00 class 0x0c0010
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: reg 0x10: [mem 0xdfffb800-0xdfffbfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: reg 0x14: [mem 0xdfff4000-0xdfff7fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: [1217:7114] type 02 class 0x060700
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: reg 0x10: [mem 0x00000000-0x00000fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: [1217:7114] type 02 class 0x060700
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: reg 0x10: [mem 0x00000000-0x00000fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: [1217:7110] type 00 class 0x088000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: reg 0x10: [mem 0xdfffa000-0xdfffafff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.2: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:0b.0: [1814:0201] type 00 class 0x028000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:0b.0: reg 0x10: [mem 0xdfff8000-0xdfff9fff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: [1002:4e50] type 00 class 0x030000
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xd7ffffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x14: [io 0xc800-0xc8ff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x18: [mem 0xdfef0000-0xdfefffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: reg 0x30: [mem 0xdfec0000-0xdfedffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:01:00.0: supports D1 D2
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xdfe00000-0xdfefffff]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xcfd00000-0xdfcfffff pref]
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.0: bridge configuration invalid ([bus 00-00]), reconfiguring
    Jan 26 07:01:17 Betelgeuse kernel: pci 0000:00:09.1: bridge configuration invalid ([bus 00-00]), reconfiguring
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 05
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 09
    Jan 26 07:01:17 Betelgeuse kernel: pci_bus 0000:00: on NUMA node 0
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 *11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 *11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 *10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 7 10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 *11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 7 10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
    Jan 26 07:01:17 Betelgeuse kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 7 10 11 12 14 15)
    Jan 26 07:01:17 Betelgeuse kernel: ACPI : EC: GPE = 0xb, I/O: command/status = 0x66, data = 0x62
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: setting as boot device: PCI:0000:01:00.0
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: loaded
    Jan 26 07:01:17 Betelgeuse kernel: vgaarb: bridge control possible 0000:01:00.0
    Jan 26 07:01:17 Betelgeuse kernel: PCI: Using ACPI for IRQ routing
    Jan 26 07:01:17 Betelgeuse kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 26 07:01:17 Betelgeuse kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Jan 26 07:01:17 Betelgeuse kernel: e820: reserve RAM buffer [mem 0x3ffd0000-0x3fffffff]
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: Initializing
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: domain hash size = 128
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 26 07:01:17 Betelgeuse kernel: NetLabel: unlabeled traffic allowed by default
    Jan 26 07:01:17 Betelgeuse kernel: Switched to clocksource refined-jiffies
    Jan 26 07:01:17 Betelgeuse kernel: pnp: PnP ACPI init
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP030b (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:02: Plug and Play ACPI device, IDs SYN0801 SYN0800 PNP0f13 (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:03: [dma 1]
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:03: Plug and Play ACPI device, IDs NSC6001 (active)
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:04: [dma 0 disabled]
    Jan 26 07:01:17 Betelgeuse kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0401 (active)
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0480-0x048f] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x04d0-0x04d1] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0800-0x087f] could not be reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0880-0x08ff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [io 0x0c00-0x0c1f] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [mem 0xfff80000-0xffffffff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [mem 0xffe80000-0xffefffff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: [mem 0xfed00000-0xfed003ff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 07:01:17 Betelgeuse kernel: system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
    Jan 26 07:01:17 Betelgeuse kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x00000000-0x0009ffff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x000c0000-0x000d0fff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x000e0000-0x000fffff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: [mem 0x00100000-0x3fffffff] could not be reserved
    Jan 26 07:01:18 Betelgeuse kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 26 07:01:18 Betelgeuse kernel: pnp: PnP ACPI: found 8 devices
    Jan 26 07:01:18 Betelgeuse kernel: Switched to clocksource acpi_pm
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 0: assigned [mem 0x40000000-0x40000fff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 15: assigned [mem 0x44000000-0x47ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 16: assigned [mem 0x48000000-0x4bffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 0: assigned [mem 0x4c000000-0x4c000fff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 15: assigned [mem 0x50000000-0x53ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 16: assigned [mem 0x54000000-0x57ffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 13: assigned [io 0x1000-0x10ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: BAR 14: assigned [io 0x1400-0x14ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 13: assigned [io 0x1800-0x18ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: BAR 14: assigned [io 0x1c00-0x1cff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xdfe00000-0xdfefffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:01.0: bridge window [mem 0xcfd00000-0xdfcfffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: CardBus bridge to [bus 02-05]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [io 0x1000-0x10ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [io 0x1400-0x14ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [mem 0x44000000-0x47ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.0: bridge window [mem 0x48000000-0x4bffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: CardBus bridge to [bus 06-09]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [io 0x1800-0x18ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [io 0x1c00-0x1cff]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [mem 0x50000000-0x53ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:00:09.1: bridge window [mem 0x54000000-0x57ffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:00: resource 6 [mem 0x40000000-0xfcffffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:01: resource 1 [mem 0xdfe00000-0xdfefffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:01: resource 2 [mem 0xcfd00000-0xdfcfffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 0 [io 0x1000-0x10ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 1 [io 0x1400-0x14ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 2 [mem 0x44000000-0x47ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:02: resource 3 [mem 0x48000000-0x4bffffff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 0 [io 0x1800-0x18ff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 1 [io 0x1c00-0x1cff]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 2 [mem 0x50000000-0x53ffffff pref]
    Jan 26 07:01:18 Betelgeuse kernel: pci_bus 0000:06: resource 3 [mem 0x54000000-0x57ffffff]
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 2
    Jan 26 07:01:18 Betelgeuse kernel: TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: TCP: Hash tables configured (established 8192 bind 8192)
    Jan 26 07:01:18 Betelgeuse kernel: TCP: reno registered
    Jan 26 07:01:18 Betelgeuse kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 1
    Jan 26 07:01:18 Betelgeuse kernel: pci 0000:01:00.0: Video device with shadowed ROM
    Jan 26 07:01:18 Betelgeuse kernel: PCI: CLS 64 bytes, default 64
    Jan 26 07:01:18 Betelgeuse kernel: Unpacking initramfs...
    Jan 26 07:01:18 Betelgeuse kernel: Freeing initrd memory: 6264K (ffff8800373b4000 - ffff8800379d2000)
    Jan 26 07:01:18 Betelgeuse kernel: microcode: AMD CPU family 0xf not supported
    Jan 26 07:01:18 Betelgeuse kernel: Scanning for low memory corruption every 60 seconds
    Jan 26 07:01:18 Betelgeuse kernel: futex hash table entries: 256 (order: 2, 16384 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: Initialise system trusted keyring
    Jan 26 07:01:18 Betelgeuse kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 26 07:01:18 Betelgeuse kernel: zpool: loaded
    Jan 26 07:01:18 Betelgeuse kernel: zbud: loaded
    Jan 26 07:01:18 Betelgeuse kernel: VFS: Disk quotas dquot_6.5.2
    Jan 26 07:01:18 Betelgeuse kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 26 07:01:18 Betelgeuse kernel: msgmni has been set to 1991
    Jan 26 07:01:18 Betelgeuse kernel: Key type big_key registered
    Jan 26 07:01:18 Betelgeuse kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 26 07:01:18 Betelgeuse kernel: io scheduler noop registered
    Jan 26 07:01:18 Betelgeuse kernel: io scheduler deadline registered
    Jan 26 07:01:18 Betelgeuse kernel: io scheduler cfq registered (default)
    Jan 26 07:01:18 Betelgeuse kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 26 07:01:18 Betelgeuse kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: scrolling: redraw
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    Jan 26 07:01:18 Betelgeuse kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90000200000, using 3072k, total 3072k
    Jan 26 07:01:18 Betelgeuse kernel: Console: switching to colour frame buffer device 128x48
    Jan 26 07:01:18 Betelgeuse kernel: fb0: VESA VGA frame buffer device
    Jan 26 07:01:18 Betelgeuse kernel: GHES: HEST is not enabled!
    Jan 26 07:01:18 Betelgeuse kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 26 07:01:18 Betelgeuse kernel: platform serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 921600) is a NS16550A
    Jan 26 07:01:18 Betelgeuse kernel: Linux agpgart interface v0.103
    Jan 26 07:01:18 Betelgeuse kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
    Jan 26 07:01:18 Betelgeuse kernel: rtc_cmos 00:00: alarms up to one month, 114 bytes nvram
    Jan 26 07:01:18 Betelgeuse kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Jan 26 07:01:18 Betelgeuse kernel: TCP: cubic registered
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 10
    Jan 26 07:01:18 Betelgeuse kernel: NET: Registered protocol family 17
    Jan 26 07:01:18 Betelgeuse kernel: Loading compiled-in X.509 certificates
    Jan 26 07:01:18 Betelgeuse kernel: registered taskstats version 1
    Jan 26 07:01:18 Betelgeuse kernel: Magic number: 15:262:29
    Jan 26 07:01:18 Betelgeuse kernel: rtc_cmos 00:00: setting system clock to 2015-01-26 13:01:09 UTC (1422277269)
    Jan 26 07:01:18 Betelgeuse kernel: PM: Hibernation image not present or could not be loaded.
    Jan 26 07:01:18 Betelgeuse kernel: Freeing unused kernel memory: 1160K (ffffffff818e5000 - ffffffff81a07000)
    Jan 26 07:01:18 Betelgeuse kernel: Write protecting the kernel read-only data: 8192k
    Jan 26 07:01:18 Betelgeuse kernel: Freeing unused kernel memory: 656K (ffff88000155c000 - ffff880001600000)
    Jan 26 07:01:18 Betelgeuse kernel: Freeing unused kernel memory: 328K (ffff8800017ae000 - ffff880001800000)
    Jan 26 07:01:18 Betelgeuse kernel: random: systemd-tmpfile urandom read with 2 bits of entropy available
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Initialized drm 1.1.0 20060810
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon kernel modesetting enabled.
    Jan 26 07:01:18 Betelgeuse kernel: checking generic (d0000000 300000) vs hw (d0000000 8000000)
    Jan 26 07:01:18 Betelgeuse kernel: fb: switching to radeondrmfb from VESA VGA
    Jan 26 07:01:18 Betelgeuse kernel: Console: switching to colour dummy device 80x25
    Jan 26 07:01:18 Betelgeuse kernel: [drm] initializing kernel modesetting (RV350 0x1002:0x4E50 0x1584:0x2324).
    Jan 26 07:01:18 Betelgeuse kernel: [drm] register mmio base: 0xDFEF0000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] register mmio size: 65536
    Jan 26 07:01:18 Betelgeuse kernel: [drm:radeon_agp_init] *ERROR* Unable to acquire AGP: -19
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Forcing AGP to PCI mode
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Generation 2 PCI interface, using max accessible memory
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: VRAM: 128M 0x00000000D0000000 - 0x00000000D7FFFFFF (128M used)
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: GTT: 512M 0x00000000B0000000 - 0x00000000CFFFFFFF
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Detected VRAM RAM=128M, BAR=128M
    Jan 26 07:01:18 Betelgeuse kernel: [drm] RAM width 128bits DDR
    Jan 26 07:01:18 Betelgeuse kernel: [TTM] Zone kernel: Available graphics memory: 510898 kiB
    Jan 26 07:01:18 Betelgeuse kernel: [TTM] Initializing pool allocator
    Jan 26 07:01:18 Betelgeuse kernel: [TTM] Initializing DMA pool allocator
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: 128M of VRAM memory ready
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: 512M of GTT memory ready.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: power management initialized
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] PCI GART of 512M enabled (table at 0x0000000037980000).
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: WB enabled
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x00000000b0000000 and cpu addr 0xffff88003791e000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Driver supports precise vblank timestamp query.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: irq initialized.
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Loading R300 Microcode
    Jan 26 07:01:18 Betelgeuse kernel: [drm] radeon: ring at 0x00000000B0001000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] ring test succeeded in 2 usecs
    Jan 26 07:01:18 Betelgeuse kernel: [drm] ib test succeeded in 0 usecs
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Panel ID String: Samsung LTN154X1 WXGA
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Panel Size 1280x800
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Radeon Display Connectors
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Connector 0:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] VGA-1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Encoders:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] CRT1: INTERNAL_DAC1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Connector 1:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] LVDS-1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Encoders:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] LCD1: INTERNAL_LVDS
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Connector 2:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] SVIDEO-1
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Encoders:
    Jan 26 07:01:18 Betelgeuse kernel: [drm] TV1: INTERNAL_DAC2
    Jan 26 07:01:18 Betelgeuse kernel: [drm] fb mappable at 0xD0040000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] vram apper at 0xD0000000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] size 4096000
    Jan 26 07:01:18 Betelgeuse kernel: [drm] fb depth is 24
    Jan 26 07:01:18 Betelgeuse kernel: [drm] pitch is 5120
    Jan 26 07:01:18 Betelgeuse kernel: fbcon: radeondrmfb (fb0) is primary device
    Jan 26 07:01:18 Betelgeuse kernel: Console: switching to colour frame buffer device 160x50
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    Jan 26 07:01:18 Betelgeuse kernel: radeon 0000:01:00.0: registered panic notifier
    Jan 26 07:01:18 Betelgeuse kernel: [drm] Initialized radeon 2.40.0 20080528 for 0000:01:00.0 on minor 0
    Jan 26 07:01:18 Betelgeuse kernel: i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jan 26 07:01:18 Betelgeuse kernel: i8042: Detected active multiplexing controller, rev 1.0
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Jan 26 07:01:18 Betelgeuse kernel: SCSI subsystem initialized
    Jan 26 07:01:18 Betelgeuse kernel: ACPI: bus type USB registered
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new interface driver usbfs
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new interface driver hub
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new device driver usb
    Jan 26 07:01:18 Betelgeuse kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci: EHCI PCI platform driver
    Jan 26 07:01:18 Betelgeuse kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci: OHCI PCI platform driver
    Jan 26 07:01:18 Betelgeuse kernel: libata version 3.00 loaded.
    Jan 26 07:01:18 Betelgeuse kernel: firewire_ohci 0000:00:06.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: EHCI Host Controller
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: new USB bus registered, assigned bus number 1
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: cache line size of 64 is not supported
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: irq 23, io mem 0xdffff000
    Jan 26 07:01:18 Betelgeuse kernel: ehci-pci 0000:00:03.3: USB 2.0 started, EHCI 1.00
    Jan 26 07:01:18 Betelgeuse kernel: hub 1-0:1.0: USB hub found
    Jan 26 07:01:18 Betelgeuse kernel: hub 1-0:1.0: 6 ports detected
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.0: OHCI PCI host controller
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.0: new USB bus registered, assigned bus number 2
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.0: irq 20, io mem 0xdfffd000
    Jan 26 07:01:18 Betelgeuse kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 26 07:01:18 Betelgeuse kernel: hub 2-0:1.0: USB hub found
    Jan 26 07:01:18 Betelgeuse kernel: hub 2-0:1.0: 3 ports detected
    Jan 26 07:01:18 Betelgeuse kernel: pata_sis 0000:00:02.5: version 0.5.2
    Jan 26 07:01:18 Betelgeuse kernel: pata_sis 0000:00:02.5: SiS 962/963 MuTIOL IDE UDMA133 controller
    Jan 26 07:01:18 Betelgeuse kernel: scsi host0: pata_sis
    Jan 26 07:01:18 Betelgeuse kernel: scsi host1: pata_sis
    Jan 26 07:01:18 Betelgeuse kernel: ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
    Jan 26 07:01:18 Betelgeuse kernel: ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.1: OHCI PCI host controller
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.1: new USB bus registered, assigned bus number 3
    Jan 26 07:01:18 Betelgeuse kernel: ohci-pci 0000:00:03.1: irq 21, io mem 0xdfffe000
    Jan 26 07:01:18 Betelgeuse kernel: hub 3-0:1.0: USB hub found
    Jan 26 07:01:18 Betelgeuse kernel: hub 3-0:1.0: 3 ports detected
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: ATA-6: TOSHIBA MK1032GAX, AB211A, max UDMA/100
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: 195371568 sectors, multi 16: LBA48
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: limited to UDMA/33 due to 40-wire cable
    Jan 26 07:01:18 Betelgeuse kernel: ata1.00: configured for UDMA/33
    Jan 26 07:01:18 Betelgeuse kernel: scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1032GA 1A PQ: 0 ANSI: 5
    Jan 26 07:01:18 Betelgeuse kernel: usb 1-3: new high-speed USB device number 3 using ehci-pci
    Jan 26 07:01:18 Betelgeuse kernel: ata2.00: ATAPI: Slimtype DVDRW SOSW-852S, PSX3, max UDMA/33
    Jan 26 07:01:18 Betelgeuse kernel: ata2.00: configured for UDMA/33
    Jan 26 07:01:18 Betelgeuse kernel: scsi 1:0:0:0: CD-ROM Slimtype DVDRW SOSW-852S PSX3 PQ: 0 ANSI: 5
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] 195371568 512-byte logical blocks: (100 GB/93.1 GiB)
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 26 07:01:18 Betelgeuse kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
    Jan 26 07:01:18 Betelgeuse kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 26 07:01:18 Betelgeuse kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 26 07:01:18 Betelgeuse kernel: firewire_core 0000:00:06.0: created device fw0: GUID 00030d5325828ec4, S400
    Jan 26 07:01:18 Betelgeuse kernel: tsc: Refined TSC clocksource calibration: 798.238 MHz
    Jan 26 07:01:18 Betelgeuse kernel: sda: sda1 sda2 sda3 < sda5 sda6 >
    Jan 26 07:01:18 Betelgeuse kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 26 07:01:18 Betelgeuse kernel: usb 2-1: new low-speed USB device number 2 using ohci-pci
    Jan 26 07:01:18 Betelgeuse kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jan 26 07:01:18 Betelgeuse kernel: usbcore: registered new interface driver usbhid
    Jan 26 07:01:18 Betelgeuse kernel: usbhid: USB HID core driver
    Jan 26 07:01:18 Betelgeuse kernel: input: Microsoft Microsoft® Comfort Mouse 4500 as /devices/pci0000:00/0000:00:03.0/usb2/2-1/2-1:1.0/0003:045E:076C.0001/input/input5
    Jan 26 07:01:18 Betelgeuse kernel: microsoft 0003:045E:076C.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Microsoft® Comfort Mouse 4500] on usb-0000:00:03.0-1/input0
    Jan 26 07:01:18 Betelgeuse kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Jan 26 07:01:18 Betelgeuse kernel: Switched to clocksource tsc
    Jan 26 07:01:18 Betelgeuse kernel: random: nonblocking pool is initialized
    Jan 26 07:01:18 Betelgeuse systemd[1]: systemd 218 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    Jan 26 07:01:18 Betelgeuse systemd[1]: Detected architecture 'x86-64'.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Set hostname to <Betelgeuse>.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Remote File Systems.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Reached target Remote File Systems.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Encrypted Volumes.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Reached target Encrypted Volumes.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Expecting device dev-sda2.device...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Root Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice Root Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting User and Session Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice User and Session Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Journal Audit Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting udev Control Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on udev Control Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting LVM2 metadata daemon socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on LVM2 metadata daemon socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting System Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice System Slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Slices.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Reached target Slices.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting system-getty.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice system-getty.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting udev Kernel Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on udev Kernel Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Expecting device dev-sda6.device...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Journal Socket (/dev/log).
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Journal Socket (/dev/log).
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Journal Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Journal Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Journal Service...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Huge Pages File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Setup Virtual Console...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started File System Check on Root Device.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Debug File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting udev Coldplug all Devices...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting POSIX Message Queue File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Temporary Directory...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting system-systemd\x2dfsck.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Created slice system-systemd\x2dfsck.slice.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Delayed Shutdown Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Expecting device dev-sda1.device...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Create list of required static device nodes for the current kernel...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Set Up Additional Binary Formats...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Load Kernel Modules.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounted FUSE Control File System.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Apply Kernel Variables...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Configuration File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 117 (systemd-binfmt)
    Jan 26 07:01:18 Betelgeuse systemd[1]: Mounting Arbitrary Executable File Formats File System...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Create list of required static device nodes for the current kernel.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started udev Coldplug all Devices.
    Jan 26 07:01:18 Betelgeuse kernel: EXT4-fs (sda5): re-mounted. Opts: data=ordered
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Starting Load/Save Random Seed...
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Rebuild Dynamic Linker Cache.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started First Boot Wizard.
    Jan 26 07:01:18 Betelgeuse systemd[1]: Started Create System Users.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting Create Static Device Nodes in /dev...
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Rebuild Hardware Database.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Arbitrary Executable File Formats File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Debug File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Huge Pages File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted POSIX Message Queue File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Configuration File System.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Mounted Temporary Directory.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Apply Kernel Variables.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Load/Save Random Seed.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Set Up Additional Binary Formats.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Create Static Device Nodes in /dev.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting udev Kernel Device Manager...
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting Local File Systems (Pre).
    Jan 26 07:01:19 Betelgeuse systemd[1]: Reached target Local File Systems (Pre).
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started Setup Virtual Console.
    Jan 26 07:01:19 Betelgeuse systemd[1]: Started udev Kernel Device Manager.
    Jan 26 07:01:19 Betelgeuse kernel: tsc: Marking TSC unstable due to TSC halts in idle
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: acpi_idle registered with cpuidle
    Jan 26 07:01:19 Betelgeuse kernel: Switched to clocksource acpi_pm
    Jan 26 07:01:19 Betelgeuse kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:03/PNP0C0D:00/input/input6
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Lid Switch [LID]
    Jan 26 07:01:19 Betelgeuse kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Sleep Button [SLPB]
    Jan 26 07:01:19 Betelgeuse kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Power Button [PWRB]
    Jan 26 07:01:19 Betelgeuse kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input9
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Power Button [PWRF]
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: AC Adapter [AC0] (on-line)
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Battery Slot [BAT0] (battery present)
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    Jan 26 07:01:19 Betelgeuse kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 07:01:19 Betelgeuse kernel: acpi device:02: registered as cooling_device1
    Jan 26 07:01:19 Betelgeuse kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:00/LNXVIDEO:00/input/input10
    Jan 26 07:01:19 Betelgeuse kernel: parport_pc 00:04: reported by Plug and Play ACPI
    Jan 26 07:01:19 Betelgeuse kernel: parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE,EPP]
    Jan 26 07:01:19 Betelgeuse kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Jan 26 07:01:19 Betelgeuse kernel: ACPI: Thermal Zone [THRM] (75 C)
    Jan 26 07:01:19 Betelgeuse kernel: sis96x_smbus 0000:00:02.1: SiS96x SMBus base address: 0x0c00
    Jan 26 07:01:19 Betelgeuse kernel: NET: Registered protocol family 23
    Jan 26 07:01:19 Betelgeuse kernel: agpgart-amd64 0000:00:00.0: AGP bridge [1039/0755]
    Jan 26 07:01:19 Betelgeuse kernel: agpgart-amd64 0000:00:00.0: AGP aperture is 128M @ 0xe0000000
    Jan 26 07:01:19 Betelgeuse systemd-journal[106]: Journal started
    Jan 26 07:01:15 Betelgeuse systemd-udevd[143]: starting version 218
    Jan 26 07:01:19 Betelgeuse systemd[1]: Starting Flush Journal to Persistent Storage...
    Jan 26 07:01:20 Betelgeuse systemd[1]: Found device TOSHIBA_MK1032GAX 1.
    Jan 26 07:01:20 Betelgeuse systemd[1]: Starting File System Check on /dev/sda1...
    Jan 26 07:01:20 Betelgeuse systemd[1]: Started Journal Service.
    Jan 26 07:01:20 Betelgeuse kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, chip->init
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, Found chip at base=0x02e
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jan 26 07:01:20 Betelgeuse kernel: nsc_ircc_open(), can't get iobase of 0x2f8
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, Found chip at base=0x02e
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jan 26 07:01:20 Betelgeuse kernel: nsc_ircc_open(), can't get iobase of 0x2f8
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, chip->init
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, Found chip at base=0x02e
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc, driver loaded (Dag Brattli)
    Jan 26 07:01:20 Betelgeuse kernel: nsc-ircc 00:03: disabled
    Jan 26 07:01:20 Betelgeuse kernel: sis900.c: v1.08.10 Apr. 2 2006
    Jan 26 07:01:20 Betelgeuse kernel: mousedev: PS/2 mouse device common for all mice
    Jan 26 07:01:20 Betelgeuse kernel: snd_intel8x0 0000:00:02.7: intel8x0_measure_ac97_clock: measured 52717 usecs (2536 samples)
    Jan 26 07:01:20 Betelgeuse kernel: snd_intel8x0 0000:00:02.7: clocking to 48000
    Jan 26 07:01:20 Betelgeuse kernel: 0000:00:04.0: Realtek RTL8201 PHY transceiver found at address 1.
    Jan 26 07:01:20 Betelgeuse kernel: 0000:00:04.0: Using transceiver found at address 1 as default
    Jan 26 07:01:20 Betelgeuse kernel: eth0: SiS 900 PCI Fast Ethernet at 0x000000000001d800, IRQ 19, 00:03:0d:32:21:af
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: CardBus bridge found [1584:3005]
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: O2: enabling read prefetch/write burst. If you experience problems or performance issues, use the yenta_socket parameter 'o2_speedup=off'
    Jan 26 07:01:20 Betelgeuse kernel: input: PC Speaker as /devices/platform/pcspkr/input/input11
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: ISA IRQ mask 0x0a38, PCI irq 17
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.0: Socket status: 30000820
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.1: CardBus bridge found [1584:3005]
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.1: ISA IRQ mask 0x0a38, PCI irq 17
    Jan 26 07:01:20 Betelgeuse kernel: yenta_cardbus 0000:00:09.1: Socket status: 30000006
    Jan 26 07:01:20 Betelgeuse kernel: MCE: In-kernel MCE decoding enabled.
    Jan 26 07:01:20 Betelgeuse kernel: EDAC MC: Ver: 3.0.0
    Jan 26 07:01:20 Betelgeuse kernel: AMD64 EDAC driver v3.4.0
    Jan 26 07:01:20 Betelgeuse kernel: EDAC amd64: DRAM ECC enabled.
    Jan 26 07:01:20 Betelgeuse kernel: EDAC amd64: K8 revE or earlier detected (node 0).
    Jan

    Ok, thanks. My confusion was because I was unaware that makepkg was simply a bash script.
    I did what you suggested, and copied it to my home directory, edited the create_signature section to add the --verbose option and changed it to output to stdout. I added --verbose, --debug-level guru, and --log-file options to my gpg-agent.conf file. I ran the makepkg process twice, and as expected it asked for a password the first attempt and failed immediately on the second attempt. When it should be loading a cached password, it is bombing out with a "Broken pipe" error.
    Terminal output of build 1:
    [gilmoreja@Betelgeuse pulseaudio-ctl]$ ~/makepkg -fics
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Making package: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:10:51 CST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found pulseaudio-ctl-1.59.tar.xz
    ==> Validating source files with sha256sums...
    pulseaudio-ctl-1.59.tar.xz ... Passed
    ==> Extracting sources...
    -> Extracting pulseaudio-ctl-1.59.tar.xz with bsdtar
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    Setting version
    ==> Entering fakeroot environment...
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Starting package()...
    Installing main script, initd and config...
    install -Dm755 common/pulseaudio-ctl "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/bin/pulseaudio-ctl"
    install -Dm644 common/config.skel "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/pulseaudio-ctl/config.skel"
    Installing manpage...
    install -Dm644 doc/pulseaudio-ctl.1 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    gzip -9 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "pulseaudio-ctl"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Signing package...
    gpg: no running gpg-agent - starting '/usr/bin/gpg-agent'
    gpg: waiting for the agent to come up ... (5s)
    gpg: connection to agent established
    gpg: writing to '/home/gilmoreja/sources/pulseaudio-ctl/pulseaudio-ctl-1.59-2-any.pkg.tar.xz.sig'
    gpg: RSA/SHA256 signature from: "7397C1D5 James A. Gilmore II (Unknown Zombie) <[email protected]>"
    -> Created signature file /home/gilmoreja/sources/pulseaudio-ctl/pulseaudio-ctl-1.59-2-any.pkg.tar.xz.sig.
    ==> Leaving fakeroot environment.
    ==> Finished making: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:10:58 CST 2015)
    ==> Installing package pulseaudio-ctl with pacman -U...
    Password:
    ==> ERROR: Aborted by user! Exiting...
    Terminal output of build 2:
    [gilmoreja@Betelgeuse pulseaudio-ctl]$ ~/makepkg -fics
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Making package: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:11:03 CST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found pulseaudio-ctl-1.59.tar.xz
    ==> Validating source files with sha256sums...
    pulseaudio-ctl-1.59.tar.xz ... Passed
    ==> Extracting sources...
    -> Extracting pulseaudio-ctl-1.59.tar.xz with bsdtar
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    Setting version
    ==> Entering fakeroot environment...
    ==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
    ==> Starting package()...
    Installing main script, initd and config...
    install -Dm755 common/pulseaudio-ctl "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/bin/pulseaudio-ctl"
    install -Dm644 common/config.skel "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/pulseaudio-ctl/config.skel"
    Installing manpage...
    install -Dm644 doc/pulseaudio-ctl.1 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    gzip -9 "/home/gilmoreja/sources/pulseaudio-ctl/pkg/pulseaudio-ctl/usr/share/man/man1/pulseaudio-ctl.1"
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "pulseaudio-ctl"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Signing package...
    gpg: writing to '/home/gilmoreja/sources/pulseaudio-ctl/pulseaudio-ctl-1.59-2-any.pkg.tar.xz.sig'
    gpg: signing failed: Broken pipe
    gpg: signing failed: Broken pipe
    ==> WARNING: Failed to sign package file.
    ==> Leaving fakeroot environment.
    ==> Finished making: pulseaudio-ctl 1.59-2 (Mon Jan 26 15:11:04 CST 2015)
    ==> Installing package pulseaudio-ctl with pacman -U...
    Password:
    ==> ERROR: Aborted by user! Exiting...
    [gilmoreja@Betelgeuse pulseaudio-ctl]$
    gpg-agent.log file for build 1:
    2015-01-26 15:10:52 gpg-agent[10408] listening on socket '/home/gilmoreja/.gnupg/S.gpg-agent'
    2015-01-26 15:10:52 gpg-agent[10409] gpg-agent (GnuPG) 2.1.1 started
    2015-01-26 15:10:53 gpg-agent[10409] handler 0x7f88cc221700 for fd 5 started
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK Pleased to meet you, process 10406
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- RESET
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION ttyname=/dev/pts/0
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION ttytype=xterm
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION display=:0.0
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION xauthority=/home/gilmoreja/.Xauthority
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION lc-ctype=en_US.UTF-8
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION lc-messages=en_US.UTF-8
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION allow-pinentry-notify
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- OPTION agent-awareness=2.1.0
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- AGENT_ID
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> ERR 67109139 Unknown IPC command <GPG Agent>
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- HAVEKEY 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847 316BA63D673F62666176D0B2896B145BDABD9733
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- KEYINFO 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847
    2015-01-26 15:10:53 gpg-agent[10409] DBG: agent_get_cache '2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847' (mode 2) ...
    2015-01-26 15:10:53 gpg-agent[10409] DBG: ... miss
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> S KEYINFO 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847 D - - - P - - -
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- RESET
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- SIGKEY 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- SETKEYDESC Please+enter+the+passphrase+to+unlock+the+OpenPGP+secret+key:%0A%22James+A.+Gilmore+II+(Unknown+Zombie)+<[email protected]>%22%0A2048-bit+RSA+key,+ID+7397C1D5,%0Acreated+2012-06-04.%0A
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- SETHASH 8 BEEA84C75FC026299EBB643F8FB19AEC25D5722936A59DB29DBD95C299B9A3C6
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- PKSIGN
    2015-01-26 15:10:53 gpg-agent[10409] DBG: agent_get_cache '2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847' (mode 2) ...
    2015-01-26 15:10:53 gpg-agent[10409] DBG: ... miss
    2015-01-26 15:10:53 gpg-agent[10409] starting a new PIN Entry
    2015-01-26 15:10:53 gpg-agent[10409] DBG: connection to PIN entry established
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 -> INQUIRE PINENTRY_LAUNCHED 10411
    2015-01-26 15:10:53 gpg-agent[10409] DBG: chan_5 <- END
    2015-01-26 15:10:58 gpg-agent[10409] DBG: agent_put_cache '2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847' (mode 2) requested ttl=0
    2015-01-26 15:10:58 gpg-agent[10409] DBG: skey: (private-key
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (rsa
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (n #00C230CAD4C56184746321E1333BA70F10DFC93A6F6F4CFD4074111FD46E8C9774E9F42ACB30A02074322705FEF1BF3A0D21C9D9A3E26EEB37C25FDBE18B057BDBAA8AAA44C7E109CA1164EA051062C5DA14DEF16CC40DC9A832438E5068C70B580CD22744ED6D98CAE9F4A69817FC11775FF3A06ABE870E12A4ACFB1F49480D602903E2CE85DADAF0CAAA5A5E4264956736BC7CBE71C7D5AC402FE594AE6E04B0ACCFB5EAD9CA26C7EDE89AD69811CDF9735FA1EAB7984FC731913D12F500ACF3ABEED2DFE589DC27EABE117421069A6432A609EF794B69B2CDA1E32DF0CEE11B53D89750624DAEC0D731DB447837CC696B77F427F0BD9FBB2A276D6618D0DF0F#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (e #010001#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (d #1D170513799C01A513C29C033A40ECE358BAC2CBB5AF2152F9F024C60467803ACDDF3B57E3E960E3372E1C5A542992CF2BCC1A93CFD450DD31FB7D2B5CD18DFBDAA0DA1FE297660984B08AD4065FDD86AD50B676D629C097372C6291CE185F2D2A02834A728CD3F235B8E609EBB1E185F1F443882A117E3CB1B98E06E249EE62C1FF7687CCA650976001757D1D210581538F8252F12731B5F75E5B2B0C6C2478059E9D9D2BE8D9F402B139EC3385730D00CB95114C02B0DEC2D4234E8FA610C307487E0F89BC373726317E7CF09DACA54505C01BDA0E9AF1435A0A01008E1C116B104D0EB56B4E4138C87F0E6EF406BFB518F8DD18BD08FAB629FA971B094BDD#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (p #00D95A0315DA1A1177A0C0018EBB94887BA3FA454F17603AA8BB67C59796A1F102011BF676A3290437F03CD1AA9EA5F25CB22138DDDBE1048501F8294204E3AA639CBB1803B1F85E1BF57921B581DBD6201A83B333A1A93A13E372501CB55F5E2DFF991F41C1B3800E1C9DD3E303356FCF2382A7C80D6433780BC6C4E66D371493#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (q #00E4B879C556CED294F545C4E4AF22B1C9F908566D6C9377FD598370AB7FC8672C49FAAB0E1CD6FC3C092A117EC0EFE0D0D1C2B9148C721422A7AE174E1DCB831D490302DE30435B75E822E71A288ED3783DDD8C15152C7ABFB29235D4F8217D3A8FFB6862A1A51A8A70CA74111A9E43A0FFE7E576DBB7FB3E2C6D711929A77515#)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (u #00B2BF39C398644392803548A393068F7F7226F147FB95B9C6CF72C12A626CF698D028694E3FDC1AA217132068906FABC2CA9F7CBB2A47B8B09DF5FDCFD34872C2074F4E2FAC358C0F61C8A32BEFEB9D8862A042BD3DADE6001C39B70D9574FC8B9CCD1DA012959CF2BBD4258A2A339FF99C3200E4CA36F2D623BEE4E6245551EC#)))
    2015-01-26 15:10:58 gpg-agent[10409] DBG: hash: (data
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (flags pkcs1)
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (hash sha256 #BEEA84C75FC026299EBB643F8FB19AEC25D5722936A59DB29DBD95C299B9A3C6#))
    2015-01-26 15:10:58 gpg-agent[10409] DBG: PKCS#1 block type 1 encoded data:+01ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffff003031300d060960864801650304020105000420be \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ea84c75fc026299ebb643f8fb19aec25d5722936a59db29dbd95c299b9a3c6
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign data:+01ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ffffffffffffffffffffff003031300d060960864801650304020105000420be \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ea84c75fc026299ebb643f8fb19aec25d5722936a59db29dbd95c299b9a3c6
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign n:+c230cad4c56184746321e1333ba70f10dfc93a6f6f4cfd4074111fd46e8c9774 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: e9f42acb30a02074322705fef1bf3a0d21c9d9a3e26eeb37c25fdbe18b057bdb \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: aa8aaa44c7e109ca1164ea051062c5da14def16cc40dc9a832438e5068c70b58 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 0cd22744ed6d98cae9f4a69817fc11775ff3a06abe870e12a4acfb1f49480d60 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 2903e2ce85dadaf0caaa5a5e4264956736bc7cbe71c7d5ac402fe594ae6e04b0 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: accfb5ead9ca26c7ede89ad69811cdf9735fa1eab7984fc731913d12f500acf3 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: abeed2dfe589dc27eabe117421069a6432a609ef794b69b2cda1e32df0cee11b \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 53d89750624daec0d731db447837cc696b77f427f0bd9fbb2a276d6618d0df0f
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign e:+010001
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign d:+1d170513799c01a513c29c033a40ece358bac2cbb5af2152f9f024c60467803a \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: cddf3b57e3e960e3372e1c5a542992cf2bcc1a93cfd450dd31fb7d2b5cd18dfb \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: daa0da1fe297660984b08ad4065fdd86ad50b676d629c097372c6291ce185f2d \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 2a02834a728cd3f235b8e609ebb1e185f1f443882a117e3cb1b98e06e249ee62 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: c1ff7687cca650976001757d1d210581538f8252f12731b5f75e5b2b0c6c2478 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 059e9d9d2be8d9f402b139ec3385730d00cb95114c02b0dec2d4234e8fa610c3 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 07487e0f89bc373726317e7cf09daca54505c01bda0e9af1435a0a01008e1c11 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 6b104d0eb56b4e4138c87f0e6ef406bfb518f8dd18bd08fab629fa971b094bdd
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign p:+d95a0315da1a1177a0c0018ebb94887ba3fa454f17603aa8bb67c59796a1f102 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 011bf676a3290437f03cd1aa9ea5f25cb22138dddbe1048501f8294204e3aa63 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 9cbb1803b1f85e1bf57921b581dbd6201a83b333a1a93a13e372501cb55f5e2d \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ff991f41c1b3800e1c9dd3e303356fcf2382a7c80d6433780bc6c4e66d371493
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign q:+e4b879c556ced294f545c4e4af22b1c9f908566d6c9377fd598370ab7fc8672c \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 49faab0e1cd6fc3c092a117ec0efe0d0d1c2b9148c721422a7ae174e1dcb831d \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 490302de30435b75e822e71a288ed3783ddd8c15152c7abfb29235d4f8217d3a \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 8ffb6862a1a51a8a70ca74111a9e43a0ffe7e576dbb7fb3e2c6d711929a77515
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign u:+b2bf39c398644392803548a393068f7f7226f147fb95b9c6cf72c12a626cf698 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: d028694e3fdc1aa217132068906fabc2ca9f7cbb2a47b8b09df5fdcfd34872c2 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 074f4e2fac358c0f61c8a32befeb9d8862a042bd3dade6001c39b70d9574fc8b \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 9ccd1da012959cf2bbd4258a2a339ff99c3200e4ca36f2d623bee4e6245551ec
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign res:+c1dd570db98531a7b86260e0a122377b462c1b827d1f4406091dfcb4b8f6b26f \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 35c098eb70ebd6adc8abfce8d44185c5ac9c503f45037cf1adaf82b07fb63f69 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 13592df46b34381788a618c73db29a3fc0282d6ccfc957d4638a339d83b315bd \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: ff70ab17b658f99ebfaba934f7ef1409e8300b362176458d805faa86bc6150b1 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 389f8148c045c64baf5a794d3f1319b090d7aeba2a11598b250943b51f4d26e5 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: cdfe9c6558694e5ea3268ea343001a160e0276241b330af00f28404b82840961 \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: aabbf16aebbb0d7d2278bcaa028f7b59b2c2d8cedb9afe3a146936af8bf1154f \
    2015-01-26 15:10:58 gpg-agent[10409] DBG: 92bfbedec50777b1be1dd813618f9ed681ea7cebc554ae0e0fa1f52d421ffe52
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rsa_sign => Success
    2015-01-26 15:10:58 gpg-agent[10409] DBG: rslt: (sig-val
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (rsa
    2015-01-26 15:10:58 gpg-agent[10409] DBG: (s #C1DD570DB98531A7B86260E0A122377B462C1B827D1F4406091DFCB4B8F6B26F35C098EB70EBD6ADC8ABFCE8D44185C5AC9C503F45037CF1ADAF82B07FB63F6913592DF46B34381788A618C73DB29A3FC0282D6CCFC957D4638A339D83B315BDFF70AB17B658F99EBFABA934F7EF1409E8300B362176458D805FAA86BC6150B1389F8148C045C64BAF5A794D3F1319B090D7AEBA2A11598B250943B51F4D26E5CDFE9C6558694E5EA3268EA343001A160E0276241B330AF00F28404B82840961AABBF16AEBBB0D7D2278BCAA028F7B59B2C2D8CEDB9AFE3A146936AF8BF1154F92BFBEDEC50777B1BE1DD813618F9ED681EA7CEBC554AE0E0FA1F52D421FFE52#)))
    2015-01-26 15:10:58 gpg-agent[10409] DBG: chan_5 -> [ 44 20 28 37 3a 73 69 67 2d 76 61 6c 28 33 3a 72 ...(277 byte(s) skipped) ]
    2015-01-26 15:10:58 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:10:58 gpg-agent[10409] DBG: chan_5 <- [eof]
    2015-01-26 15:10:58 gpg-agent[10409] handler 0x7f88cc221700 for fd 5 terminated
    gpg-agent.log file for build 2:
    2015-01-26 15:11:04 gpg-agent[10409] handler 0x7f88cc221700 for fd 5 started
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK Pleased to meet you, process 10656
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- RESET
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION ttyname=/dev/pts/0
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION ttytype=xterm
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION display=:0.0
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION xauthority=/home/gilmoreja/.Xauthority
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION lc-ctype=en_US.UTF-8
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION lc-messages=en_US.UTF-8
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION allow-pinentry-notify
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- OPTION agent-awareness=2.1.0
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- AGENT_ID
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> ERR 67109139 Unknown IPC command <GPG Agent>
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- HAVEKEY 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847 316BA63D673F62666176D0B2896B145BDABD9733
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 -> OK
    2015-01-26 15:11:04 gpg-agent[10409] DBG: chan_5 <- KEYINFO 2C25A2BA6CD6852CC0B0AB7BE05BE844C36C8847
    Last edited by gilmoreja (2015-01-26 23:08:59)

  • Console does not comes back to life after screen blanking

    edited post on 2014-07-13:
    This problem has nothing to do with suspend-to-RAM and/or suspend-to-disk (hibernate).
    It is a screen blanking on the console triggered by a timeout in the kernel.
    It can be modified (or disabled) with the setterm command for the current session.
    The issue is still unresolved since the console doesn't comes back to life after hitting a key.
    See post#6 on 2014-07-13 for further details.
    Changed title accordingly.
    original post on 2014-07-09 titled "blank screen on resume after suspend but screen OK after hibernation" follows:
    Dell Inspiron 9400 (aka E1705) with Radeon X1400 (RV515) (confirmed by dmesg: loading R500 microcode)
    - arch x86_64 fully updated up to 07-JULY-2014
    - xf86-video-ati open source driver installed
    - no (additional; ie: explicitly) installed power management packages such as pm-utils
    - no X installed
    The problem:
    • hibernation works fine; ie: by closing (and waiting a few seconds) and re-opening the lid
    • however resume after suspend isn't working; ie: by pressing any key to resume ... it seems the screen never comes back to life
    After suspend activates (and after I hit a key to activate resume) I see no activity at all (blank screen) but ... if I type some commands (eg: timedatectl etc) and then I close the lid to activate the hibernation sequence re-opening the lid (say, a minute later) the machine comes back from hibernation as expected and I can see the commands (and output) I typed when the screen was blank so ... it seems to me either:
    • the backlight state is not restored on the resume sequence (first thought)
    • the machine shuts down the screen after (a 10 minute) timeout but never activates the suspend sequence (and will never activate resume then) (second thought while reading dmesg output)
    This problem was present on this laptop since my first (and subsequent) arch installations so it seems is not kernel/driver specific since I did many pacman --sysupgrades in between while learning arch.
    The testing sequence (with related entries on included dmesg output):
    - typed timedatectl ... showing 23.29.04
    - now allowing idle time for the machine to suspend
    - suspend starts at 23.39 (ie: after 10 minutes) ... tag it as event1#1
    - after 30 seconds resuming with the space key and after a few seconds typing (blindly) timedatectl ... tag it as event1#2
    - after 60 seconds closing the lid allowing time for hibernation ... tag it as event2#1
    - after 30 seconds opening the lid ... tag it as event2#2
    - now I can see the output for timedatectl (typed blindly on event1#2) and it shows 23.40.11
    As you can see in attached dmesg output (at the bottom of this post) there are (to me) no evident entries for event1#2 (resuming after suspend):
    ... event#1-1 ... suspend starts here:
    [Mon Jul 7 23:40:12 2014] perf interrupt took too long (2504 > 2495), lowering kernel.perf_event_max_sample_rate to 50100
    ... event#1-2 ... resume from suspend should show some entries here:
    no entries at all
    And the next entry after entering the suspend sequence is the starting of the hibernation sequence (when closing the lid):
    ... event#2-1 ... hibernation starts here:
    [Mon Jul 7 23:41:30 2014] PM: Syncing filesystems ... done.
    [Mon Jul 7 23:41:30 2014] smpboot: CPU 1 is now offline
    ... event#2-2 ... coming back from hibernation (I think) starts here:
    [Mon Jul 7 23:41:30 2014] ACPI: Low-level resume complete
    [Mon Jul 7 23:41:31 2014] Restarting tasks ... done.
    [Mon Jul 7 23:41:31 2014] video LNXVIDEO:00: Restoring backlight state
    So the machine shuts off the screen (and/or backlight) but never enters suspend mode because "restoring backlight state" appears once and should appear twice in my testing.
    Why isn't working then ?
    Because the signal to enter suspend mode is never sent/received by the OS ?
    Which brings me to a key question: is the acpi package (which it is not installed) (or something like that) required for such signaling ?
    In the following post a user claims a similar problem but he can see some activity (after resuming from suspend) by directing a bright light to the screen so the problem there seems to be the backlight not powered up again: it is not my case, when I did the same I saw no activity at all.
    https://bbs.archlinux.org/viewtopic.php?id=183580
    Following is full dmesg output (edited with a couple of lines inserted to keep track of mentioned events):
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys cpuset
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys cpu
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys cpuacct
    [Mon Jul 7 22:52:56 2014] Linux version 3.15.3-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.0 20140604 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jul 1 07:32:45 CEST 2014
    [Mon Jul 7 22:52:56 2014] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=2918bbe1-e489-42fb-ad36-d70217125c5a rw quiet
    [Mon Jul 7 22:52:56 2014] e820: BIOS-provided physical RAM map:
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x0000000000100000-0x000000007fed33ff] usable
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x000000007fed3400-0x000000007fffffff] reserved
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x00000000f0000000-0x00000000f4006fff] reserved
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x00000000f4008000-0x00000000f400bfff] reserved
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed9ffff] reserved
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee0ffff] reserved
    [Mon Jul 7 22:52:56 2014] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
    [Mon Jul 7 22:52:56 2014] NX (Execute Disable) protection: active
    [Mon Jul 7 22:52:56 2014] SMBIOS 2.4 present.
    [Mon Jul 7 22:52:56 2014] DMI: Dell Inc. MP061 /0YD479, BIOS A10 08/26/2009
    [Mon Jul 7 22:52:56 2014] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [Mon Jul 7 22:52:56 2014] e820: remove [mem 0x000a0000-0x000fffff] usable
    [Mon Jul 7 22:52:56 2014] No AGP bridge found
    [Mon Jul 7 22:52:56 2014] e820: last_pfn = 0x7fed3 max_arch_pfn = 0x400000000
    [Mon Jul 7 22:52:56 2014] MTRR default type: uncachable
    [Mon Jul 7 22:52:56 2014] MTRR fixed ranges enabled:
    [Mon Jul 7 22:52:56 2014] 00000-9FFFF write-back
    [Mon Jul 7 22:52:56 2014] A0000-BFFFF uncachable
    [Mon Jul 7 22:52:56 2014] C0000-CFFFF write-protect
    [Mon Jul 7 22:52:56 2014] D0000-EFFFF uncachable
    [Mon Jul 7 22:52:56 2014] F0000-FFFFF write-protect
    [Mon Jul 7 22:52:56 2014] MTRR variable ranges enabled:
    [Mon Jul 7 22:52:56 2014] 0 base 000000000 mask F80000000 write-back
    [Mon Jul 7 22:52:56 2014] 1 base 07FF00000 mask FFFF00000 uncachable
    [Mon Jul 7 22:52:56 2014] 2 disabled
    [Mon Jul 7 22:52:56 2014] 3 disabled
    [Mon Jul 7 22:52:56 2014] 4 disabled
    [Mon Jul 7 22:52:56 2014] 5 disabled
    [Mon Jul 7 22:52:56 2014] 6 disabled
    [Mon Jul 7 22:52:56 2014] 7 disabled
    [Mon Jul 7 22:52:56 2014] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [Mon Jul 7 22:52:56 2014] Scanning 1 areas for low memory corruption
    [Mon Jul 7 22:52:56 2014] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [Mon Jul 7 22:52:56 2014] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [Mon Jul 7 22:52:56 2014] [mem 0x00000000-0x000fffff] page 4k
    [Mon Jul 7 22:52:56 2014] BRK [0x01b3e000, 0x01b3efff] PGTABLE
    [Mon Jul 7 22:52:56 2014] BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    [Mon Jul 7 22:52:56 2014] BRK [0x01b40000, 0x01b40fff] PGTABLE
    [Mon Jul 7 22:52:56 2014] init_memory_mapping: [mem 0x7fc00000-0x7fdfffff]
    [Mon Jul 7 22:52:56 2014] [mem 0x7fc00000-0x7fdfffff] page 2M
    [Mon Jul 7 22:52:56 2014] BRK [0x01b41000, 0x01b41fff] PGTABLE
    [Mon Jul 7 22:52:56 2014] init_memory_mapping: [mem 0x7c000000-0x7fbfffff]
    [Mon Jul 7 22:52:56 2014] [mem 0x7c000000-0x7fbfffff] page 2M
    [Mon Jul 7 22:52:56 2014] init_memory_mapping: [mem 0x00100000-0x7bffffff]
    [Mon Jul 7 22:52:56 2014] [mem 0x00100000-0x001fffff] page 4k
    [Mon Jul 7 22:52:56 2014] [mem 0x00200000-0x7bffffff] page 2M
    [Mon Jul 7 22:52:56 2014] init_memory_mapping: [mem 0x7fe00000-0x7fed2fff]
    [Mon Jul 7 22:52:56 2014] [mem 0x7fe00000-0x7fed2fff] page 4k
    [Mon Jul 7 22:52:56 2014] BRK [0x01b42000, 0x01b42fff] PGTABLE
    [Mon Jul 7 22:52:56 2014] RAMDISK: [mem 0x3729a000-0x37944fff]
    [Mon Jul 7 22:52:56 2014] ACPI: RSDP 0x00000000000FC1B0 000014 (v00 DELL )
    [Mon Jul 7 22:52:56 2014] ACPI: RSDT 0x000000007FED39CD 000040 (v01 DELL M07 27D9081A ASL 00000061)
    [Mon Jul 7 22:52:56 2014] ACPI: FACP 0x000000007FED4800 000074 (v01 DELL M07 27D9081A ASL 00000061)
    [Mon Jul 7 22:52:56 2014] ACPI: DSDT 0x000000007FED5400 004841 (v01 INT430 SYSFexxx 00001001 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: FACS 0x000000007FEE3C00 000040
    [Mon Jul 7 22:52:56 2014] ACPI: HPET 0x000000007FED4F00 000038 (v01 DELL M07 00000001 ASL 00000061)
    [Mon Jul 7 22:52:56 2014] ACPI: APIC 0x000000007FED5000 000068 (v01 DELL M07 27D9081A ASL 00000047)
    [Mon Jul 7 22:52:56 2014] ACPI: MCFG 0x000000007FED4FC0 00003E (v16 DELL M07 27D9081A ASL 00000061)
    [Mon Jul 7 22:52:56 2014] ACPI: SLIC 0x000000007FED509C 000176 (v01 DELL M07 27D9081A ASL 00000061)
    [Mon Jul 7 22:52:56 2014] ACPI: BOOT 0x000000007FED4BC0 000028 (v01 DELL M07 27D9081A ASL 00000061)
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x000000007FED3A0D 0004DC (v01 PmRef CpuPm 00003000 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: Local APIC address 0xfee00000
    [Mon Jul 7 22:52:56 2014] No NUMA configuration found
    [Mon Jul 7 22:52:56 2014] Faking a node at [mem 0x0000000000000000-0x000000007fed2fff]
    [Mon Jul 7 22:52:56 2014] Initmem setup node 0 [mem 0x00000000-0x7fed2fff]
    [Mon Jul 7 22:52:56 2014] NODE_DATA [mem 0x7fece000-0x7fed2fff]
    [Mon Jul 7 22:52:56 2014] [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007d600000-ffff88007f5fffff] on node 0
    [Mon Jul 7 22:52:56 2014] Zone ranges:
    [Mon Jul 7 22:52:56 2014] DMA [mem 0x00001000-0x00ffffff]
    [Mon Jul 7 22:52:56 2014] DMA32 [mem 0x01000000-0xffffffff]
    [Mon Jul 7 22:52:56 2014] Normal empty
    [Mon Jul 7 22:52:56 2014] Movable zone start for each node
    [Mon Jul 7 22:52:56 2014] Early memory node ranges
    [Mon Jul 7 22:52:56 2014] node 0: [mem 0x00001000-0x0009efff]
    [Mon Jul 7 22:52:56 2014] node 0: [mem 0x00100000-0x7fed2fff]
    [Mon Jul 7 22:52:56 2014] On node 0 totalpages: 523889
    [Mon Jul 7 22:52:56 2014] DMA zone: 64 pages used for memmap
    [Mon Jul 7 22:52:56 2014] DMA zone: 21 pages reserved
    [Mon Jul 7 22:52:56 2014] DMA zone: 3998 pages, LIFO batch:0
    [Mon Jul 7 22:52:56 2014] DMA32 zone: 8124 pages used for memmap
    [Mon Jul 7 22:52:56 2014] DMA32 zone: 519891 pages, LIFO batch:31
    [Mon Jul 7 22:52:56 2014] ACPI: PM-Timer IO Port: 0x1008
    [Mon Jul 7 22:52:56 2014] ACPI: Local APIC address 0xfee00000
    [Mon Jul 7 22:52:56 2014] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [Mon Jul 7 22:52:56 2014] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [Mon Jul 7 22:52:56 2014] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [Mon Jul 7 22:52:56 2014] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [Mon Jul 7 22:52:56 2014] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [Mon Jul 7 22:52:56 2014] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [Mon Jul 7 22:52:56 2014] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [Mon Jul 7 22:52:56 2014] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [Mon Jul 7 22:52:56 2014] ACPI: IRQ0 used by override.
    [Mon Jul 7 22:52:56 2014] ACPI: IRQ2 used by override.
    [Mon Jul 7 22:52:56 2014] ACPI: IRQ9 used by override.
    [Mon Jul 7 22:52:56 2014] Using ACPI (MADT) for SMP configuration information
    [Mon Jul 7 22:52:56 2014] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [Mon Jul 7 22:52:56 2014] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [Mon Jul 7 22:52:56 2014] nr_irqs_gsi: 40
    [Mon Jul 7 22:52:56 2014] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [Mon Jul 7 22:52:56 2014] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [Mon Jul 7 22:52:56 2014] e820: [mem 0x80000000-0xefffffff] available for PCI devices
    [Mon Jul 7 22:52:56 2014] Booting paravirtualized kernel on bare hardware
    [Mon Jul 7 22:52:56 2014] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:2 nr_node_ids:1
    [Mon Jul 7 22:52:56 2014] PERCPU: Embedded 29 pages/cpu @ffff88007fc00000 s87168 r8192 d23424 u1048576
    [Mon Jul 7 22:52:56 2014] pcpu-alloc: s87168 r8192 d23424 u1048576 alloc=1*2097152
    [Mon Jul 7 22:52:56 2014] pcpu-alloc: [0] 0 1
    [Mon Jul 7 22:52:56 2014] Built 1 zonelists in Node order, mobility grouping on. Total pages: 515680
    [Mon Jul 7 22:52:56 2014] Policy zone: DMA32
    [Mon Jul 7 22:52:56 2014] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=2918bbe1-e489-42fb-ad36-d70217125c5a rw quiet
    [Mon Jul 7 22:52:56 2014] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [Mon Jul 7 22:52:56 2014] Checking aperture...
    [Mon Jul 7 22:52:56 2014] No AGP bridge found
    [Mon Jul 7 22:52:56 2014] Calgary: detecting Calgary via BIOS EBDA area
    [Mon Jul 7 22:52:56 2014] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [Mon Jul 7 22:52:56 2014] Memory: 2043836K/2095556K available (5224K kernel code, 886K rwdata, 1644K rodata, 1116K init, 1284K bss, 51720K reserved)
    [Mon Jul 7 22:52:56 2014] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [Mon Jul 7 22:52:56 2014] Preemptible hierarchical RCU implementation.
    [Mon Jul 7 22:52:56 2014] RCU dyntick-idle grace-period acceleration is enabled.
    [Mon Jul 7 22:52:56 2014] Dump stacks of tasks blocking RCU-preempt GP.
    [Mon Jul 7 22:52:56 2014] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=2.
    [Mon Jul 7 22:52:56 2014] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [Mon Jul 7 22:52:56 2014] NR_IRQS:8448 nr_irqs:512 16
    [Mon Jul 7 22:52:56 2014] Console: colour dummy device 80x25
    [Mon Jul 7 22:52:56 2014] console [tty0] enabled
    [Mon Jul 7 22:52:56 2014] allocated 8388608 bytes of page_cgroup
    [Mon Jul 7 22:52:56 2014] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [Mon Jul 7 22:52:56 2014] hpet clockevent registered
    [Mon Jul 7 22:52:56 2014] tsc: Fast TSC calibration using PIT
    [Mon Jul 7 22:52:56 2014] tsc: Detected 1997.384 MHz processor
    [Mon Jul 7 22:52:56 2014] Calibrating delay loop (skipped), value calculated using timer frequency.. 3996.21 BogoMIPS (lpj=6657946)
    [Mon Jul 7 22:52:56 2014] pid_max: default: 32768 minimum: 301
    [Mon Jul 7 22:52:56 2014] ACPI: Core revision 20140214
    [Mon Jul 7 22:52:56 2014] ACPI: All ACPI Tables successfully acquired
    [Mon Jul 7 22:52:56 2014] Security Framework initialized
    [Mon Jul 7 22:52:56 2014] Yama: becoming mindful.
    [Mon Jul 7 22:52:56 2014] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [Mon Jul 7 22:52:56 2014] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [Mon Jul 7 22:52:56 2014] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
    [Mon Jul 7 22:52:56 2014] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys memory
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys devices
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys freezer
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys net_cls
    [Mon Jul 7 22:52:56 2014] Initializing cgroup subsys blkio
    [Mon Jul 7 22:52:56 2014] CPU: Physical Processor ID: 0
    [Mon Jul 7 22:52:56 2014] CPU: Processor Core ID: 0
    [Mon Jul 7 22:52:56 2014] mce: CPU supports 6 MCE banks
    [Mon Jul 7 22:52:56 2014] CPU0: Thermal monitoring enabled (TM2)
    [Mon Jul 7 22:52:56 2014] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
    tlb_flushall_shift: -1
    [Mon Jul 7 22:52:56 2014] Freeing SMP alternatives memory: 20K (ffffffff819f6000 - ffffffff819fb000)
    [Mon Jul 7 22:52:56 2014] ftrace: allocating 20226 entries in 80 pages
    [Mon Jul 7 22:52:56 2014] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [Mon Jul 7 22:52:56 2014] smpboot: CPU0: Intel(R) Core(TM)2 CPU T7200 @ 2.00GHz (fam: 06, model: 0f, stepping: 06)
    [Mon Jul 7 22:52:56 2014] Performance Events: PEBS fmt0-, 4-deep LBR, Core2 events, Intel PMU driver.
    [Mon Jul 7 22:52:56 2014] perf_event_intel: PEBS disabled due to CPU errata
    [Mon Jul 7 22:52:56 2014] ... version: 2
    [Mon Jul 7 22:52:56 2014] ... bit width: 40
    [Mon Jul 7 22:52:56 2014] ... generic registers: 2
    [Mon Jul 7 22:52:56 2014] ... value mask: 000000ffffffffff
    [Mon Jul 7 22:52:56 2014] ... max period: 000000007fffffff
    [Mon Jul 7 22:52:56 2014] ... fixed-purpose events: 3
    [Mon Jul 7 22:52:56 2014] ... event mask: 0000000700000003
    [Mon Jul 7 22:52:56 2014] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [Mon Jul 7 22:52:56 2014] x86: Booting SMP configuration:
    [Mon Jul 7 22:52:56 2014] .... node #0, CPUs: #1
    [Mon Jul 7 22:52:56 2014] TSC synchronization [CPU#0 -> CPU#1]:
    [Mon Jul 7 22:52:56 2014] Measured 3679205328 cycles TSC warp between CPUs, turning off TSC clock.
    [Mon Jul 7 22:52:56 2014] tsc: Marking TSC unstable due to check_tsc_sync_source failed
    [Mon Jul 7 22:52:56 2014] x86: Booted up 1 node, 2 CPUs
    [Mon Jul 7 22:52:56 2014] smpboot: Total of 2 processors activated (7992.43 BogoMIPS)
    [Mon Jul 7 22:52:56 2014] devtmpfs: initialized
    [Mon Jul 7 22:52:56 2014] pinctrl core: initialized pinctrl subsystem
    [Mon Jul 7 22:52:56 2014] RTC time: 1:53:00, date: 07/08/14
    [Mon Jul 7 22:52:56 2014] NET: Registered protocol family 16
    [Mon Jul 7 22:52:56 2014] cpuidle: using governor ladder
    [Mon Jul 7 22:52:56 2014] cpuidle: using governor menu
    [Mon Jul 7 22:52:56 2014] ACPI: bus type PCI registered
    [Mon Jul 7 22:52:56 2014] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [Mon Jul 7 22:52:56 2014] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [Mon Jul 7 22:52:56 2014] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [Mon Jul 7 22:52:56 2014] PCI: Using configuration type 1 for base access
    [Mon Jul 7 22:52:56 2014] dmi type 0xB1 record - unknown flag
    [Mon Jul 7 22:52:56 2014] mtrr: your CPUs had inconsistent variable MTRR settings
    [Mon Jul 7 22:52:56 2014] mtrr: probably your BIOS does not setup all CPUs.
    [Mon Jul 7 22:52:56 2014] mtrr: corrected configuration.
    [Mon Jul 7 22:52:56 2014] ACPI: Added _OSI(Module Device)
    [Mon Jul 7 22:52:56 2014] ACPI: Added _OSI(Processor Device)
    [Mon Jul 7 22:52:56 2014] ACPI: Added _OSI(3.0 _SCP Extensions)
    [Mon Jul 7 22:52:56 2014] ACPI: Added _OSI(Processor Aggregator Device)
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x000000007FED4134 000244 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: Dynamic OEM Table Load:
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x0000000000000000 000244 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x000000007FED3EE9 0001C6 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: Dynamic OEM Table Load:
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x0000000000000000 0001C6 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x000000007FED4378 0000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: Dynamic OEM Table Load:
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x0000000000000000 0000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x000000007FED40AF 000085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: Dynamic OEM Table Load:
    [Mon Jul 7 22:52:56 2014] ACPI: SSDT 0x0000000000000000 000085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624)
    [Mon Jul 7 22:52:56 2014] ACPI: Interpreter enabled
    [Mon Jul 7 22:52:56 2014] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140214/hwxface-580)
    [Mon Jul 7 22:52:56 2014] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140214/hwxface-580)
    [Mon Jul 7 22:52:56 2014] ACPI: (supports S0 S3 S4 S5)
    [Mon Jul 7 22:52:56 2014] ACPI: Using IOAPIC for interrupt routing
    [Mon Jul 7 22:52:56 2014] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [Mon Jul 7 22:52:56 2014] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [Mon Jul 7 22:52:56 2014] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    [Mon Jul 7 22:52:56 2014] acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [Mon Jul 7 22:52:56 2014] PCI host bridge to bus 0000:00
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [bus 00-ff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0x80000000-0xefffffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0xf4007000-0xf4007fff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0xf400c000-0xfebfffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfecfffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0xfed00400-0xfed1ffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: root bus resource [mem 0xfee10000-0xffafffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: [8086:27a1] type 01 class 0x060400
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1b.0: reg 0x10: [mem 0xefffc000-0xefffffff 64bit]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: [8086:27d6] type 01 class 0x060400
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.0: reg 0x20: [io 0xbf80-0xbf9f]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.1: reg 0x20: [io 0xbf60-0xbf7f]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.2: reg 0x20: [io 0xbf40-0xbf5f]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.3: reg 0x20: [io 0xbf20-0xbf3f]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.3: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.7: reg 0x10: [mem 0xffa80000-0xffa803ff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.0: can't claim BAR 13 [io 0x1000-0x107f]: address conflict with ACPI CPU throttle [io 0x1010-0x1015]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.0: quirk: [io 0x1080-0x10bf] claimed by ICH6 GPIO
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0900 (mask 007f)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0c80 (mask 003f)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: [8086:27c4] type 00 class 0x010180
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: reg 0x10: [io 0x01f0-0x01f7]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: reg 0x14: [io 0x03f4-0x03f7]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: reg 0x18: [io 0x0170-0x0177]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: reg 0x1c: [io 0x0374-0x0377]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: reg 0x20: [io 0xbfa0-0xbfaf]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: legacy IDE quirk: reg 0x14: [io 0x03f6]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: legacy IDE quirk: reg 0x1c: [io 0x0376]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.2: PME# supported from D3hot
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.3: reg 0x20: [io 0x10c0-0x10df]
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: [1002:7145] type 00 class 0x030000
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: reg 0x14: [io 0xee00-0xeeff]
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: reg 0x18: [mem 0xefdf0000-0xefdfffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: reg 0x30: [mem 0xefe00000-0xefe1ffff pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: supports D1 D2
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: PCI bridge to [bus 01]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: bridge window [mem 0xefd00000-0xefefffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: PCI bridge to [bus 0b]
    [Mon Jul 7 22:52:56 2014] acpiphp: Slot [1] registered
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: PCI bridge to [bus 0c-0d]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: bridge window [mem 0xefa00000-0xefcfffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:03:00.0: [14e4:170c] type 00 class 0x020000
    [Mon Jul 7 22:52:56 2014] pci 0000:03:00.0: reg 0x10: [mem 0xef9fe000-0xef9fffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:03:00.0: supports D1 D2
    [Mon Jul 7 22:52:56 2014] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0xef900000-0xef9fffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xefffffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0xf4007000-0xf4007fff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0xf400c000-0xfebfffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0xfec10000-0xfecfffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0xfed00400-0xfed1ffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0xfee10000-0xffafffff] (subtractive decode)
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 11) *4
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKB] (IRQs *5 7)
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 11) *0, disabled.
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 11) *0, disabled.
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
    [Mon Jul 7 22:52:56 2014] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
    [Mon Jul 7 22:52:56 2014] ACPI: Enabled 3 GPEs in block 00 to 1F
    [Mon Jul 7 22:52:56 2014] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [Mon Jul 7 22:52:56 2014] vgaarb: loaded
    [Mon Jul 7 22:52:56 2014] vgaarb: bridge control possible 0000:01:00.0
    [Mon Jul 7 22:52:56 2014] PCI: Using ACPI for IRQ routing
    [Mon Jul 7 22:52:56 2014] PCI: pci_cache_line_size set to 64 bytes
    [Mon Jul 7 22:52:56 2014] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
    [Mon Jul 7 22:52:56 2014] e820: reserve RAM buffer [mem 0x7fed3400-0x7fffffff]
    [Mon Jul 7 22:52:56 2014] NetLabel: Initializing
    [Mon Jul 7 22:52:56 2014] NetLabel: domain hash size = 128
    [Mon Jul 7 22:52:56 2014] NetLabel: protocols = UNLABELED CIPSOv4
    [Mon Jul 7 22:52:56 2014] NetLabel: unlabeled traffic allowed by default
    [Mon Jul 7 22:52:56 2014] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [Mon Jul 7 22:52:56 2014] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [Mon Jul 7 22:52:56 2014] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [Mon Jul 7 22:52:56 2014] Switched to clocksource hpet
    [Mon Jul 7 22:52:56 2014] pnp: PnP ACPI init
    [Mon Jul 7 22:52:56 2014] ACPI: bus type PNP registered
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0x00000000-0x0009fbff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0x0009fc00-0x0009ffff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0x000c0000-0x000cffff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0x00100000-0x7fed33ff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0x7fed3400-0x7fefffff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0x7ff00000-0x7fffffff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xffb00000-0xffffffff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xfec00000-0xfec0ffff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xfed20000-0xfed9ffff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xffa80000-0xffa83fff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xf4000000-0xf4003fff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xf4004000-0xf4004fff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xf4005000-0xf4005fff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xf4006000-0xf4006fff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xf4008000-0xf400bfff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:01: disabling [io 0x1000-0x1005] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [Mon Jul 7 22:52:56 2014] pnp 00:01: disabling [io 0x1008-0x100f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [Mon Jul 7 22:52:56 2014] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:02: disabling [io 0x1006-0x1007] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [Mon Jul 7 22:52:56 2014] pnp 00:02: disabling [io 0x100a-0x1059] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [Mon Jul 7 22:52:56 2014] pnp 00:02: disabling [io 0x1060-0x107f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [Mon Jul 7 22:52:56 2014] pnp 00:02: disabling [io 0x1010-0x102f] because it overlaps 0000:00:1f.0 BAR 13 [io 0x1000-0x107f]
    [Mon Jul 7 22:52:56 2014] system 00:02: [io 0xf400-0xf4fe] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:02: [io 0x1080-0x10bf] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:02: [io 0x10c0-0x10df] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:02: [io 0x0809] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:02: Plug and Play ACPI device, IDs PNP0c01 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [Mon Jul 7 22:52:56 2014] system 00:07: [io 0x0c80-0x0cff] could not be reserved
    [Mon Jul 7 22:52:56 2014] system 00:07: [io 0x0910-0x091f] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:07: [io 0x0920-0x092f] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:07: [io 0x0cb0-0x0cbf] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:07: [io 0x0930-0x097f] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:08: [dma 4]
    [Mon Jul 7 22:52:56 2014] pnp 00:08: Plug and Play ACPI device, IDs PNP0200 (active)
    [Mon Jul 7 22:52:56 2014] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
    [Mon Jul 7 22:52:56 2014] system 00:0a: [mem 0xfed00000-0xfed003ff] has been reserved
    [Mon Jul 7 22:52:56 2014] system 00:0a: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [Mon Jul 7 22:52:56 2014] pnp: PnP ACPI: found 11 devices
    [Mon Jul 7 22:52:56 2014] ACPI: bus type PNP unregistered
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 0b] add_size 1000
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0b] add_size 200000
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1f.0: BAR 13: [io 0x1000-0x107f] has bogus alignment
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: BAR 14: assigned [mem 0x80000000-0x801fffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: PCI bridge to [bus 01]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: bridge window [mem 0xefd00000-0xefefffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: PCI bridge to [bus 0b]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: bridge window [mem 0x80000000-0x801fffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.0: bridge window [mem 0x80200000-0x803fffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: PCI bridge to [bus 0c-0d]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: bridge window [mem 0xefa00000-0xefcfffff]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1c.3: bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: PCI bridge to [bus 03]
    [Mon Jul 7 22:52:56 2014] pci 0000:00:1e.0: bridge window [mem 0xef900000-0xef9fffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 8 [mem 0x80000000-0xefffffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 9 [mem 0xf4007000-0xf4007fff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 10 [mem 0xf400c000-0xfebfffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 11 [mem 0xfec10000-0xfecfffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 12 [mem 0xfed00400-0xfed1ffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:00: resource 13 [mem 0xfee10000-0xffafffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:01: resource 1 [mem 0xefd00000-0xefefffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:0b: resource 0 [io 0x2000-0x2fff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:0b: resource 1 [mem 0x80000000-0x801fffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:0b: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:0c: resource 0 [io 0xd000-0xdfff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:0c: resource 1 [mem 0xefa00000-0xefcfffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:0c: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 1 [mem 0xef900000-0xef9fffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 8 [mem 0x80000000-0xefffffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 9 [mem 0xf4007000-0xf4007fff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 10 [mem 0xf400c000-0xfebfffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 11 [mem 0xfec10000-0xfecfffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 12 [mem 0xfed00400-0xfed1ffff]
    [Mon Jul 7 22:52:56 2014] pci_bus 0000:03: resource 13 [mem 0xfee10000-0xffafffff]
    [Mon Jul 7 22:52:56 2014] NET: Registered protocol family 2
    [Mon Jul 7 22:52:56 2014] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    [Mon Jul 7 22:52:56 2014] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
    [Mon Jul 7 22:52:56 2014] TCP: Hash tables configured (established 16384 bind 16384)
    [Mon Jul 7 22:52:56 2014] TCP: reno registered
    [Mon Jul 7 22:52:56 2014] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [Mon Jul 7 22:52:56 2014] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [Mon Jul 7 22:52:56 2014] NET: Registered protocol family 1
    [Mon Jul 7 22:52:56 2014] pci 0000:01:00.0: Boot video device
    [Mon Jul 7 22:52:56 2014] PCI: CLS 64 bytes, default 64
    [Mon Jul 7 22:52:56 2014] Unpacking initramfs...
    [Mon Jul 7 22:52:56 2014] Freeing initrd memory: 6828K (ffff88003729a000 - ffff880037945000)
    [Mon Jul 7 22:52:56 2014] Simple Boot Flag at 0x79 set to 0x1
    [Mon Jul 7 22:52:56 2014] Scanning for low memory corruption every 60 seconds
    [Mon Jul 7 22:52:56 2014] futex hash table entries: 512 (order: 3, 32768 bytes)
    [Mon Jul 7 22:52:56 2014] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [Mon Jul 7 22:52:56 2014] zbud: loaded
    [Mon Jul 7 22:52:56 2014] VFS: Disk quotas dquot_6.5.2
    [Mon Jul 7 22:52:56 2014] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [Mon Jul 7 22:52:56 2014] msgmni has been set to 4005
    [Mon Jul 7 22:52:56 2014] Key type big_key registered
    [Mon Jul 7 22:52:56 2014] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [Mon Jul 7 22:52:56 2014] io scheduler noop registered
    [Mon Jul 7 22:52:56 2014] io scheduler deadline registered
    [Mon Jul 7 22:52:56 2014] io scheduler cfq registered (default)
    [Mon Jul 7 22:52:56 2014] pcieport 0000:00:01.0: device [8086:27a1] has invalid IRQ; check vendor BIOS
    [Mon Jul 7 22:52:56 2014] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [Mon Jul 7 22:52:56 2014] pcieport 0000:00:1c.0: device [8086:27d0] has invalid IRQ; check vendor BIOS
    [Mon Jul 7 22:52:56 2014] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [Mon Jul 7 22:52:56 2014] pcieport 0000:00:1c.3: device [8086:27d6] has invalid IRQ; check vendor BIOS
    [Mon Jul 7 22:52:56 2014] pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
    [Mon Jul 7 22:52:56 2014] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [Mon Jul 7 22:52:56 2014] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [Mon Jul 7 22:52:56 2014] vesafb: mode is 1600x1200x32, linelength=6400, pages=0
    [Mon Jul 7 22:52:56 2014] vesafb: scrolling: redraw
    [Mon Jul 7 22:52:56 2014] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [Mon Jul 7 22:52:56 2014] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004400000, using 7552k, total 7552k
    [Mon Jul 7 22:52:56 2014] Console: switching to colour frame buffer device 200x75
    [Mon Jul 7 22:52:56 2014] fb0: VESA VGA frame buffer device
    [Mon Jul 7 22:52:56 2014] intel_idle: does not run on family 6 model 15
    [Mon Jul 7 22:52:56 2014] GHES: HEST is not enabled!
    [Mon Jul 7 22:52:56 2014] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [Mon Jul 7 22:52:56 2014] Linux agpgart interface v0.103
    [Mon Jul 7 22:52:56 2014] rtc_cmos 00:05: RTC can wake from S4
    [Mon Jul 7 22:52:56 2014] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [Mon Jul 7 22:52:56 2014] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [Mon Jul 7 22:52:56 2014] ledtrig-cpu: registered to indicate activity on CPUs
    [Mon Jul 7 22:52:56 2014] TCP: cubic registered
    [Mon Jul 7 22:52:56 2014] NET: Registered protocol family 10
    [Mon Jul 7 22:52:56 2014] NET: Registered protocol family 17
    [Mon Jul 7 22:52:56 2014] registered taskstats version 1
    [Mon Jul 7 22:52:56 2014] Magic number: 6:49:862
    [Mon Jul 7 22:52:56 2014] rtc_cmos 00:05: setting system clock to 2014-07-08 01:53:00 UTC (1404784380)
    [Mon Jul 7 22:52:56 2014] PM: Hibernation image not present or could not be loaded.
    [Mon Jul 7 22:52:56 2014] Freeing unused kernel memory: 1116K (ffffffff818df000 - ffffffff819f6000)
    [Mon Jul 7 22:52:56 2014] Write protecting the kernel read-only data: 8192k
    [Mon Jul 7 22:52:56 2014] Freeing unused kernel memory: 908K (ffff88000151d000 - ffff880001600000)
    [Mon Jul 7 22:52:56 2014] Freeing unused kernel memory: 404K (ffff88000179b000 - ffff880001800000)
    [Mon Jul 7 22:52:56 2014] random: systemd urandom read with 1 bits of entropy available
    [Mon Jul 7 22:52:56 2014] systemd[1]: Cannot add dependency job for unit local-fs.target, ignoring: Unit local-fs.target failed to load: No such file or directory.
    [Mon Jul 7 22:52:56 2014] systemd[1]: Cannot add dependency job for unit swap.target, ignoring: Unit swap.target failed to load: No such file or directory.
    [Mon Jul 7 22:52:56 2014] systemd[1]: Cannot add dependency job for unit systemd-journald-dev-log.socket, ignoring: Unit systemd-journald-dev-log.socket failed to load: No such file or directory.
    [Mon Jul 7 22:52:56 2014] systemd[1]: Cannot add dependency job for unit timers.target, ignoring: Unit timers.target failed to load: No such file or directory.
    [Mon Jul 7 22:52:56 2014] systemd[1]: Cannot add dependency job for unit paths.target, ignoring: Unit paths.target failed to load: No such file or directory.
    [Mon Jul 7 22:52:56 2014] systemd[1]: Cannot add dependency job for unit slices.target, ignoring: Unit slices.target failed to load: No such file or directory.
    [Mon Jul 7 22:52:56 2014] systemd-udevd[50]: starting version 214
    [Mon Jul 7 22:52:56 2014] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [Mon Jul 7 22:52:56 2014] serio: i8042 KBD port at 0x60,0x64 irq 1
    [Mon Jul 7 22:52:56 2014] serio: i8042 AUX port at 0x60,0x64 irq 12
    [Mon Jul 7 22:52:56 2014] [drm] Initialized drm 1.1.0 20060810
    [Mon Jul 7 22:52:56 2014] ACPI: bus type USB registered
    [Mon Jul 7 22:52:56 2014] usbcore: registered new interface driver usbfs
    [Mon Jul 7 22:52:56 2014] usbcore: registered new interface driver hub
    [Mon Jul 7 22:52:56 2014] usbcore: registered new device driver usb
    [Mon Jul 7 22:52:56 2014] SCSI subsystem initialized
    [Mon Jul 7 22:52:56 2014] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [Mon Jul 7 22:52:56 2014] uhci_hcd: USB Universal Host Controller Interface driver
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.0: detected 2 ports
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.0: irq 20, io base 0x0000bf80
    [Mon Jul 7 22:52:56 2014] hub 1-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 1-0:1.0: 2 ports detected
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.1: detected 2 ports
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.1: irq 21, io base 0x0000bf60
    [Mon Jul 7 22:52:56 2014] ehci-pci: EHCI PCI platform driver
    [Mon Jul 7 22:52:56 2014] hub 2-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 2-0:1.0: 2 ports detected
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.2: detected 2 ports
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.2: irq 22, io base 0x0000bf40
    [Mon Jul 7 22:52:56 2014] hub 3-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 3-0:1.0: 2 ports detected
    [Mon Jul 7 22:52:56 2014] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [Mon Jul 7 22:52:56 2014] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 4
    [Mon Jul 7 22:52:56 2014] ehci-pci 0000:00:1d.7: debug port 1
    [Mon Jul 7 22:52:56 2014] [drm] radeon kernel modesetting enabled.
    [Mon Jul 7 22:52:56 2014] checking generic (d0000000 760000) vs hw (d0000000 10000000)
    [Mon Jul 7 22:52:56 2014] fb: switching to radeondrmfb from VESA VGA
    [Mon Jul 7 22:52:56 2014] Console: switching to colour dummy device 80x25
    [Mon Jul 7 22:52:56 2014] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [Mon Jul 7 22:52:56 2014] ehci-pci 0000:00:1d.7: irq 20, io mem 0xffa80000
    [Mon Jul 7 22:52:56 2014] [drm] initializing kernel modesetting (RV515 0x1002:0x7145 0x1028:0x2002).
    [Mon Jul 7 22:52:56 2014] [drm] register mmio base: 0xEFDF0000
    [Mon Jul 7 22:52:56 2014] [drm] register mmio size: 65536
    [Mon Jul 7 22:52:56 2014] ATOM BIOS: ATI
    [Mon Jul 7 22:52:56 2014] [drm] Generation 2 PCI interface, using max accessible memory
    [Mon Jul 7 22:52:56 2014] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (128M used)
    [Mon Jul 7 22:52:56 2014] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
    [Mon Jul 7 22:52:56 2014] [drm] Detected VRAM RAM=256M, BAR=256M
    [Mon Jul 7 22:52:56 2014] [drm] RAM width 64bits DDR
    [Mon Jul 7 22:52:56 2014] libata version 3.00 loaded.
    [Mon Jul 7 22:52:56 2014] [TTM] Zone kernel: Available graphics memory: 1026556 kiB
    [Mon Jul 7 22:52:56 2014] [TTM] Initializing pool allocator
    [Mon Jul 7 22:52:56 2014] [TTM] Initializing DMA pool allocator
    [Mon Jul 7 22:52:56 2014] [drm] radeon: 128M of VRAM memory ready
    [Mon Jul 7 22:52:56 2014] [drm] radeon: 512M of GTT memory ready.
    [Mon Jul 7 22:52:56 2014] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [Mon Jul 7 22:52:56 2014] [drm] radeon: power management initialized
    [Mon Jul 7 22:52:56 2014] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [Mon Jul 7 22:52:56 2014] hub 4-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 4-0:1.0: 8 ports detected
    [Mon Jul 7 22:52:56 2014] [drm] radeon: 1 quad pipes, 1 z pipes initialized.
    [Mon Jul 7 22:52:56 2014] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [Mon Jul 7 22:52:56 2014] radeon 0000:01:00.0: WB enabled
    [Mon Jul 7 22:52:56 2014] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000000 and cpu addr 0xffff8800370f4000
    [Mon Jul 7 22:52:56 2014] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [Mon Jul 7 22:52:56 2014] [drm] Driver supports precise vblank timestamp query.
    [Mon Jul 7 22:52:56 2014] [drm] radeon: irq initialized.
    [Mon Jul 7 22:52:56 2014] [drm] Loading R500 Microcode
    [Mon Jul 7 22:52:56 2014] [drm] radeon: ring at 0x0000000010001000
    [Mon Jul 7 22:52:56 2014] [drm] ring test succeeded in 10 usecs
    [Mon Jul 7 22:52:56 2014] [drm] ib test succeeded in 0 usecs
    [Mon Jul 7 22:52:56 2014] [drm] radeon atom DIG backlight initialized
    [Mon Jul 7 22:52:56 2014] [drm] Radeon Display Connectors
    [Mon Jul 7 22:52:56 2014] [drm] Connector 0:
    [Mon Jul 7 22:52:56 2014] [drm] VGA-1
    [Mon Jul 7 22:52:56 2014] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    [Mon Jul 7 22:52:56 2014] [drm] Encoders:
    [Mon Jul 7 22:52:56 2014] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [Mon Jul 7 22:52:56 2014] [drm] Connector 1:
    [Mon Jul 7 22:52:56 2014] [drm] LVDS-1
    [Mon Jul 7 22:52:56 2014] [drm] DDC: 0x7e30 0x7e30 0x7e34 0x7e34 0x7e38 0x7e38 0x7e3c 0x7e3c
    [Mon Jul 7 22:52:56 2014] [drm] Encoders:
    [Mon Jul 7 22:52:56 2014] [drm] LCD1: INTERNAL_LVTM1
    [Mon Jul 7 22:52:56 2014] [drm] Connector 2:
    [Mon Jul 7 22:52:56 2014] [drm] SVIDEO-1
    [Mon Jul 7 22:52:56 2014] [drm] Encoders:
    [Mon Jul 7 22:52:56 2014] [drm] TV1: INTERNAL_KLDSCP_DAC2
    [Mon Jul 7 22:52:56 2014] [drm] Connector 3:
    [Mon Jul 7 22:52:56 2014] [drm] DVI-I-1
    [Mon Jul 7 22:52:56 2014] [drm] HPD1
    [Mon Jul 7 22:52:56 2014] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
    [Mon Jul 7 22:52:56 2014] [drm] Encoders:
    [Mon Jul 7 22:52:56 2014] [drm] CRT2: INTERNAL_KLDSCP_DAC2
    [Mon Jul 7 22:52:56 2014] [drm] DFP1: INTERNAL_KLDSCP_TMDS1
    [Mon Jul 7 22:52:56 2014] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [Mon Jul 7 22:52:56 2014] hub 1-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 1-0:1.0: 2 ports detected
    [Mon Jul 7 22:52:56 2014] hub 2-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 2-0:1.0: 2 ports detected
    [Mon Jul 7 22:52:56 2014] hub 3-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 3-0:1.0: 2 ports detected
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.3: detected 2 ports
    [Mon Jul 7 22:52:56 2014] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000bf20
    [Mon Jul 7 22:52:56 2014] hub 5-0:1.0: USB hub found
    [Mon Jul 7 22:52:56 2014] hub 5-0:1.0: 2 ports detected
    [Mon Jul 7 22:52:56 2014] ata_piix 0000:00:1f.2: version 2.13
    [Mon Jul 7 22:52:56 2014] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ]
    [Mon Jul 7 22:52:56 2014] scsi0 : ata_piix
    [Mon Jul 7 22:52:56 2014] scsi1 : ata_piix
    [Mon Jul 7 22:52:56 2014] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xbfa0 irq 14
    [Mon Jul 7 22:52:56 2014] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xbfa8 irq 15
    [Mon Jul 7 22:52:56 2014] ata2.00: ATAPI: CONY`DFDk/mRG DWmQe8A ` ` ` ` ` ` ` ` `, EDC2` `, max UDMA/33
    [Mon Jul 7 22:52:56 2014] ata1.00: ATA-7: SSDSA2SH032G1GN INTEL, 045C8860, max UDMA/133
    [Mon Jul 7 22:52:56 2014] ata1.00: 62500000 sectors, multi 8: LBA48 NCQ (depth 0/31)
    [Mon Jul 7 22:52:56 2014] ata1.00: configured for UDMA/133
    [Mon Jul 7 22:52:56 2014] scsi 0:0:0:0: Direct-Access ATA SSDSA2SH032G1GN 045C PQ: 0 ANSI: 5
    [Mon Jul 7 22:52:56 2014] ata2.00: configured for UDMA/33
    [Mon Jul 7 22:52:57 2014] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [Mon Jul 7 22:52:57 2014] hub 4-1:1.0: USB hub found
    [Mon Jul 7 22:52:57 2014] hub 4-1:1.0: 4 ports detected
    [Mon Jul 7 22:52:57 2014] [drm] fb mappable at 0xD00C0000
    [Mon Jul 7 22:52:57 2014] [drm] vram apper at 0xD0000000
    [Mon Jul 7 22:52:57 2014] [drm] size 9216000
    [Mon Jul 7 22:52:57 2014] [drm] fb depth is 24
    [Mon Jul 7 22:52:57 2014] [drm] pitch is 7680
    [Mon Jul 7 22:52:57 2014] fbcon: radeondrmfb (fb0) is primary device
    [Mon Jul 7 22:52:57 2014] Console: switching to colour frame buffer device 240x75
    [Mon Jul 7 22:52:57 2014] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
    [Mon Jul 7 22:52:57 2014] radeon 0000:01:00.0: registered panic notifier
    [Mon Jul 7 22:52:57 2014] [drm] Initialized radeon 2.38.0 20080528 for 0000:01:00.0 on minor 0
    [Mon Jul 7 22:53:18 2014] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
    [Mon Jul 7 22:53:18 2014] scsi 1:0:0:0: CDB:
    [Mon Jul 7 22:53:18 2014] cdb[0]=0x12: 12 00 00 00 60 00
    [Mon Jul 7 22:53:18 2014] ata2.00: cmd a0/01:00:00:60:00/00:00:00:00:00/a0 tag 2 dma 96 in
    res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
    [Mon Jul 7 22:53:18 2014] ata2.00: status: { DRDY }
    [Mon Jul 7 22:53:23 2014] ata2: link is slow to respond, please be patient (ready=0)
    [Mon Jul 7 22:53:27 2014] sd 0:0:0:0: [sda] 62500000 512-byte logical blocks: (32.0 GB/29.8 GiB)
    [Mon Jul 7 22:53:27 2014] sd 0:0:0:0: [sda] Write Protect is off
    [Mon Jul 7 22:53:27 2014] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [Mon Jul 7 22:53:27 2014] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [Mon Jul 7 22:53:27 2014] sda: sda1 sda2 sda3 sda4
    [Mon Jul 7 22:53:27 2014] sd 0:0:0:0: [sda] Attached SCSI disk
    [Mon Jul 7 22:53:28 2014] ata2: device not ready (errno=-16), forcing hardreset
    [Mon Jul 7 22:53:28 2014] ata2: soft resetting link
    [Mon Jul 7 22:53:28 2014] ata2.00: model number mismatch 'CONY`DFDk/mRG DWmQe8A ` ` ` ` ` ` ` ` `' != 'SO^YpDVD{/}RW TW}Qu8Q p p p p p p p p p'
    [Mon Jul 7 22:53:28 2014] ata2.00: revalidation failed (errno=-19)
    [Mon Jul 7 22:53:28 2014] ata2.00: limiting speed to UDMA/33:PIO3
    [Mon Jul 7 22:53:33 2014] ata2: soft resetting link
    [Mon Jul 7 22:53:33 2014] ata2.00: model number mismatch 'CONY`DFDk/mRG DWmQe8A ` ` ` ` ` ` ` ` `' != 'SO^YpDVD{/}RW TW}Qu8Q p p p p p p p p p'
    [Mon Jul 7 22:53:33 2014] ata2.00: revalidation failed (errno=-19)
    [Mon Jul 7 22:53:33 2014] ata2.00: disabled
    [Mon Jul 7 22:53:38 2014] ata2: soft resetting link
    [Mon Jul 7 22:53:38 2014] ata2.00: ATAPI: CONY`DFDk/mRG DWmQe8A ` ` ` ` ` ` ` ` `, EDC2` `, max UDMA/33
    [Mon Jul 7 22:53:38 2014] ata2.00: model number mismatch 'CONY`DFDk/mRG DWmQe8A ` ` ` ` ` ` ` ` `' != 'SO^YpDVD{/}RW TW}Qu8Q p p p p p p p p p'
    [Mon Jul 7 22:53:38 2014] ata2.00: revalidation failed (errno=-19)
    [Mon Jul 7 22:53:38 2014] ata2.00: limiting speed to UDMA/33:PIO3
    [Mon Jul 7 22:53:43 2014] ata2: soft resetting link
    [Mon Jul 7 22:53:44 2014] ata2.00: model number mismatch 'CONY`DFDk/mRG DWmQe8A ` ` ` ` ` ` ` ` `' != 'SO^YpDVD{/}RW TW}Qu8Q p p p p p p p p p'
    [Mon Jul 7 22:53:44 2014] ata2.00: revalidation failed (errno=-19)
    [Mon Jul 7 22:53:44 2014] ata2.00: disabled
    [Mon Jul 7 22:53:44 2014] ata2: EH complete
    [Mon Jul 7 22:53:44 2014] scsi scan: 96 byte inquiry failed. Consider BLIST_INQUIRY_36 for this device
    [Mon Jul 7 22:53:44 2014] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [Mon Jul 7 22:53:44 2014] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [Mon Jul 7 22:53:44 2014] systemd-udevd[150]: starting version 214
    [Mon Jul 7 22:53:44 2014] ACPI: acpi_idle registered with cpuidle
    [Mon Jul 7 22:53:44 2014] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [Mon Jul 7 22:53:44 2014] ACPI: Battery Slot [BAT0] (battery present)
    [Mon Jul 7 22:53:44 2014] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    [Mon Jul 7 22:53:44 2014] ACPI: AC Adapter [AC] (on-line)
    [Mon Jul 7 22:53:44 2014] acpi device:2d: registered as cooling_device2
    [Mon Jul 7 22:53:44 2014] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:2a/LNXVIDEO:00/input/input2
    [Mon Jul 7 22:53:44 2014] [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.
    [Mon Jul 7 22:53:44 2014] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    [Mon Jul 7 22:53:44 2014] ACPI: Lid Switch [LID]
    [Mon Jul 7 22:53:44 2014] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    [Mon Jul 7 22:53:44 2014] ACPI: Power Button [PBTN]
    [Mon Jul 7 22:53:44 2014] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
    [Mon Jul 7 22:53:44 2014] ACPI: Sleep Button [SBTN]
    [Mon Jul 7 22:53:44 2014] wmi: Mapper loaded
    [Mon Jul 7 22:53:44 2014] thermal LNXTHERM:00: registered as thermal_zone0
    [Mon Jul 7 22:53:44 2014] ACPI: Thermal Zone [THM] (25 C)
    [Mon Jul 7 22:53:44 2014] intel_rng: FWH not detected
    [Mon Jul 7 22:53:44 2014] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [Mon Jul 7 22:53:44 2014] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    [Mon Jul 7 22:53:44 2014] leds_ss4200: no LED devices found
    [Mon Jul 7 22:53:44 2014] sound hdaudioC0D0: autoconfig: line_outs=3 (0xf/0xe/0x11/0x0/0x0) type:speaker
    [Mon Jul 7 22:53:44 2014] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [Mon Jul 7 22:53:44 2014] sound hdaudioC0D0: hp_outs=1 (0xd/0x0/0x0/0x0/0x0)
    [Mon Jul 7 22:53:44 2014] sound hdaudioC0D0: mono: mono_out=0x0
    [Mon Jul 7 22:53:44 2014] sound hdaudioC0D0: dig-out=0x9/0x0
    [Mon Jul 7 22:53:44 2014] sound hdaudioC0D0: inputs:
    [Mon Jul 7 22:53:44 2014] sound hdaudioC0D0: Mic=0x10
    [Mon Jul 7 22:53:44 2014] microcode: CPU0 sig=0x6f6, pf=0x20, revision=0xc7
    [Mon Jul 7 22:53:44 2014] microcode: CPU1 sig=0x6f6, pf=0x20, revision=0xc7
    [Mon Jul 7 22:53:44 2014] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [Mon Jul 7 22:53:44 2014] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [Mon Jul 7 22:53:44 2014] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [Mon Jul 7 22:53:44 2014] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [Mon Jul 7 22:53:44 2014] ssb: Found chip with id 0x4401, rev 0x02 and package 0x00
    [Mon Jul 7 22:53:44 2014] ssb: Core 0 found: Fast Ethernet (cc 0x806, rev 0x07, vendor 0x4243)
    [Mon Jul 7 22:53:44 2014] ssb: Core 1 found: V90 (cc 0x807, rev 0x03, vendor 0x4243)
    [Mon Jul 7 22:53:44 2014] ssb: Core 2 found: PCI (cc 0x804, rev 0x0A, vendor 0x4243)
    [Mon Jul 7 22:53:44 2014] kvm: disabled by bios
    [Mon Jul 7 22:53:44 2014] input: Dell WMI hotkeys as /devices/virtual/input/input9
    [Mon Jul 7 22:53:44 2014] iTCO_vendor_support: vendor-support=0
    [Mon Jul 7 22:53:44 2014] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [Mon Jul 7 22:53:44 2014] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x1060)
    [Mon Jul 7 22:53:44 2014] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [Mon Jul 7 22:53:44 2014] gpio_ich: GPIO from 206 to 255 on gpio_ich
    [Mon Jul 7 22:53:44 2014] ssb: Sonics Silicon Backplane found on PCI device 0000:03:00.0
    [Mon Jul 7 22:53:44 2014] b44: Broadcom 44xx/47xx 10/100 PCI ethernet driver version 2.0
    [Mon Jul 7 22:53:44 2014] b44 ssb0:0 eth0: Broadcom 44xx/47xx 10/100 PCI ethernet driver 00:15:c5:4b:f3:24
    [Mon Jul 7 22:53:45 2014] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: data=ordered
    [Mon Jul 7 22:53:45 2014] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
    [Mon Jul 7 22:53:45 2014] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [Mon Jul 7 22:53:45 2014] psmouse serio1: synaptics: Touchpad model: 1, fw: 6.2, id: 0xfa0b1, caps: 0xa04713/0x200000/0x0, board id: 3655, fw id: 128333
    [Mon Jul 7 22:53:45 2014] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
    [Mon Jul 7 22:53:45 2014] mousedev: PS/2 mouse device common for all mice
    [Mon Jul 7 22:53:46 2014] random: nonblocking pool is initialized
    [Mon Jul 7 22:53:48 2014] b44 ssb0:0 eth0: Link is up at 100 Mbps, full duplex
    [Mon Jul 7 22:53:48 2014] b44 ssb0:0 eth0: Flow control is off for TX and off for RX
    [Mon Jul 7 22:53:48 2014] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [Mon Jul 7 23:11:28 2014] b44 ssb0:0 eth0: Link is down
    [Mon Jul 7 23:12:19 2014] b44 ssb0:0 eth0: Link is up at 100 Mbps, full duplex
    [Mon Jul 7 23:12:19 2014] b44 ssb0:0 eth0: Flow control is off for TX and off for RX
    [Mon Jul 7 23:12:54 2014] PM: Syncing filesystems ... done.
    [Mon Jul 7 23:12:54 2014] PM: Preparing system for mem sleep
    [Mon Jul 7 23:12:55 2014] Freezing user space processes ... (elapsed 0.047 seconds) done.
    [Mon Jul 7 23:12:55 2014] Freezing remaining freezable tasks ... (elapsed 0.000 seconds) done.
    [Mon Jul 7 23:12:55 2014] PM: Entering mem sleep
    [Mon Jul 7 23:12:55 2014] Suspending console(s) (use no_console_suspend to debug)
    [Mon Jul 7 23:12:55 2014] b44 ssb0:0 eth0: powering down PHY
    [Mon Jul 7 23:12:55 2014] sd 0:0:0:0: [sda] Synchronizing SCSI cache
    [Mon Jul 7 23:12:55 2014] sd 0:0:0:0: [sda] Stopping disk
    [Mon Jul 7 23:12:55 2014] PM: suspend of devices complete after 393.015 msecs
    [Mon Jul 7 23:12:55 2014] PM: late suspend of devices complete after 0.713 msecs
    [Mon Jul 7 23:12:55 2014] ehci-pci 0000:00:1d.7: System wakeup enabled by ACPI
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.3: System wakeup enabled by ACPI
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.2: System wakeup enabled by ACPI
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.1: System wakeup enabled by ACPI
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.0: System wakeup enabled by ACPI
    [Mon Jul 7 23:12:55 2014] PM: noirq suspend of devices complete after 15.766 msecs
    [Mon Jul 7 23:12:55 2014] ACPI: Preparing to enter system sleep state S3
    [Mon Jul 7 23:12:55 2014] PM: Saving platform NVS memory
    [Mon Jul 7 23:12:55 2014] Disabling non-boot CPUs ...
    [Mon Jul 7 23:12:55 2014] smpboot: CPU 1 is now offline
    [Mon Jul 7 23:12:55 2014] ACPI: Low-level resume complete
    [Mon Jul 7 23:12:55 2014] PM: Restoring platform NVS memory
    [Mon Jul 7 23:12:55 2014] Enabling non-boot CPUs ...
    [Mon Jul 7 23:12:55 2014] x86: Booting SMP configuration:
    [Mon Jul 7 23:12:55 2014] smpboot: Booting Node 0 Processor 1 APIC 0x1
    [Mon Jul 7 23:12:55 2014] CPU1 is up
    [Mon Jul 7 23:12:55 2014] ACPI: Waking up from system sleep state S3
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.0: System wakeup disabled by ACPI
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.1: System wakeup disabled by ACPI
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.3: System wakeup disabled by ACPI
    [Mon Jul 7 23:12:55 2014] uhci_hcd 0000:00:1d.2: System wakeup disabled by ACPI
    [Mon Jul 7 23:12:55 2014] ehci-pci 0000:00:1d.7: System wakeup disabled by ACPI
    [Mon Jul 7 23:12

    I think that it is something wrong with kernel and graphic drivers but i'm not able to solve it from the beginning of using of Arch by me.
    I'm not so sure this issue is software-related only because in my case it seems the laptop screen enters power-saving mode (10-min timeout) on its own without any events logged (as shown by dmesg) so my next thought was OK, I'm going to get rid of this issue disabling the screen power-saving timeout in the BIOS and set it to never power down or something like that and from then on managing power mode manually; ie: when I want to power down I will just use systemctl suspend/hibernate which work fine ... problem is: there are no related options in my BIOS for such timeout.
    The only timeouts I have are in /etc/systemd/logind.conf set to 30min (#IdleActionSec) (commented) by default so these are not in effect because the screens goes blank after 10m which is less than the (default) 30m in logind. Maybe setting loggind to 9m (un-commented) to catch the event before the machine-default one ?
    IdleActionSec=9min
    IdleAction=suspend
    Will check it and report back.

  • [solved] No sound, ALSA finds soundcard, pulseaudio does not.

    Problem:
    pulseaudio can't find my soundcard (or it can't find ALSA, not sure). It falls back to a dummy-output and no input so i can't play sounds or use my mic.
    First appeared when:
    Installing software updates like a month ago. I ignored it at first in the hopes it will resolve itself with the next update an few dates later. It didn't so far. None of the packets I updated had linux|pulse|alsa|sound|audio in its name. So i guess it just triggered the problem in a indirect way.
    What did not help:
    Reinstalling packets with pulse|alsa|sound|audio in its name.
    Deleting ${HOME}/.pulse* .
    Rebooting.
    Resetting /etc/pulse/* or /etc/asound.conf to the defaults of the packaes they come with.
    Adding or removing my user to the audio group.
    Googling. Other threads i this forum.
    Additional infos:
    (Stuff that was requested from others which had similar problems. No other [solved]-threads were helping me so far.)
    /dev/dsp does not exist.
    fuser -v /dev/snd/* returns nothing
    aplay whatever.wav produces no sound.
    aplay -D sysdefault whatever.wav works.
    Using Gnome 3 started with gdm.
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: ALC272 Analog [ALC272 Analog]
    Subdevices: 0/1
    Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], device 3: HDMI 0 [HDMI 0]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    aplay -L
    null
    Discard all samples (playback) or generate zero samples (capture)
    pulse
    PulseAudio Sound Server
    default
    Default ALSA Output (currently PulseAudio Sound Server)
    sysdefault:CARD=Intel
    HDA Intel, ALC272 Analog
    Default Audio Device
    front:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    Front speakers
    surround40:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=Intel,DEV=0
    HDA Intel, ALC272 Analog
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    hdmi:CARD=Intel,DEV=0
    HDA Intel, HDMI 0
    HDMI Audio Output
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.6.7-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Sun Nov 18 10:11:22 CET 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux cryptdevice=/dev/sda7:root root=/dev/mapper/root ro quiet init=/bin/systemd
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d2000-0x00000000000d3fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000d8000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000b76a0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b76a1000-0x00000000b76a6fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b76a7000-0x00000000b77d1fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b77d2000-0x00000000b780efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b780f000-0x00000000b7908fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7909000-0x00000000b7b0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b0f000-0x00000000b7b18fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b19000-0x00000000b7b1efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b1f000-0x00000000b7b62fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b63000-0x00000000b7b9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000b7b9f000-0x00000000b7be4fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7be5000-0x00000000b7bfefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000b7bff000-0x00000000b7bfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000b7c00000-0x00000000b7dfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000b8000000-0x00000000bfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI present.
    [ 0.000000] DMI: Dell Inc. Inspiron 1370/0R8PR3, BIOS A01 09/15/2009
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0xb7c00 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-D3FFF write-protect
    [ 0.000000] D4000-DBFFF uncachable
    [ 0.000000] DC000-EFFFF write-back
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0B8000000 mask FF8000000 uncachable
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0FFE40000 mask FFFFC0000 write-protect
    [ 0.000000] 4 base 0B7E00000 mask FFFE00000 uncachable
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000f6bf0-0x000f6bff] mapped at [ffff8800000f6bf0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xb7bfffff]
    [ 0.000000] [mem 0x00000000-0xb7bfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xb7bfffff @ [mem 0x1fffc000-0x1fffffff]
    [ 0.000000] RAMDISK: [mem 0x376e2000-0x37b68fff]
    [ 0.000000] ACPI: RSDP 00000000000f6b10 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 00000000b7bf7369 00064 (v01 DELL CL09 06040000 LTP 00000000)
    [ 0.000000] ACPI: FACP 00000000b7be7000 000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001)
    [ 0.000000] ACPI: DSDT 00000000b7be8000 077A9 (v02 Dell CANTIGA 06040000 INTL 20060608)
    [ 0.000000] ACPI: FACS 00000000b7b9efc0 00040
    [ 0.000000] ACPI: HPET 00000000b7bfed16 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: MCFG 00000000b7bfed4e 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: OSFR 00000000b7bfed8a 00070 (v01 DELL DELL 06040000 ASL 00000061)
    [ 0.000000] ACPI: APIC 00000000b7bfedfa 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    [ 0.000000] ACPI: BOOT 00000000b7bfee62 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SLIC 00000000b7bfee8a 00176 (v01 DELL CL09 06040000 LTP 00000000)
    [ 0.000000] ACPI: SSDT 00000000b7be6000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000000b7bfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0xb7bfffff]
    [ 0.000000] NODE_DATA [mem 0xb7be1000-0xb7be4fff]
    [ 0.000000] [ffffea0000000000-ffffea0002dfffff] PMD -> [ffff8800b4000000-ffff8800b6dfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0xb76a0fff]
    [ 0.000000] node 0: [mem 0xb76a7000-0xb77d1fff]
    [ 0.000000] node 0: [mem 0xb780f000-0xb7908fff]
    [ 0.000000] node 0: [mem 0xb7b0f000-0xb7b18fff]
    [ 0.000000] node 0: [mem 0xb7b1f000-0xb7b62fff]
    [ 0.000000] node 0: [mem 0xb7b9f000-0xb7be4fff]
    [ 0.000000] node 0: [mem 0xb7bff000-0xb7bfffff]
    [ 0.000000] On node 0 totalpages: 751850
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3913 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11696 pages used for memmap
    [ 0.000000] DMA32 zone: 736171 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_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 high edge)
    [ 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] smpboot: 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 - 00000000000d2000
    [ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000d8000
    [ 0.000000] PM: Registered nosave memory: 00000000000d8000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000b76a1000 - 00000000b76a7000
    [ 0.000000] PM: Registered nosave memory: 00000000b77d2000 - 00000000b780f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7909000 - 00000000b7b0f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7b19000 - 00000000b7b1f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7b63000 - 00000000b7b9f000
    [ 0.000000] PM: Registered nosave memory: 00000000b7be5000 - 00000000b7bff000
    [ 0.000000] e820: [mem 0xc0000000-0xdfffffff] 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:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff8800b7400000 s84608 r8192 d21888 u1048576
    [ 0.000000] pcpu-alloc: s84608 r8192 d21888 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 740084
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux cryptdevice=/dev/sda7:root root=/dev/mapper/root ro quiet init=/bin/systemd
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240
    [ 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: 2944188k/3010560k available (4727k kernel code, 3160k absent, 63212k reserved, 4143k data, 772k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, 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=64 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 12058624 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.000000] tsc: Detected 1296.696 MHz processor
    [ 0.003337] Calibrating delay loop (skipped), value calculated using timer frequency.. 2594.45 BogoMIPS (lpj=4322320)
    [ 0.003343] pid_max: default: 32768 minimum: 301
    [ 0.003400] Security Framework initialized
    [ 0.003407] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003948] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.006850] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008132] Mount-cache hash table entries: 256
    [ 0.008498] Initializing cgroup subsys cpuacct
    [ 0.008503] Initializing cgroup subsys memory
    [ 0.008517] Initializing cgroup subsys devices
    [ 0.008520] Initializing cgroup subsys freezer
    [ 0.008522] Initializing cgroup subsys net_cls
    [ 0.008525] Initializing cgroup subsys blkio
    [ 0.008570] CPU: Physical Processor ID: 0
    [ 0.008572] CPU: Processor Core ID: 0
    [ 0.008575] mce: CPU supports 6 MCE banks
    [ 0.008587] CPU0: Thermal monitoring enabled (TM2)
    [ 0.008592] process: using mwait in idle threads
    [ 0.008600] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift is 0xffffffff
    [ 0.010851] ACPI: Core revision 20120711
    [ 0.016699] ftrace: allocating 18348 entries in 72 pages
    [ 0.027201] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061706] smpboot: CPU0: Genuine Intel(R) CPU U7300 @ 1.30GHz stepping 0a
    [ 0.063329] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.063329] ... version: 2
    [ 0.063329] ... bit width: 40
    [ 0.063329] ... generic registers: 2
    [ 0.063329] ... value mask: 000000ffffffffff
    [ 0.063329] ... max period: 000000007fffffff
    [ 0.063329] ... fixed-purpose events: 3
    [ 0.063329] ... event mask: 0000000700000003
    [ 0.086782] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.100007] smpboot: Booting Node 0, Processors #1 OK
    [ 0.113162] Brought up 2 CPUs
    [ 0.113162] smpboot: Total of 2 processors activated (5188.90 BogoMIPS)
    [ 0.113436] devtmpfs: initialized
    [ 0.116686] PM: Registering ACPI NVS region [mem 0xb7b63000-0xb7b9efff] (245760 bytes)
    [ 0.121465] NET: Registered protocol family 16
    [ 0.121699] ACPI: bus type pci registered
    [ 0.121824] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.121828] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.174683] PCI: Using configuration type 1 for base access
    [ 0.175619] bio: create slab <bio-0> at 0
    [ 0.175619] ACPI: Added _OSI(Module Device)
    [ 0.175619] ACPI: Added _OSI(Processor Device)
    [ 0.175619] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.175619] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.178073] ACPI: EC: Look up EC in DSDT
    [ 0.182902] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.188123] ACPI: SSDT 00000000b7b1aca0 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.188671] ACPI: Dynamic OEM Table Load:
    [ 0.188676] ACPI: SSDT (null) 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.188875] ACPI: SSDT 00000000b7b19620 00568 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.189399] ACPI: Dynamic OEM Table Load:
    [ 0.189404] ACPI: SSDT (null) 00568 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.189425] ACPI: SSDT 00000000b7b1aa20 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.190407] ACPI: Dynamic OEM Table Load:
    [ 0.190412] ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.190429] ACPI: SSDT 00000000b7b1af20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.190693] ACPI: Dynamic OEM Table Load:
    [ 0.190698] ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.190715] ACPI: Interpreter enabled
    [ 0.190715] ACPI: (supports S0 S3 S4 S5)
    [ 0.190715] ACPI: Using IOAPIC for interrupt routing
    [ 0.323314] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    [ 0.323314] ACPI: No dock devices found.
    [ 0.323314] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.323314] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.323314] PCI host bridge to bus 0000:00
    [ 0.323314] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
    [ 0.323314] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.323314] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.323314] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
    [ 0.323314] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
    [ 0.323314] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.323314] DMAR: Forcing write-buffer flush capability
    [ 0.323314] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.323314] pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    [ 0.323314] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
    [ 0.323314] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.323314] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807]
    [ 0.323314] pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    [ 0.323314] pci 0000:00:02.1: reg 10: [mem 0xf0400000-0xf04fffff 64bit]
    [ 0.323314] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.0: reg 20: [io 0x1820-0x183f]
    [ 0.323314] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.1: reg 20: [io 0x1840-0x185f]
    [ 0.323314] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.323314] pci 0000:00:1a.2: reg 20: [io 0x1860-0x187f]
    [ 0.323314] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.323314] pci 0000:00:1a.7: reg 10: [mem 0xf0804800-0xf0804bff]
    [ 0.323314] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.323314] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.323314] pci 0000:00:1b.0: reg 10: [mem 0xf0800000-0xf0803fff 64bit]
    [ 0.323314] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.323342] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.323470] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.323513] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.323640] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.323688] pci 0000:00:1c.5: [8086:294a] type 01 class 0x060400
    [ 0.323816] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.323860] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.323931] pci 0000:00:1d.0: reg 20: [io 0x1880-0x189f]
    [ 0.324017] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.324087] pci 0000:00:1d.1: reg 20: [io 0x18a0-0x18bf]
    [ 0.324173] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.324243] pci 0000:00:1d.2: reg 20: [io 0x18c0-0x18df]
    [ 0.324346] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.324379] pci 0000:00:1d.7: reg 10: [mem 0xf0804c00-0xf0804fff]
    [ 0.324516] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.324552] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.324666] pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
    [ 0.324866] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.324900] pci 0000:00:1f.2: reg 10: [io 0x1818-0x181f]
    [ 0.324915] pci 0000:00:1f.2: reg 14: [io 0x180c-0x180f]
    [ 0.324931] pci 0000:00:1f.2: reg 18: [io 0x1810-0x1817]
    [ 0.324946] pci 0000:00:1f.2: reg 1c: [io 0x1808-0x180b]
    [ 0.324960] pci 0000:00:1f.2: reg 20: [io 0x18e0-0x18ff]
    [ 0.324975] pci 0000:00:1f.2: reg 24: [mem 0xf0804000-0xf08047ff]
    [ 0.325062] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.325096] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.325123] pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff 64bit]
    [ 0.325160] pci 0000:00:1f.3: reg 20: [io 0x1c00-0x1c1f]
    [ 0.325277] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-ff]
    [ 0.325283] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.325366] pci_bus 0000:08: busn_res: [bus 08] is inserted under [bus 00-ff]
    [ 0.325632] pci 0000:08:00.0: [14e4:4315] type 00 class 0x028000
    [ 0.325707] pci 0000:08:00.0: reg 10: [mem 0xf0500000-0xf0503fff 64bit]
    [ 0.326109] pci 0000:08:00.0: supports D1 D2
    [ 0.326112] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
    [ 0.326304] pci 0000:00:1c.1: PCI bridge to [bus 08]
    [ 0.326314] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.326391] pci_bus 0000:20: busn_res: [bus 20] is inserted under [bus 00-ff]
    [ 0.326477] pci 0000:20:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.326546] pci 0000:20:00.0: reg 10: [io 0x2000-0x20ff]
    [ 0.326670] pci 0000:20:00.0: reg 18: [mem 0xf0904000-0xf0904fff 64bit pref]
    [ 0.326745] pci 0000:20:00.0: reg 20: [mem 0xf0900000-0xf0903fff 64bit pref]
    [ 0.326794] pci 0000:20:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.327093] pci 0000:20:00.0: supports D1 D2
    [ 0.327096] pci 0000:20:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.327302] pci 0000:00:1c.5: PCI bridge to [bus 20]
    [ 0.327309] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.327323] pci 0000:00:1c.5: bridge window [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.327363] pci_bus 0000:26: busn_res: [bus 26] is inserted under [bus 00-ff]
    [ 0.327435] pci 0000:00:1e.0: PCI bridge to [bus 26] (subtractive decode)
    [ 0.327452] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.327456] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.327460] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.327463] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.327467] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    [ 0.327471] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    [ 0.327505] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.327638] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    [ 0.327717] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.327766] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.327824] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.327883] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.327886] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.334993] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.335069] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.335141] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    [ 0.335212] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.335283] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.335355] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 *7 11 12 14 15)
    [ 0.335424] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.335495] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.336671] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.336689] vgaarb: loaded
    [ 0.336691] vgaarb: bridge control possible 0000:00:02.0
    [ 0.336769] PCI: Using ACPI for IRQ routing
    [ 0.348092] PCI: pci_cache_line_size set to 64 bytes
    [ 0.348605] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
    [ 0.348608] e820: reserve RAM buffer [mem 0xb76a1000-0xb7ffffff]
    [ 0.348614] e820: reserve RAM buffer [mem 0xb77d2000-0xb7ffffff]
    [ 0.348619] e820: reserve RAM buffer [mem 0xb7909000-0xb7ffffff]
    [ 0.348623] e820: reserve RAM buffer [mem 0xb7b19000-0xb7ffffff]
    [ 0.348627] e820: reserve RAM buffer [mem 0xb7b63000-0xb7ffffff]
    [ 0.348631] e820: reserve RAM buffer [mem 0xb7be5000-0xb7ffffff]
    [ 0.348634] e820: reserve RAM buffer [mem 0xb7c00000-0xb7ffffff]
    [ 0.348791] NetLabel: Initializing
    [ 0.348794] NetLabel: domain hash size = 128
    [ 0.348796] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.348816] NetLabel: unlabeled traffic allowed by default
    [ 0.348840] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.348847] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.348855] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.370000] Switching to clocksource hpet
    [ 0.381464] pnp: PnP ACPI init
    [ 0.381496] ACPI: bus type pnp registered
    [ 0.382022] pnp 00:00: [bus 00-ff]
    [ 0.382027] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.382031] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.382035] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.382039] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.382042] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.382046] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.382050] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.382053] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.382057] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.382060] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.382064] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.382067] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.382071] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.382075] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.382078] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.382086] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.382089] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.382093] pnp 00:00: [mem 0xc0000000-0xdfffffff window]
    [ 0.382097] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
    [ 0.382100] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    [ 0.382200] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.440057] pnp 00:01: [io 0x0000-0x001f]
    [ 0.440061] pnp 00:01: [io 0x0081-0x0091]
    [ 0.440065] pnp 00:01: [io 0x0093-0x009f]
    [ 0.440068] pnp 00:01: [io 0x00c0-0x00df]
    [ 0.440072] pnp 00:01: [dma 4]
    [ 0.440121] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.440232] pnp 00:02: [mem 0xfed00000-0xfed003ff]
    [ 0.440329] system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.440336] system 00:02: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.440353] pnp 00:03: [io 0x00f0]
    [ 0.440369] pnp 00:03: [irq 13]
    [ 0.440414] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.440433] pnp 00:04: [io 0x002e-0x002f]
    [ 0.440436] pnp 00:04: [io 0x0061]
    [ 0.440439] pnp 00:04: [io 0x0063]
    [ 0.440443] pnp 00:04: [io 0x0065]
    [ 0.440446] pnp 00:04: [io 0x0067]
    [ 0.440449] pnp 00:04: [io 0x0070]
    [ 0.440452] pnp 00:04: [io 0x0080]
    [ 0.440456] pnp 00:04: [io 0x0092]
    [ 0.440459] pnp 00:04: [io 0x00b2-0x00b3]
    [ 0.440462] pnp 00:04: [io 0x0480-0x048f]
    [ 0.440466] pnp 00:04: [io 0xffff]
    [ 0.440469] pnp 00:04: [io 0xffff]
    [ 0.440472] pnp 00:04: [io 0x0400-0x047f]
    [ 0.440475] pnp 00:04: [io 0x1180-0x11ff]
    [ 0.440479] pnp 00:04: [io 0xfe00]
    [ 0.440482] pnp 00:04: [io 0xff2c-0xff7f]
    [ 0.440574] system 00:04: [io 0x0480-0x048f] has been reserved
    [ 0.440578] system 00:04: [io 0xffff] has been reserved
    [ 0.440583] system 00:04: [io 0xffff] has been reserved
    [ 0.440587] system 00:04: [io 0x0400-0x047f] has been reserved
    [ 0.440591] system 00:04: [io 0x1180-0x11ff] has been reserved
    [ 0.440596] system 00:04: [io 0xfe00] has been reserved
    [ 0.440600] system 00:04: [io 0xff2c-0xff7f] has been reserved
    [ 0.440606] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.440620] pnp 00:05: [io 0x0070-0x0077]
    [ 0.440629] pnp 00:05: [irq 8]
    [ 0.440674] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.440691] pnp 00:06: [io 0x0060]
    [ 0.440694] pnp 00:06: [io 0x0064]
    [ 0.440703] pnp 00:06: [irq 1]
    [ 0.440753] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.440772] pnp 00:07: [irq 12]
    [ 0.440819] pnp 00:07: Plug and Play ACPI device, IDs DLL0418 PNP0f13 (active)
    [ 0.441027] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
    [ 0.441031] pnp 00:08: [mem 0xfed10000-0xfed13fff]
    [ 0.441034] pnp 00:08: [mem 0xfed18000-0xfed18fff]
    [ 0.441038] pnp 00:08: [mem 0xfed19000-0xfed19fff]
    [ 0.441041] pnp 00:08: [mem 0xe0000000-0xefffffff]
    [ 0.441045] pnp 00:08: [mem 0xfed20000-0xfed3ffff]
    [ 0.441048] pnp 00:08: [mem 0xfed45000-0xfed8ffff]
    [ 0.441146] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.441151] system 00:08: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.441155] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.441159] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.441164] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.441168] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.441172] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.441178] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.441356] pnp: PnP ACPI: found 9 devices
    [ 0.441359] ACPI: ACPI bus type pnp unregistered
    [ 0.449759] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.449766] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.449771] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
    [ 0.449786] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
    [ 0.449791] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000
    [ 0.449807] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x001fffff] to [bus 20] add_size 400000
    [ 0.449828] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.449833] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.449837] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.449841] pci 0000:00:1c.5: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 400000
    [ 0.449845] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.449849] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.449858] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
    [ 0.449864] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.449869] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.449874] pci 0000:00:1c.5: BAR 14: assigned [mem 0xc0600000-0xc0afffff]
    [ 0.449880] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.449885] pci 0000:00:1c.1: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.449890] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0b00000-0xc0b000ff 64bit]
    [ 0.449908] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.449913] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.449922] pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff]
    [ 0.449929] pci 0000:00:1c.0: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.449939] pci 0000:00:1c.1: PCI bridge to [bus 08]
    [ 0.449944] pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    [ 0.449953] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
    [ 0.449960] pci 0000:00:1c.1: bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.449971] pci 0000:20:00.0: BAR 6: assigned [mem 0xf0920000-0xf093ffff pref]
    [ 0.449975] pci 0000:00:1c.5: PCI bridge to [bus 20]
    [ 0.449980] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.449989] pci 0000:00:1c.5: bridge window [mem 0xc0600000-0xc0afffff]
    [ 0.449996] pci 0000:00:1c.5: bridge window [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.450021] pci 0000:00:1e.0: PCI bridge to [bus 26]
    [ 0.450083] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.450089] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.450093] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.450097] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.450101] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.450105] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.450108] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.450112] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 0.450116] pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
    [ 0.450120] pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.450124] pci_bus 0000:08: resource 0 [io 0x4000-0x4fff]
    [ 0.450127] pci_bus 0000:08: resource 1 [mem 0xf0500000-0xf05fffff]
    [ 0.450131] pci_bus 0000:08: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.450135] pci_bus 0000:20: resource 0 [io 0x2000-0x2fff]
    [ 0.450139] pci_bus 0000:20: resource 1 [mem 0xc0600000-0xc0afffff]
    [ 0.450142] pci_bus 0000:20: resource 2 [mem 0xf0900000-0xf09fffff 64bit pref]
    [ 0.450146] pci_bus 0000:26: resource 4 [io 0x0000-0x0cf7]
    [ 0.450150] pci_bus 0000:26: resource 5 [io 0x0d00-0xffff]
    [ 0.450154] pci_bus 0000:26: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.450157] pci_bus 0000:26: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.450161] pci_bus 0000:26: resource 8 [mem 0xc0000000-0xdfffffff]
    [ 0.450165] pci_bus 0000:26: resource 9 [mem 0xf0000000-0xfebfffff]
    [ 0.450219] NET: Registered protocol family 2
    [ 0.451401] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.456144] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.456812] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.456888] TCP: reno registered
    [ 0.456903] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.456958] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.457123] NET: Registered protocol family 1
    [ 0.457150] pci 0000:00:02.0: Boot video device
    [ 0.457669] PCI: CLS 64 bytes, default 64
    [ 0.457746] Unpacking initramfs...
    [ 0.626300] Freeing initrd memory: 4636k freed
    [ 0.628543] Simple Boot Flag at 0x3e set to 0x1
    [ 0.629045] audit: initializing netlink socket (disabled)
    [ 0.629069] type=2000 audit(1354288244.626:1): initialized
    [ 0.648430] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.651510] VFS: Disk quotas dquot_6.5.2
    [ 0.651590] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.651831] msgmni has been set to 5759
    [ 0.652156] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.652204] io scheduler noop registered
    [ 0.652208] io scheduler deadline registered
    [ 0.652301] io scheduler cfq registered (default)
    [ 0.652518] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.652689] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.652857] pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X
    [ 0.653107] intel_idle: does not run on family 6 model 23
    [ 0.653156] GHES: HEST is not enabled!
    [ 0.653245] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.653953] Linux agpgart interface v0.103
    [ 0.654073] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.669080] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.669133] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.669294] mousedev: PS/2 mouse device common for all mice
    [ 0.670409] rtc_cmos 00:05: RTC can wake from S4
    [ 0.670599] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.670636] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.670648] cpuidle: using governor ladder
    [ 0.670651] cpuidle: using governor menu
    [ 0.670829] drop_monitor: Initializing network drop monitor service
    [ 0.670946] TCP: cubic registered
    [ 0.671122] NET: Registered protocol family 10
    [ 0.671359] NET: Registered protocol family 17
    [ 0.671373] Key type dns_resolver registered
    [ 0.671720] PM: Hibernation image not present or could not be loaded.
    [ 0.671743] registered taskstats version 1
    [ 0.672782] rtc_cmos 00:05: setting system clock to 2012-11-30 15:10:45 UTC (1354288245)
    [ 0.674872] Freeing unused kernel memory: 772k freed
    [ 0.675168] Write protecting the kernel read-only data: 8192k
    [ 0.682434] Freeing unused kernel memory: 1408k freed
    [ 0.683107] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.685881] Freeing unused kernel memory: 568k freed
    [ 0.698116] systemd-udevd[43]: starting version 195
    [ 0.701918] SCSI subsystem initialized
    [ 0.703991] ACPI: bus type scsi registered
    [ 0.704082] libata version 3.00 loaded.
    [ 0.705773] ahci 0000:00:1f.2: version 3.0
    [ 0.705858] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.705949] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    [ 0.705955] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc sxs
    [ 0.705962] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.708617] scsi0 : ahci
    [ 0.709413] scsi1 : ahci
    [ 0.709823] scsi2 : ahci
    [ 0.710229] scsi3 : ahci
    [ 0.710359] ata1: SATA max UDMA/133 abar m2048@0xf0804000 port 0xf0804100 irq 43
    [ 0.710365] ata2: SATA max UDMA/133 abar m2048@0xf0804000 port 0xf0804180 irq 43
    [ 0.710367] ata3: DUMMY
    [ 0.710370] ata4: DUMMY
    [ 1.196712] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.196745] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.198401] ata1.00: ATA-8: WDC WD3200BEKT-75F3T0, 11.01A11, max UDMA/133
    [ 1.198405] ata1.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    [ 1.200123] ata1.00: configured for UDMA/133
    [ 1.200301] scsi 0:0:0:0: Direct-Access ATA WDC WD3200BEKT-7 11.0 PQ: 0 ANSI: 5
    [ 1.201956] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    [ 1.202042] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.202047] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.202083] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.213584] ata2.00: ATAPI: TSSTcorp DVD+/-RW TS-U633F, D500, max UDMA/100
    [ 1.213590] ata2.00: applying bridge limits
    [ 1.229911] ata2.00: configured for UDMA/100
    [ 1.232328] scsi 1:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-U633F D500 PQ: 0 ANSI: 5
    [ 1.270602] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
    [ 1.271452] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.273864] ACPI: bus type usb registered
    [ 1.273912] usbcore: registered new interface driver usbfs
    [ 1.273946] usbcore: registered new interface driver hub
    [ 1.273996] usbcore: registered new device driver usb
    [ 1.274813] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.274869] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 1.274876] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 1.274891] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 1.278814] ehci_hcd 0000:00:1a.7: debug port 1
    [ 1.278826] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.278852] ehci_hcd 0000:00:1a.7: irq 19, io mem 0xf0804800
    [ 1.279113] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.279117] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.280054] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.286696] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.286950] hub 1-0:1.0: USB hub found
    [ 1.286958] hub 1-0:1.0: 6 ports detected
    [ 1.287158] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 1.287164] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 1.287174] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 1.291082] ehci_hcd 0000:00:1d.7: debug port 1
    [ 1.291093] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.291118] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0804c00
    [ 1.300028] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.300266] hub 2-0:1.0: USB hub found
    [ 1.300273] hub 2-0:1.0: 6 ports detected
    [ 1.301086] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.301130] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.301135] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.301145] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.301191] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820
    [ 1.301506] hub 3-0:1.0: USB hub found
    [ 1.301513] hub 3-0:1.0: 2 ports detected
    [ 1.301640] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 1.301645] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.301654] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 1.301701] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
    [ 1.301997] hub 4-0:1.0: USB hub found
    [ 1.302004] hub 4-0:1.0: 2 ports detected
    [ 1.302158] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 1.302164] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 1.302198] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 1.302230] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001860
    [ 1.302434] hub 5-0:1.0: USB hub found
    [ 1.302441] hub 5-0:1.0: 2 ports detected
    [ 1.302557] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.302562] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.302572] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 1.302603] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001880
    [ 1.302824] hub 6-0:1.0: USB hub found
    [ 1.302833] hub 6-0:1.0: 2 ports detected
    [ 1.303165] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.303171] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.303186] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 1.303219] uhci_hcd 0000:00:1d.1: irq 19, io base 0x000018a0
    [ 1.303759] hub 7-0:1.0: USB hub found
    [ 1.303766] hub 7-0:1.0: 2 ports detected
    [ 1.303897] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.303903] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.303995] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 1.304040] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018c0
    [ 1.304881] hub 8-0:1.0: USB hub found
    [ 1.304888] hub 8-0:1.0: 2 ports detected
    [ 1.323613] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
    [ 1.330105] [drm] Initialized drm 1.1.0 20060810
    [ 1.331660] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    [ 1.331843] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 1.333755] agpgart-intel 0000:00:00.0: detected 131072K stolen memory
    [ 1.333940] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 1.334797] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 1.334889] ACPI: Lid Switch [LID0]
    [ 1.335079] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 1.335086] ACPI: Power Button [PWRB]
    [ 1.335191] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 1.335196] ACPI: Power Button [PWRF]
    [ 1.341526] i915 0000:00:02.0: setting latency timer to 64
    [ 1.414990] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 1.415006] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.415008] [drm] Driver supports precise vblank timestamp query.
    [ 1.415071] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.606699] usb 2-4: new high-speed USB device number 2 using ehci_hcd
    [ 1.630029] tsc: Refined TSC clocksource calibration: 1296.749 MHz
    [ 1.630036] Switching to clocksource tsc
    [ 2.030864] fbcon: inteldrmfb (fb0) is primary device
    [ 2.090024] usb 2-5: new high-speed USB device number 3 using ehci_hcd
    [ 2.574662] Console: switching to colour frame buffer device 170x48
    [ 2.579271] fb0: inteldrmfb frame buffer device
    [ 2.579273] drm: registered panic notifier
    [ 2.680113] acpi device:07: registered as cooling_device0
    [ 2.780104] acpi device:08: registered as cooling_device1
    [ 2.780177] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 2.780313] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4
    [ 2.780358] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 2.963907] device-mapper: uevent: version 1.0.3
    [ 2.964084] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: [email protected]
    [ 3.763615] atkbd serio0: Unknown key pressed (translated set 2, code 0x8e on isa0060/serio0).
    [ 3.763622] atkbd serio0: Use 'setkeycodes e00e <keycode>' to make it known.
    [ 9.679599] XFS (dm-0): Mounting Filesystem
    [ 9.807350] XFS (dm-0): Ending clean mount
    [ 10.447920] systemd[1]: RTC configured in localtime, applying delta of 60 minutes to system time.
    [ 10.481565] systemd[1]: systemd 196 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 10.507375] systemd[1]: Set hostname to <xxx-laptop>.
    [ 11.844864] 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.
    [ 11.845276] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 11.845371] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 11.845393] systemd[1]: Starting Login Prompts.
    [ 11.845414] systemd[1]: Reached target Login Prompts.
    [ 11.845429] systemd[1]: Starting Arch Daemons.
    [ 11.845447] systemd[1]: Reached target Arch Daemons.
    [ 11.845462] systemd[1]: Starting Remote File Systems.
    [ 11.845481] systemd[1]: Reached target Remote File Systems.
    [ 11.845496] systemd[1]: Starting Syslog Socket.
    [ 11.845558] systemd[1]: Listening on Syslog Socket.
    [ 11.845576] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 11.845615] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 11.845630] systemd[1]: Starting Delayed Shutdown Socket.
    [ 11.845668] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 11.845766] systemd[1]: Starting udev Kernel Socket.
    [ 11.845804] systemd[1]: Listening on udev Kernel Socket.
    [ 11.845885] systemd[1]: Starting udev Control Socket.
    [ 11.845927] systemd[1]: Listening on udev Control Socket.
    [ 11.845979] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 11.846139] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 11.846157] systemd[1]: Expecting device dev-mapper-home.device...
    [ 11.846175] systemd[1]: Expecting device dev-sda8.device...
    [ 11.846193] systemd[1]: Expecting device dev-mapper-swap.device...
    [ 11.846210] systemd[1]: Expecting device dev-sda6.device...
    [ 11.846232] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 11.846291] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 11.846308] systemd[1]: Expecting device dev-disk-by\x2duuid-f19efb1f\x2d9a5b\x2d4f22\x2db35d\x2d4a603145a436.device...
    [ 11.846328] systemd[1]: Expecting device dev-disk-by\x2duuid-bd984744\x2d036e\x2d47e5\x2db40f\x2d04fa9f6d0f35.device...
    [ 11.846347] systemd[1]: Expecting device dev-disk-by\x2duuid-f1bab4e5\x2de736\x2d443a\x2d827e\x2d59f202a548ab.device...
    [ 11.846368] systemd[1]: Starting Journal Socket.
    [ 11.846439] systemd[1]: Listening on Journal Socket.
    [ 11.846467] systemd[1]: Started File System Check on Root Device.
    [ 11.846485] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 11.850382] systemd[1]: Mounting Temporary Directory...
    [ 11.998839] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway. (To see the over-mounted files, please manually mount the underlying file system to a secondary location.)
    [ 12.026864] systemd[1]: Mounting Huge Pages File System...
    [ 12.040270] systemd[1]: Mounting POSIX Message Queue File System...
    [ 12.043518] systemd[1]: Starting udev Coldplug all Devices...
    [ 12.156149] systemd[1]: Starting Load Kernel Modules...
    [ 12.173525] systemd[1]: Mounting Debug File System...
    [ 12.186770] systemd[1]: Starting Setup Virtual Console...
    [ 12.484840] systemd[1]: Starting Apply Kernel Variables...
    [ 12.616915] systemd[1]: Starting Set Up Additional Binary Formats...
    [ 12.630266] systemd[1]: Starting udev Kernel Device Manager...
    [ 12.636850] systemd[1]: Starting Journal Service...
    [ 12.646587] systemd[1]: Started Journal Service.
    [ 12.646650] systemd[1]: Starting Syslog.
    [ 12.646684] systemd[1]: Reached target Syslog.
    [ 12.647637] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 12.647816] systemd[1]: Mounted Temporary Directory.
    [ 12.647972] systemd[1]: Mounted Huge Pages File System.
    [ 12.648127] systemd[1]: Mounted POSIX Message Queue File System.
    [ 12.653654] systemd[1]: Mounted Debug File System.
    [ 12.653705] systemd[1]: Starting Local File Systems (Pre).
    [ 12.653726] systemd[1]: Reached target Local File Systems (Pre).
    [ 12.653749] systemd[1]: Starting Load Random Seed...
    [ 12.705203] FS-Cache: Loaded
    [ 12.740616] RPC: Registered named UNIX socket transport module.
    [ 12.740621] RPC: Registered udp transport module.
    [ 12.740624] RPC: Registered tcp transport module.
    [ 12.740626] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 12.881473] systemd-udevd[162]: starting version 196
    [ 12.988696] FS-Cache: Netfs 'nfs' registered for caching
    [ 13.298794] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 13.299212] r8169 0000:20:00.0: irq 45 for MSI/MSI-X
    [ 13.299501] r8169 0000:20:00.0: eth0: RTL8168d/8111d at 0xffffc9000060e000, 00:26:b9:ca:52:29, XID 081000c0 IRQ 45
    [ 13.299506] r8169 0000:20:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 13.401185] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 13.802403] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 14.148667] input: HDA Intel HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 14.148733] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 14.208405] cfg80211: Calling CRDA to update world regulatory domain
    [ 14.318480] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    [ 14.330974] lib80211: common routines for IEEE802.11 drivers
    [ 14.330979] lib80211_crypt: registered algorithm 'NULL'
    [ 14.375031] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 14.649332] microcode: CPU0 updated to revision 0xa0b, date = 2010-09-28
    [ 14.656959] microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    [ 14.660799] microcode: CPU1 updated to revision 0xa0b, date = 2010-09-28
    [ 14.668564] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 14.709327] ACPI: Requesting acpi_cpufreq
    [ 14.714946] Monitor-Mwait will be used to enter C-1 state
    [ 14.714973] Monitor-Mwait will be used to enter C-2 state
    [ 14.714989] Monitor-Mwait will be used to enter C-3 state
    [ 14.715001] tsc: Marking TSC unstable due to TSC halts in idle
    [ 14.715031] ACPI: acpi_idle registered with cpuidle
    [ 14.720557] Switching to clocksource hpet
    [ 14.757813] wmi: Mapper loaded
    [ 15.215288] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
    [ 15.215300] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 15.215306] ACPI Warning: 0x0000000000001180-0x00000000000011bf SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
    [ 15.215313] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 15.215315] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 15.303785] ACPI: Battery Slot [BAT1] (battery present)
    [ 15.405750] input: Dell WMI hotkeys as /devices/virtual/input/input8
    [ 15.417769] iTCO_vendor_support: vendor-support=0
    [ 15.430131] ACPI: AC Adapter [ACAD] (off-line)
    [ 15.471845] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 15.471895] iTCO_wdt: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x0460)
    [ 15.472076] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 15.585541] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 15.585549] Disabling lock debugging due to kernel taint
    [ 15.625424] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1a0b1, caps: 0xd04711/0xa00000/0x20000, board id: 3655, fw id: 528343
    [ 15.629342] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 15.654093] lib80211_crypt: registered algorithm 'TKIP'
    [ 15.654584] eth1: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 15.693893] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input9
    [ 15.816131] ACPI Warning: 0x0000000000001c00-0x0000000000001c1f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
    [ 15.816143] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.108446] Linux media interface: v0.10
    [ 16.120558] Linux video capture interface: v2.00
    [ 16.169228] usbcore: registered new interface driver uas
    [ 16.281166] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_1.3M (0c45:6415)
    [ 16.316308] Initializing USB Mass Storage driver...
    [ 16.316609] usbcore: registered new interface driver usb-storage
    [ 16.316613] USB Mass Storage support registered.
    [ 16.328744] input: Laptop_Integrated_Webcam_1.3M as /devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5:1.0/input/input10
    [ 16.328873] usbcore: registered new interface driver uvcvideo
    [ 16.328876] USB Video Class driver (1.1.1)
    [ 16.779720] usb 2-4: USB disconnect, device number 2
    [ 16.783629] scsi4 : usb-storage 2-4:1.0
    [ 16.783773] usbcore: registered new interface driver ums-realtek
    [ 17.381988] EXT4-fs (sda5): mounting ext3 file system using the ext4 subsystem
    [ 17.393596] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 21.567415] Adding 977880k swap on /dev/mapper/swap. Priority:-1 extents:1 across:977880k
    [ 21.656824] XFS (dm-1): Mounting Filesystem
    [ 21.839619] XFS (dm-1): Ending clean mount
    [ 21.940898] systemd-journald[163]: Received SIGUSR1
    [ 28.055735] r8169 0000:20:00.0: eth0: link down
    [ 28.055792] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 28.875645] Bluetooth: Core ver 2.16
    [ 28.875677] NET: Registered protocol family 31
    [ 28.875680] Bluetooth: HCI device and connection manager initialized
    [ 28.875684] Bluetooth: HCI socket layer initialized
    [ 28.875687] Bluetooth: L2CAP socket layer initialized
    [ 28.875695] Bluetooth: SCO socket layer initialized
    [ 29.041069] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 37.807702] fuse init (API version 7.20)
    [ 37.828734] EXT4-fs (sda5): re-mounted. Opts: commit=600
    lsmod
    Module Size Used by
    fuse 69173 2
    michael_mic 2074 8
    arc4 2039 4
    ecb 2105 0
    bnep 8857 2
    bluetooth 192120 7 bnep
    snd_seq 50881 1
    snd_seq_device 5268 1 snd_seq
    ums_realtek 7391 0
    usb_storage 47384 1 ums_realtek
    uvcvideo 72787 0
    videobuf2_vmalloc 2468 1 uvcvideo
    uas 11119 0
    videobuf2_memops 2246 1 videobuf2_vmalloc
    videobuf2_core 24030 1 uvcvideo
    videodev 100859 2 uvcvideo,videobuf2_core
    media 10405 2 uvcvideo,videodev
    i2c_i801 9571 0
    joydev 9991 0
    coretemp 6070 0
    kvm_intel 124749 0
    lib80211_crypt_tkip 7738 0
    wl 2558087 0
    kvm 373917 1 kvm_intel
    iTCO_wdt 5255 0
    iTCO_vendor_support 1929 1 iTCO_wdt
    dell_wmi 1485 0
    acpi_cpufreq 5933 1
    lpc_ich 10609 0
    ac 2536 0
    mperf 1267 1 acpi_cpufreq
    sparse_keymap 3056 1 dell_wmi
    battery 6773 0
    wmi 8379 1 dell_wmi
    dell_laptop 8787 0
    processor 26855 3 acpi_cpufreq
    evdev 10266 12
    psmouse 71909 0
    serio_raw 4689 0
    dcdbas 5520 1 dell_laptop
    lib80211 3949 2 wl,lib80211_crypt_tkip
    microcode 12377 0
    cfg80211 177108 1 wl
    rfkill 15604 5 cfg80211,bluetooth
    snd_hda_codec_hdmi 24487 1
    snd_hda_codec_realtek 61193 1
    snd_hda_intel 26180 3
    snd_hda_codec 98033 3 snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
    snd_hwdep 6428 1 snd_hda_codec
    snd_pcm_oss 38992 0
    snd_pcm 75689 5 snd_pcm_oss,snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
    snd_page_alloc 7217 2 snd_pcm,snd_hda_intel
    snd_timer 18934 3 snd_pcm,snd_seq
    snd_mixer_oss 15347 1 snd_pcm_oss
    snd 60188 16 snd_hda_codec_realtek,snd_pcm_oss,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_hda_codec,snd_hda_intel,snd_seq_device,snd_mixer_oss
    soundcore 5442 1 snd
    pcspkr 1899 0
    r8169 56839 0
    mii 4091 1 r8169
    nfs 127007 0
    lockd 64904 1 nfs
    sunrpc 186092 2 nfs,lockd
    fscache 40995 1 nfs
    ablk_helper 1972 0
    cryptd 8741 1 ablk_helper
    aes_x86_64 7508 6
    aes_generic 26138 1 aes_x86_64
    xts 3101 3
    gf128mul 6050 1 xts
    dm_crypt 15799 3
    dm_mod 72105 7 dm_crypt
    i915 495521 3
    video 11276 1 i915
    button 4662 1 i915
    i2c_algo_bit 5391 1 i915
    intel_agp 10744 1 i915
    intel_gtt 15659 3 i915,intel_agp
    drm_kms_helper 32877 1 i915
    drm 218852 4 i915,drm_kms_helper
    i2c_core 20707 6 drm,i915,i2c_i801,drm_kms_helper,i2c_algo_bit,videodev
    vfat 10119 0
    fat 48338 1 vfat
    xfs 748207 2
    ext4 440434 1
    crc16 1359 2 ext4,bluetooth
    jbd2 78751 1 ext4
    mbcache 5977 1 ext4
    uhci_hcd 23436 0
    ehci_hcd 41816 0
    sr_mod 14823 0
    usbcore 150398 6 uas,uhci_hcd,uvcvideo,ums_realtek,usb_storage,ehci_hcd
    usb_common 954 1 usbcore
    cdrom 35520 1 sr_mod
    sd_mod 29559 5
    ahci 21360 4
    libahci 20023 1 ahci
    libata 167683 2 ahci,libahci
    scsi_mod 133386 5 uas,usb_storage,libata,sd_mod,sr_mod
    lspci
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    08:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
    20:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 03)
    pacman -Q | grep ...
    alsa-lib 1.0.26-1
    alsa-plugins 1.0.26-1
    alsa-utils 1.0.26-1
    alsaplayer 0.99.81-5
    lib32-alsa-lib 1.0.26-1
    lib32-alsa-plugins 1.0.26-1
    lib32-libpulse 2.1-1
    lib32-libsndfile 1.0.25-2
    libcanberra-pulse 0.30-2
    libcdaudio 0.99.12-6
    libpulse 2.1-1
    libsndfile 1.0.25-2
    portaudio 19_20111121-1
    pulseaudio 2.1-1
    pulseaudio-alsa 2-1
    sound-juicer 3.5.0-1
    sound-theme-freedesktop 0.8-1
    soundtouch 1.6.0-1
    teamspeak-soundpack-portal 1-4
    webrtc-audio-processing 0.1-1
    pactl list
    Module #0
    Name: module-device-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore the volume/mute state of devices"
    module.version = "2.1"
    Module #1
    Name: module-stream-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore the volume/mute/device state of streams"
    module.version = "2.1"
    Module #2
    Name: module-card-restore
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Automatically restore profile of cards"
    module.version = "2.1"
    Module #3
    Name: module-augment-properties
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Augment the property sets of streams with additional static information"
    module.version = "2.1"
    Module #4
    Name: module-udev-detect
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "Lennart Poettering"
    module.description = "Detect available audio hardware and load matching drivers"
    module.version = "2.1"
    Module #5
    Name: module-jackdbus-detect
    Argument:
    Usage counter: n/a
    Properties:
    module.author = "David Henningsson"
    module.descript

    I set the loglevel to debug and rebooted.
    grep -i pulse /var/log/everything.log
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    Dec 3 00:06:34 localhost rtkit-daemon[442]: Successfully made thread 713 of process 713 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-util.c: RealtimeKit worked.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] core-util.c: Successfully gained nice level -11.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: This is PulseAudio 2.1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -Wno-long-long -Wvla -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running on host: Linux x86_64 3.6.8-1-ARCH #1 SMP PREEMPT Mon Nov 26 22:10:40 CET 2012
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Found 2 CPUs.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Page size is 4096 bytes
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Compiled with Valgrind support: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in valgrind mode: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in VM: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Optimized build: yes
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Machine ID is 883cea362d03be37758a39f4000006db.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using runtime directory /home/whatever/.pulse/883cea362d03be37758a39f4000006db-runtime.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using state directory /home/whatever/.pulse.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-2.1/modules.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Running in system mode: no
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] main.c: Fresh high-resolution timers available! Bon appetit!
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] memblock.c: Using shared memory pool with 1024 slots of size 64.0 KiB each, total size is 64.0 MiB, maximum usable slot size is 65472
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] cpu-x86.c: CPU flags: CMOV MMX SSE SSE2 SSE3 SSSE3 SSE4_1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_mmx.c: Initialising MMX optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] remap_mmx.c: Initialising MMX optimized remappers.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_sse.c: Initialising SSE2 optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] remap_sse.c: Initialising SSE2 optimized remappers.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] sconv_sse.c: Initialising SSE2 optimized conversions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] svolume_orc.c: Initialising ORC optimized volume functions.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-device-volumes.tdb'
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-device-volumes'.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-device-restore" (index: #0; argument: "").
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-stream-volumes.tdb'
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-stream-volumes'.
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1 added for object /org/pulseaudio/stream_restore1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry0
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry1
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry2
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry3
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry4
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Ext.StreamRestore1.RestoreEntry added for object /org/pulseaudio/stream_restore1/entry5
    Dec 3 01:06:34 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-stream-restore" (index: #1; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] database-tdb.c: Opened TDB database '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-card-database.tdb'
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-card-restore.c: Successfully opened database file '/home/whatever/.pulse/883cea362d03be37758a39f4000006db-card-database'.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-card-restore" (index: #2; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-augment-properties" (index: #3; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-udev-detect.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: /dev/snd/controlC0 is accessible: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: /devices/pci0000:00/0000:00:1b.0/sound/card0 is busy: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-udev-detect.c: Found 1 cards.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-udev-detect" (index: #4; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-jackdbus-detect.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus session bus f8aad50a9c72259e812fef8050bbed02 as :1.11
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-jackdbus-detect.c: jackdbus isn't running.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-jackdbus-detect" (index: #5; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-bluetooth-discover.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] dbus-util.c: Successfully connected to D-Bus system bus aca7467032ad6386c1a812c250bbecf9 as :1.27
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] bluetooth-util.c: dbus: interface=org.freedesktop.DBus, path=/org/freedesktop/DBus, member=NameAcquired
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-bluetooth-discover" (index: #6; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-esound-protocol-unix.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-esound-protocol-unix" (index: #7; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-native-protocol-unix" (index: #8; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-gconf.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-gconf" (index: #9; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-default-device-restore.c: Saved default sink 'auto_null' not existent, not restoring default sink setting.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-default-device-restore.c: Saved default source 'auto_null.monitor' not existent, not restoring default source setting.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-default-device-restore" (index: #10; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-rescue-streams" (index: #11; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-always-sink.c: Autoloading null-sink as no other sinks detected.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Restoring volume for sink auto_null.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: Created sink 0 "auto_null" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.description = "Dummy Output"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.class = "abstract"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] sink.c: device.icon_name = "audio-card"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: Created source 0 "auto_null.monitor" with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.description = "Monitor of Dummy Output"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.class = "monitor"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] source.c: device.icon_name = "audio-input-microphone"
    Dec 3 01:06:35 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Thread starting up
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Could not set format on sink auto_null
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-null-sink" (index: #12; argument: "sink_name=auto_null sink_properties='device.description="Dummy Output"'").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-always-sink" (index: #13; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-intended-roles" (index: #14; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-suspend-on-idle" (index: #15; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-console-kit.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-console-kit" (index: #16; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-systemd-login.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] client.c: Created 0 "Login Session 1"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-systemd-login.c: Added new session 1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-systemd-login" (index: #17; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-position-event-sounds" (index: #18; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-role-cork.c: Using role 'phone' as trigger role.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-role-cork.c: Using roles 'music' and 'video' as cork roles.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-role-cork" (index: #19; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-filter-heuristics" (index: #20; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-filter-apply" (index: #21; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] cli-command.c: Checking for existence of '/usr/lib/pulse-2.1/modules/module-dbus-protocol.so': success
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Memstats added for object /org/pulseaudio/core1/memstats
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Device added for object /org/pulseaudio/core1/sink0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Sink added for object /org/pulseaudio/core1/sink0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Device added for object /org/pulseaudio/core1/source0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Source added for object /org/pulseaudio/core1/source0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module2
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module3
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module4
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module5
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module6
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module7
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module8
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module9
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module10
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module11
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module12
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module13
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module14
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module15
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module16
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module17
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module18
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module19
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module20
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module21
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client0
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1 added for object /org/pulseaudio/core1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-dbus-protocol" (index: #22; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-switch-on-port-available" (index: #23; argument: "").
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Got org.PulseAudio1!
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Got org.pulseaudio.Server!
    Dec 3 01:06:35 localhost pulseaudio[710]: [pulseaudio] main.c: Daemon startup successful.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] main.c: Daemon startup complete.
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module22
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module23
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] client.c: Created 1 "Native client (UNIX socket client)"
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:35 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-settings-daemon
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Created 2 "Native client (UNIX socket client)"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client2
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-shell
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Found /usr/share/applications/gnome-shell.desktop.
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Created 3 "Native client (UNIX socket client)"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client3
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for canberra-gtk-play
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 3 "canberra-gtk-play"
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:37 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client3
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    Dec 3 00:06:38 localhost rtkit-daemon[442]: Successfully made thread 745 of process 745 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-util.c: RealtimeKit worked.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] core-util.c: Successfully gained nice level -11.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: This is PulseAudio 2.1
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wall -W -Wextra -Wno-long-long -Wvla -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -Wp,-D_FORTIFY_SOURCE=2 -fno-common -fdiagnostics-show-option
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running on host: Linux x86_64 3.6.8-1-ARCH #1 SMP PREEMPT Mon Nov 26 22:10:40 CET 2012
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Found 2 CPUs.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Page size is 4096 bytes
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Compiled with Valgrind support: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in valgrind mode: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in VM: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Optimized build: yes
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Machine ID is 883cea362d03be37758a39f4000006db.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using runtime directory /home/whatever/.pulse/883cea362d03be37758a39f4000006db-runtime.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using state directory /home/whatever/.pulse.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-2.1/modules.
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] main.c: Running in system mode: no
    Dec 3 01:06:38 localhost pulseaudio[745]: [pulseaudio] pid.c: Daemon already running.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 4 "Native client (UNIX socket client)"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client4
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-x11-publish" (index: #24; argument: "display=:0").
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module24
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 4 "pactl"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client4
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 5 "Native client (UNIX socket client)"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client5
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for pactl
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module-x11-xsmp.c: Connected to session manager 'gnome-session' as '102459fa9aeb823737135449319899169800000005480030'.
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] client.c: Created 6 "XSMP Session on gnome-session as 102459fa9aeb823737135449319899169800000005480030"
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] module.c: Loaded "module-x11-xsmp" (index: #25; argument: "display=:0 session_manager=local/whatever-laptop:@/tmp/.ICE-unix/548,unix/whatever-laptop:/tmp/.ICE-unix/548").
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client6
    Dec 3 01:06:38 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Module added for object /org/pulseaudio/core1/module25
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] client.c: Freed 5 "pactl"
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Connection died.
    Dec 3 01:06:39 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client removed from object /org/pulseaudio/core1/client5
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null idle for too long, suspending ...
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0004, suspending
    Dec 3 01:06:40 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:06:52 localhost pulseaudio[713]: [pulseaudio] client.c: Created 7 "Native client (UNIX socket client)"
    Dec 3 01:06:52 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Client added for object /org/pulseaudio/core1/client7
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Protocol version: remote 26, local 26
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Got credentials: uid=1000 gid=100 success=1
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: SHM possible: yes
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Negotiated SHM: yes
    Dec 3 01:06:54 localhost pulseaudio[713]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for gnome-shell
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Client gnome-shell changes volume of sink auto_null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:auto_null:null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Restoring device for stream sink-input-by-media-role:event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-intended-roles.c: Not setting device for stream audio-volume-change, because already set.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0000, resuming
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes busy.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Created input 0 "audio-volume-change" on auto_null with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: event.id = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.role = "event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.name = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-volume-change.oga"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.name = "GNOME Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.version = "26"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.id = "org.gnome.Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.id = "717"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.user = "whatever"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.host = "whatever-laptop"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.binary = "gnome-shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.language = "en_US.utf8"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: window.x11.display = ":0"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.machine_id = "883cea362d03be37758a39f4000006db"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] core-subscribe.c: Dropped redundant event due to change event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream added for object /org/pulseaudio/core1/playback_stream0
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Requesting rewind due to end of underrun.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Underrun on 'audio-volume-change', 0 bytes in queue.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Client gnome-shell changes volume of sink auto_null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Storing volume/mute for device+port sink:auto_null:null.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 352800 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 54188 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream removed from object /org/pulseaudio/core1/playback_stream0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Freeing input 0 "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-stream-restore.c: Restoring device for stream sink-input-by-media-role:event.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-intended-roles.c: Not setting device for stream audio-volume-change, because already set.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes busy.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=33554432, tlength=0, base=4, prebuf=0, minreq=1 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=33554432, tlength=33554432, base=4, prebuf=0, minreq=4 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Created input 1 "audio-volume-change" on auto_null with sample spec s16le 2ch 44100Hz and channel map front-left,front-right
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: event.id = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.role = "event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.name = "audio-volume-change"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: media.filename = "/usr/share//sounds/freedesktop/stereo/audio-volume-change.oga"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.name = "GNOME Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.peer = "UNIX socket client"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: native-protocol.version = "26"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.id = "org.gnome.Shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.id = "717"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.user = "whatever"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.host = "whatever-laptop"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.binary = "gnome-shell"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.language = "en_US.utf8"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: window.x11.display = ":0"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: application.process.machine_id = "883cea362d03be37758a39f4000006db"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] sink-input.c: module-stream-restore.id = "sink-input-by-media-role:event"
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested tlength=2000.00 ms, minreq=20.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Traditional mode enabled, modifying sink usec only for compat with minreq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Requested latency=1960.00 ms, Received latency=1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq requested: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] memblockq.c: memblockq sanitized: maxlength=4194304, tlength=352800, base=4, prebuf=349276, minreq=3528 maxrewind=0
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-native.c: Final latency 3960.00 ms = 1960.00 ms + 2*20.00 ms + 1960.00 ms
    Dec 3 01:08:18 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream added for object /org/pulseaudio/core1/playback_stream1
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Requesting rewind due to end of underrun.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] sink-input.c: Have to rewind 345744 bytes on render memblockq.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 345744 bytes.
    Dec 3 01:08:18 localhost pulseaudio[713]: [null-sink] protocol-native.c: Underrun on 'audio-volume-change', 0 bytes in queue.
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Requested to rewind 352800 bytes.
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] sink.c: Processing rewind...
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] source.c: Processing rewind...
    Dec 3 01:08:21 localhost pulseaudio[713]: [null-sink] module-null-sink.c: Rewound 352800 bytes.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null becomes idle, timeout in 5 seconds.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] protocol-dbus.c: Interface org.PulseAudio.Core1.Stream removed from object /org/pulseaudio/core1/playback_stream1
    Dec 3 01:08:21 localhost pulseaudio[713]: [pulseaudio] sink-input.c: Freeing input 1 "audio-volume-change"
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] module-suspend-on-idle.c: Sink auto_null idle for too long, suspending ...
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] sink.c: Suspend cause of sink auto_null is 0x0004, suspending
    Dec 3 01:08:26 localhost pulseaudio[713]: [pulseaudio] core.c: Hmm, no streams around, trying to vacuum.
    Dec 3 01:08:28 localhost pulseaudio[713]: [pulseaudio] module-device-restore.c: Synced.
    By now I also made my system not load any moudules which have oss in their name. Didn't help either.

  • 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)

  • [Solucionado] Arch no devuelve la screen despues de una larga

    Hola foro, despues de un tiempo de inactividad Arch es como que a la screen la tiene dormida eternamente, toco el mouse o algunas teclas del teclaado y no hay forma de que vuelva la screen. Los discos estan andando, internet esta andando, dejo la PC como siempre encendida todo el dia.
    Tengo que apagar Arch desde el boton apagar de la PC, y alli si me muestra el shutown, osea, vuelve la screen, pero tarde porque se esta apagando.
    Esto me empezo a pasar hace dos actualizaciones, osea, ya actualize a la ultima, y el problema vien desde la anteultima actualizacion, lo pongo asi porque no recuerdo las versiones.
    Nose si alguno les paso o les pasa, y si pueden darme una mano con este problema, les dejo la salida del comando journalctl -b -l y la salida del comando dmesg.
    journalctl -b -l
    -- Logs begin at mié 2013-12-25 10:22:09 ART, end at dom 2015-04-12 10:23:42 ART. --
    abr 12 10:23:05 Desktop-i7 systemd-journal[191]: Runtime journal is using 8.0M (max allowed 393.2M, trying to leave 589.9M free of 3.8G available → current limit 393.2M).
    abr 12 10:23:05 Desktop-i7 systemd-journal[191]: Permanent journal is using 2.8G (max allowed 3.0G, trying to leave 4.0G free of 13.8G available → current limit 3.0G).
    abr 12 10:23:05 Desktop-i7 systemd-journal[191]: Time spent on flushing to /var is 264.104ms for 2 entries.
    abr 12 10:23:05 Desktop-i7 kernel: Initializing cgroup subsys cpuset
    abr 12 10:23:05 Desktop-i7 kernel: Initializing cgroup subsys cpu
    abr 12 10:23:06 Desktop-i7 kernel: Initializing cgroup subsys cpuacct
    abr 12 10:23:06 Desktop-i7 kernel: Linux version 3.19.3-3-ARCH (builduser@tobias) (gcc version 4.9.2 20150304 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Apr 8 14:10:00 CEST 2015
    abr 12 10:23:06 Desktop-i7 kernel: Command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sdd3 rw vga=773 initrd=../initramfs-linux.img
    abr 12 10:23:06 Desktop-i7 kernel: e820: BIOS-provided physical RAM map:
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000095e12fff] usable
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x0000000095e13000-0x0000000095e19fff] ACPI NVS
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x0000000095e1a000-0x0000000096277fff] usable
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x0000000096278000-0x00000000966dcfff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000966dd000-0x00000000b8bb3fff] usable
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000b8bb4000-0x00000000b8dc5fff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000b8dc6000-0x00000000b8de6fff] ACPI data
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000b8de7000-0x00000000b930ffff] ACPI NVS
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000b9310000-0x00000000b9ffefff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000b9fff000-0x00000000b9ffffff] usable
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000bb000000-0x00000000bf1fffff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    abr 12 10:23:06 Desktop-i7 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000023fdfffff] usable
    abr 12 10:23:06 Desktop-i7 kernel: NX (Execute Disable) protection: active
    abr 12 10:23:06 Desktop-i7 kernel: SMBIOS 2.8 present.
    abr 12 10:23:06 Desktop-i7 kernel: DMI: ASUS All Series/Z97-A, BIOS 1204 06/20/2014
    abr 12 10:23:06 Desktop-i7 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    abr 12 10:23:06 Desktop-i7 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    abr 12 10:23:06 Desktop-i7 kernel: AGP: No AGP bridge found
    abr 12 10:23:06 Desktop-i7 kernel: e820: last_pfn = 0x23fe00 max_arch_pfn = 0x400000000
    abr 12 10:23:06 Desktop-i7 kernel: MTRR default type: uncachable
    abr 12 10:23:06 Desktop-i7 kernel: MTRR fixed ranges enabled:
    abr 12 10:23:06 Desktop-i7 kernel: 00000-9FFFF write-back
    abr 12 10:23:06 Desktop-i7 kernel: A0000-BFFFF uncachable
    abr 12 10:23:06 Desktop-i7 kernel: C0000-CFFFF write-protect
    abr 12 10:23:06 Desktop-i7 kernel: D0000-E7FFF uncachable
    abr 12 10:23:06 Desktop-i7 kernel: E8000-FFFFF write-protect
    abr 12 10:23:06 Desktop-i7 kernel: MTRR variable ranges enabled:
    abr 12 10:23:06 Desktop-i7 kernel: 0 base 0000000000 mask 7E00000000 write-back
    abr 12 10:23:06 Desktop-i7 kernel: 1 base 0200000000 mask 7FC0000000 write-back
    abr 12 10:23:06 Desktop-i7 kernel: 2 base 00C0000000 mask 7FC0000000 uncachable
    abr 12 10:23:06 Desktop-i7 kernel: 3 base 00BC000000 mask 7FFC000000 uncachable
    abr 12 10:23:06 Desktop-i7 kernel: 4 base 00BB000000 mask 7FFF000000 uncachable
    abr 12 10:23:06 Desktop-i7 kernel: 5 base 023FE00000 mask 7FFFE00000 uncachable
    abr 12 10:23:06 Desktop-i7 kernel: 6 disabled
    abr 12 10:23:06 Desktop-i7 kernel: 7 disabled
    abr 12 10:23:06 Desktop-i7 kernel: 8 disabled
    abr 12 10:23:06 Desktop-i7 kernel: 9 disabled
    abr 12 10:23:06 Desktop-i7 kernel: PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
    abr 12 10:23:06 Desktop-i7 kernel: e820: update [mem 0xbb000000-0xffffffff] usable ==> reserved
    abr 12 10:23:06 Desktop-i7 kernel: e820: last_pfn = 0xba000 max_arch_pfn = 0x400000000
    abr 12 10:23:06 Desktop-i7 kernel: found SMP MP-table at [mem 0x000fd8c0-0x000fd8cf] mapped at [ffff8800000fd8c0]
    abr 12 10:23:06 Desktop-i7 kernel: Scanning 1 areas for low memory corruption
    abr 12 10:23:06 Desktop-i7 kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    abr 12 10:23:06 Desktop-i7 kernel: Using GB pages for direct mapping
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x00000000-0x000fffff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    abr 12 10:23:06 Desktop-i7 kernel: BRK [0x01b33000, 0x01b33fff] PGTABLE
    abr 12 10:23:06 Desktop-i7 kernel: BRK [0x01b34000, 0x01b34fff] PGTABLE
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x23fc00000-0x23fdfffff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x23fc00000-0x23fdfffff] page 2M
    abr 12 10:23:06 Desktop-i7 kernel: BRK [0x01b35000, 0x01b35fff] PGTABLE
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x220000000-0x23fbfffff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x220000000-0x23fbfffff] page 2M
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x200000000-0x21fffffff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x200000000-0x21fffffff] page 2M
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x00100000-0x95e12fff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x00100000-0x001fffff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x00200000-0x3fffffff] page 2M
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x40000000-0x7fffffff] page 1G
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x80000000-0x95dfffff] page 2M
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x95e00000-0x95e12fff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x95e1a000-0x96277fff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x95e1a000-0x95ffffff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x96000000-0x961fffff] page 2M
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x96200000-0x96277fff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x966dd000-0xb8bb3fff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x966dd000-0x967fffff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x96800000-0xb89fffff] page 2M
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0xb8a00000-0xb8bb3fff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0xb9fff000-0xb9ffffff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0xb9fff000-0xb9ffffff] page 4k
    abr 12 10:23:06 Desktop-i7 kernel: init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    abr 12 10:23:06 Desktop-i7 kernel: [mem 0x100000000-0x1ffffffff] page 1G
    abr 12 10:23:06 Desktop-i7 kernel: RAMDISK: [mem 0x7fbe5000-0x7fffffff]
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: Early table checksum verification disabled
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: XSDT 0x00000000B8DCC080 000074 (v01 ALASKA A M I 01072009 AMI 00010013)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: FACP 0x00000000B8DDE7F8 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: DSDT 0x00000000B8DCC188 01266D (v02 ALASKA A M I 00000006 INTL 20120711)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: FACS 0x00000000B930FF80 000040
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: APIC 0x00000000B8DDE908 000092 (v03 ALASKA A M I 01072009 AMI 00010013)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: FPDT 0x00000000B8DDE9A0 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: SSDT 0x00000000B8DDE9E8 000BEE (v01 Ther_R Ther_Rvp 00001000 INTL 20120711)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: SSDT 0x00000000B8DDF5D8 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: SSDT 0x00000000B8DDFB18 000B74 (v01 CpuRef CpuSsdt 00003000 INTL 20051117)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: MCFG 0x00000000B8DE0690 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: HPET 0x00000000B8DE06D0 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: SSDT 0x00000000B8DE0708 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: SSDT 0x00000000B8DE0A78 005B5E (v01 SaSsdt SaSsdt 00003000 INTL 20120711)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: Local APIC address 0xfee00000
    abr 12 10:23:06 Desktop-i7 kernel: No NUMA configuration found
    abr 12 10:23:06 Desktop-i7 kernel: Faking a node at [mem 0x0000000000000000-0x000000023fdfffff]
    abr 12 10:23:06 Desktop-i7 kernel: NODE_DATA(0) allocated [mem 0x23fdf8000-0x23fdfbfff]
    abr 12 10:23:06 Desktop-i7 kernel: [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237400000-ffff88023f3fffff] on node 0
    abr 12 10:23:06 Desktop-i7 kernel: Zone ranges:
    abr 12 10:23:06 Desktop-i7 kernel: DMA [mem 0x00001000-0x00ffffff]
    abr 12 10:23:06 Desktop-i7 kernel: DMA32 [mem 0x01000000-0xffffffff]
    abr 12 10:23:06 Desktop-i7 kernel: Normal [mem 0x100000000-0x23fdfffff]
    abr 12 10:23:06 Desktop-i7 kernel: Movable zone start for each node
    abr 12 10:23:06 Desktop-i7 kernel: Early memory node ranges
    abr 12 10:23:06 Desktop-i7 kernel: node 0: [mem 0x00001000-0x0009cfff]
    abr 12 10:23:06 Desktop-i7 kernel: node 0: [mem 0x00100000-0x95e12fff]
    abr 12 10:23:06 Desktop-i7 kernel: node 0: [mem 0x95e1a000-0x96277fff]
    abr 12 10:23:06 Desktop-i7 kernel: node 0: [mem 0x966dd000-0xb8bb3fff]
    abr 12 10:23:06 Desktop-i7 kernel: node 0: [mem 0xb9fff000-0xb9ffffff]
    abr 12 10:23:06 Desktop-i7 kernel: node 0: [mem 0x100000000-0x23fdfffff]
    abr 12 10:23:06 Desktop-i7 kernel: Initmem setup node 0 [mem 0x00001000-0x23fdfffff]
    abr 12 10:23:06 Desktop-i7 kernel: On node 0 totalpages: 2065637
    abr 12 10:23:06 Desktop-i7 kernel: DMA zone: 64 pages used for memmap
    abr 12 10:23:06 Desktop-i7 kernel: DMA zone: 21 pages reserved
    abr 12 10:23:06 Desktop-i7 kernel: DMA zone: 3996 pages, LIFO batch:0
    abr 12 10:23:06 Desktop-i7 kernel: DMA32 zone: 11742 pages used for memmap
    abr 12 10:23:06 Desktop-i7 kernel: DMA32 zone: 751433 pages, LIFO batch:31
    abr 12 10:23:06 Desktop-i7 kernel: Normal zone: 20472 pages used for memmap
    abr 12 10:23:06 Desktop-i7 kernel: Normal zone: 1310208 pages, LIFO batch:31
    abr 12 10:23:06 Desktop-i7 kernel: Reserving Intel graphics stolen memory at 0xbb200000-0xbf1fffff
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: PM-Timer IO Port: 0x1808
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: Local APIC address 0xfee00000
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    abr 12 10:23:06 Desktop-i7 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: IRQ0 used by override.
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: IRQ9 used by override.
    abr 12 10:23:06 Desktop-i7 kernel: Using ACPI (MADT) for SMP configuration information
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    abr 12 10:23:06 Desktop-i7 kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0x95e13000-0x95e19fff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0x96278000-0x966dcfff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xb8bb4000-0xb8dc5fff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xb8dc6000-0xb8de6fff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xb8de7000-0xb930ffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xb9310000-0xb9ffefff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xba000000-0xbaffffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xbb000000-0xbf1fffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xbf200000-0xdfffffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    abr 12 10:23:06 Desktop-i7 kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    abr 12 10:23:06 Desktop-i7 kernel: e820: [mem 0xbf200000-0xdfffffff] available for PCI devices
    abr 12 10:23:06 Desktop-i7 kernel: Booting paravirtualized kernel on bare hardware
    abr 12 10:23:06 Desktop-i7 kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    abr 12 10:23:06 Desktop-i7 kernel: PERCPU: Embedded 31 pages/cpu @ffff88023fa00000 s86336 r8192 d32448 u262144
    abr 12 10:23:06 Desktop-i7 kernel: pcpu-alloc: s86336 r8192 d32448 u262144 alloc=1*2097152
    abr 12 10:23:06 Desktop-i7 kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    abr 12 10:23:06 Desktop-i7 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 2033338
    abr 12 10:23:06 Desktop-i7 kernel: Policy zone: Normal
    abr 12 10:23:06 Desktop-i7 kernel: Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sdd3 rw vga=773 initrd=../initramfs-linux.img
    abr 12 10:23:06 Desktop-i7 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    abr 12 10:23:06 Desktop-i7 kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    abr 12 10:23:06 Desktop-i7 kernel: AGP: Checking aperture...
    abr 12 10:23:06 Desktop-i7 kernel: AGP: No AGP bridge found
    abr 12 10:23:06 Desktop-i7 kernel: Calgary: detecting Calgary via BIOS EBDA area
    abr 12 10:23:06 Desktop-i7 kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    abr 12 10:23:06 Desktop-i7 kernel: Memory: 8048372K/8262548K available (5534K kernel code, 917K rwdata, 1744K rodata, 1164K init, 1156K bss, 214176K reserved, 0K cma-reserved)
    abr 12 10:23:06 Desktop-i7 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    abr 12 10:23:06 Desktop-i7 kernel: Preemptible hierarchical RCU implementation.
    abr 12 10:23:06 Desktop-i7 kernel: RCU dyntick-idle grace-period acceleration is enabled.
    abr 12 10:23:06 Desktop-i7 kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    abr 12 10:23:06 Desktop-i7 kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    abr 12 10:23:06 Desktop-i7 kernel: NR_IRQS:8448 nr_irqs:488 16
    abr 12 10:23:06 Desktop-i7 kernel: Console: colour dummy device 80x25
    abr 12 10:23:06 Desktop-i7 kernel: console [tty0] enabled
    abr 12 10:23:06 Desktop-i7 kernel: hpet clockevent registered
    abr 12 10:23:06 Desktop-i7 kernel: tsc: Fast TSC calibration using PIT
    abr 12 10:23:06 Desktop-i7 kernel: spurious 8259A interrupt: IRQ7.
    abr 12 10:23:06 Desktop-i7 kernel: tsc: Detected 3597.681 MHz processor
    abr 12 10:23:06 Desktop-i7 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7198.16 BogoMIPS (lpj=11992270)
    abr 12 10:23:06 Desktop-i7 kernel: pid_max: default: 32768 minimum: 301
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: Core revision 20141107
    abr 12 10:23:06 Desktop-i7 kernel: ACPI: All ACPI Tables successfully acquired
    abr 12 10:23:06 Desktop-i7 kernel: Security Framework initialized
    abr 12 10:23:06 Desktop-i7 kernel: Yama: becoming mindful.
    abr 12 10:23:06 Desktop-i7 kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    abr 12 10:23:06 Desktop-i7 kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    abr 12 10:23:06 Desktop-i7 kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    abr 12 10:23:06 Desktop-i7 kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    abr 12 10:23:06 Desktop-i7 kernel: Initializing cgroup subsys memory
    abr 12 10:23:06 Desktop-i7 kernel: Initializing cgroup subsys devices
    abr 12 10:23:06 Desktop-i7 kernel: Initializing cgroup subsys freezer
    abr 12 10:23:06 Desktop-i7 kernel: Initializing cgroup subsys net_cls
    abr 12 10:23:06 Desktop-i7 kernel: Initializing cgroup subsys blkio
    abr 12 10:23:07 Desktop-i7 kernel: CPU: Physical Processor ID: 0
    abr 12 10:23:07 Desktop-i7 kernel: CPU: Processor Core ID: 0
    abr 12 10:23:07 Desktop-i7 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    abr 12 10:23:07 Desktop-i7 kernel: mce: CPU supports 9 MCE banks
    abr 12 10:23:07 Desktop-i7 kernel: CPU0: Thermal monitoring enabled (TM1)
    abr 12 10:23:07 Desktop-i7 kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    abr 12 10:23:07 Desktop-i7 kernel: Freeing SMP alternatives memory: 20K (ffffffff81a0a000 - ffffffff81a0f000)
    abr 12 10:23:07 Desktop-i7 kernel: ftrace: allocating 21171 entries in 83 pages
    abr 12 10:23:07 Desktop-i7 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    abr 12 10:23:07 Desktop-i7 kernel: smpboot: CPU0: Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (fam: 06, model: 3c, stepping: 03)
    abr 12 10:23:07 Desktop-i7 kernel: TSC deadline timer enabled
    abr 12 10:23:07 Desktop-i7 kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    abr 12 10:23:07 Desktop-i7 kernel: ... version: 3
    abr 12 10:23:07 Desktop-i7 kernel: ... bit width: 48
    abr 12 10:23:07 Desktop-i7 kernel: ... generic registers: 4
    abr 12 10:23:07 Desktop-i7 kernel: ... value mask: 0000ffffffffffff
    abr 12 10:23:07 Desktop-i7 kernel: ... max period: 0000ffffffffffff
    abr 12 10:23:07 Desktop-i7 kernel: ... fixed-purpose events: 3
    abr 12 10:23:07 Desktop-i7 kernel: ... event mask: 000000070000000f
    abr 12 10:23:07 Desktop-i7 kernel: x86: Booting SMP configuration:
    abr 12 10:23:07 Desktop-i7 kernel: .... node #0, CPUs: #1
    abr 12 10:23:07 Desktop-i7 kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    abr 12 10:23:07 Desktop-i7 kernel: #2 #3 #4 #5 #6 #7
    abr 12 10:23:07 Desktop-i7 kernel: x86: Booted up 1 node, 8 CPUs
    abr 12 10:23:07 Desktop-i7 kernel: smpboot: Total of 8 processors activated (57585.35 BogoMIPS)
    abr 12 10:23:07 Desktop-i7 kernel: devtmpfs: initialized
    abr 12 10:23:07 Desktop-i7 kernel: PM: Registering ACPI NVS region [mem 0x95e13000-0x95e19fff] (28672 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: PM: Registering ACPI NVS region [mem 0xb8de7000-0xb930ffff] (5410816 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: pinctrl core: initialized pinctrl subsystem
    abr 12 10:23:07 Desktop-i7 kernel: RTC time: 10:23:00, date: 04/12/15
    abr 12 10:23:07 Desktop-i7 kernel: NET: Registered protocol family 16
    abr 12 10:23:07 Desktop-i7 kernel: cpuidle: using governor ladder
    abr 12 10:23:07 Desktop-i7 kernel: cpuidle: using governor menu
    abr 12 10:23:07 Desktop-i7 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: bus type PCI registered
    abr 12 10:23:07 Desktop-i7 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    abr 12 10:23:07 Desktop-i7 kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    abr 12 10:23:07 Desktop-i7 kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    abr 12 10:23:07 Desktop-i7 kernel: PCI: Using configuration type 1 for base access
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Added _OSI(Module Device)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Added _OSI(Processor Device)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Added _OSI(Processor Aggregator Device)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Executed 13 blocks of module-level executable AML code
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Dynamic OEM Table Load:
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: SSDT 0xFFFF880235EEA800 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Dynamic OEM Table Load:
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: SSDT 0xFFFF880235E3A000 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Dynamic OEM Table Load:
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: SSDT 0xFFFF880235EE1C00 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Interpreter enabled
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: (supports S0 S3 S4 S5)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Using IOAPIC for interrupt routing
    abr 12 10:23:07 Desktop-i7 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [PG00] (on)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [PG01] (on)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [PG02] (on)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [FN00] (off)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [FN01] (off)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [FN02] (off)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [FN03] (off)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Resource [FN04] (off)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    abr 12 10:23:07 Desktop-i7 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    abr 12 10:23:07 Desktop-i7 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    abr 12 10:23:07 Desktop-i7 kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    abr 12 10:23:07 Desktop-i7 kernel: PCI host bridge to bus 0000:00
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: root bus resource [mem 0xbf200000-0xfeafffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:02.0: [8086:0412] type 00 class 0x030000
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:02.0: reg 0x10: [mem 0xdf800000-0xdfbfffff 64bit]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:03.0: reg 0x10: [mem 0xdfc34000-0xdfc37fff 64bit]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:14.0: [8086:8cb1] type 00 class 0x0c0330
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:14.0: reg 0x10: [mem 0xdfc20000-0xdfc2ffff 64bit]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:16.0: [8086:8cba] type 00 class 0x078000
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:16.0: reg 0x10: [mem 0xdfc3e000-0xdfc3e00f 64bit]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:19.0: [8086:15a1] type 00 class 0x020000
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:19.0: reg 0x10: [mem 0xdfc00000-0xdfc1ffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:19.0: reg 0x14: [mem 0xdfc3c000-0xdfc3cfff]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:19.0: reg 0x18: [io 0xf080-0xf09f]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:19.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1a.0: [8086:8cad] type 00 class 0x0c0320
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xdfc3b000-0xdfc3b3ff]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1b.0: [8086:8ca0] type 00 class 0x040300
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xdfc30000-0xdfc33fff 64bit]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.0: [8086:8c90] type 01 class 0x060400
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: [8086:244e] type 01 class 0x060401
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1d.0: [8086:8ca6] type 00 class 0x0c0320
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xdfc3a000-0xdfc3a3ff]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.0: [8086:8cc4] type 00 class 0x060100
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: [8086:8c82] type 00 class 0x010601
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: reg 0x10: [io 0xf0d0-0xf0d7]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: reg 0x14: [io 0xf0c0-0xf0c3]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: reg 0x18: [io 0xf0b0-0xf0b7]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: reg 0x1c: [io 0xf0a0-0xf0a3]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xdfc39000-0xdfc397ff]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.2: PME# supported from D3hot
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.3: [8086:8ca2] type 00 class 0x0c0500
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xdfc38000-0xdfc380ff 64bit]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    abr 12 10:23:07 Desktop-i7 kernel: acpiphp: Slot [1] registered
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: [1b21:1080] type 01 class 0x060401
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: System wakeup disabled by ACPI
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: PCI bridge to [bus 03-04] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [io 0x0d00-0xffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: bridge window [mem 0xbf200000-0xfeafffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: PCI bridge to [bus 04] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: bridge window [mem 0xbf200000-0xfeafffff] (subtractive decode)
    abr 12 10:23:07 Desktop-i7 kernel: acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 *6 7 10 11 12 14 15)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 *15)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 7 10 11 12 14 15)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 *14 15)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Enabled 5 GPEs in block 00 to 3F
    abr 12 10:23:07 Desktop-i7 kernel: ACPI : EC: GPE = 0x1e, I/O: command/status = 0x66, data = 0x62
    abr 12 10:23:07 Desktop-i7 kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
    abr 12 10:23:07 Desktop-i7 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    abr 12 10:23:07 Desktop-i7 kernel: vgaarb: loaded
    abr 12 10:23:07 Desktop-i7 kernel: vgaarb: bridge control possible 0000:00:02.0
    abr 12 10:23:07 Desktop-i7 kernel: PCI: Using ACPI for IRQ routing
    abr 12 10:23:07 Desktop-i7 kernel: PCI: pci_cache_line_size set to 64 bytes
    abr 12 10:23:07 Desktop-i7 kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    abr 12 10:23:07 Desktop-i7 kernel: e820: reserve RAM buffer [mem 0x95e13000-0x97ffffff]
    abr 12 10:23:07 Desktop-i7 kernel: e820: reserve RAM buffer [mem 0x96278000-0x97ffffff]
    abr 12 10:23:07 Desktop-i7 kernel: e820: reserve RAM buffer [mem 0xb8bb4000-0xbbffffff]
    abr 12 10:23:07 Desktop-i7 kernel: e820: reserve RAM buffer [mem 0xba000000-0xbbffffff]
    abr 12 10:23:07 Desktop-i7 kernel: e820: reserve RAM buffer [mem 0x23fe00000-0x23fffffff]
    abr 12 10:23:07 Desktop-i7 kernel: NetLabel: Initializing
    abr 12 10:23:07 Desktop-i7 kernel: NetLabel: domain hash size = 128
    abr 12 10:23:07 Desktop-i7 kernel: NetLabel: protocols = UNLABELED CIPSOv4
    abr 12 10:23:07 Desktop-i7 kernel: NetLabel: unlabeled traffic allowed by default
    abr 12 10:23:07 Desktop-i7 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    abr 12 10:23:07 Desktop-i7 kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    abr 12 10:23:07 Desktop-i7 kernel: Switched to clocksource hpet
    abr 12 10:23:07 Desktop-i7 kernel: pnp: PnP ACPI init
    abr 12 10:23:07 Desktop-i7 kernel: system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    abr 12 10:23:07 Desktop-i7 kernel: system 00:01: [io 0x0800-0x087f] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    abr 12 10:23:07 Desktop-i7 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    abr 12 10:23:07 Desktop-i7 kernel: system 00:03: [io 0x1854-0x1857] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    abr 12 10:23:07 Desktop-i7 kernel: system 00:04: [io 0x0290-0x029f] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:04: [io 0x02a0-0x02af] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:04: [io 0x0a00-0x0aff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    abr 12 10:23:07 Desktop-i7 kernel: system 00:05: [io 0x04d0-0x04d1] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    abr 12 10:23:07 Desktop-i7 kernel: pnp 00:06: [dma 0 disabled]
    abr 12 10:23:07 Desktop-i7 kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfed90000-0xfed93fff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xff000000-0xffffffff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: [mem 0xdffe0000-0xdffeffff] has been reserved
    abr 12 10:23:07 Desktop-i7 kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    abr 12 10:23:07 Desktop-i7 kernel: pnp: PnP ACPI: found 8 devices
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:1c.3: PCI bridge to [bus 03-04]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:00: resource 13 [mem 0xbf200000-0xfeafffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000d3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 8 [mem 0x000d4000-0x000d7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 9 [mem 0x000d8000-0x000dbfff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 10 [mem 0x000dc000-0x000dffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 11 [mem 0x000e0000-0x000e3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 12 [mem 0x000e4000-0x000e7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:03: resource 13 [mem 0xbf200000-0xfeafffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000d3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 8 [mem 0x000d4000-0x000d7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 9 [mem 0x000d8000-0x000dbfff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 10 [mem 0x000dc000-0x000dffff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 11 [mem 0x000e0000-0x000e3fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 12 [mem 0x000e4000-0x000e7fff]
    abr 12 10:23:07 Desktop-i7 kernel: pci_bus 0000:04: resource 13 [mem 0xbf200000-0xfeafffff]
    abr 12 10:23:07 Desktop-i7 kernel: NET: Registered protocol family 2
    abr 12 10:23:07 Desktop-i7 kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: TCP: Hash tables configured (established 65536 bind 65536)
    abr 12 10:23:07 Desktop-i7 kernel: TCP: reno registered
    abr 12 10:23:07 Desktop-i7 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: NET: Registered protocol family 1
    abr 12 10:23:07 Desktop-i7 kernel: pci 0000:00:02.0: Video device with shadowed ROM
    abr 12 10:23:07 Desktop-i7 kernel: PCI: CLS 64 bytes, default 64
    abr 12 10:23:07 Desktop-i7 kernel: Unpacking initramfs...
    abr 12 10:23:07 Desktop-i7 kernel: Freeing initrd memory: 4204K (ffff88007fbe5000 - ffff880080000000)
    abr 12 10:23:07 Desktop-i7 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    abr 12 10:23:07 Desktop-i7 kernel: software IO TLB [mem 0xb4bb4000-0xb8bb4000] (64MB) mapped at [ffff8800b4bb4000-ffff8800b8bb3fff]
    abr 12 10:23:07 Desktop-i7 kernel: RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU2 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU3 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU4 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU5 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU6 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: CPU7 sig=0x306c3, pf=0x2, revision=0x19
    abr 12 10:23:07 Desktop-i7 kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    abr 12 10:23:07 Desktop-i7 kernel: Scanning for low memory corruption every 60 seconds
    abr 12 10:23:07 Desktop-i7 kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: Initialise system trusted keyring
    abr 12 10:23:07 Desktop-i7 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    abr 12 10:23:07 Desktop-i7 kernel: zpool: loaded
    abr 12 10:23:07 Desktop-i7 kernel: zbud: loaded
    abr 12 10:23:07 Desktop-i7 kernel: VFS: Disk quotas dquot_6.5.2
    abr 12 10:23:07 Desktop-i7 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    abr 12 10:23:07 Desktop-i7 kernel: Key type big_key registered
    abr 12 10:23:07 Desktop-i7 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    abr 12 10:23:07 Desktop-i7 kernel: io scheduler noop registered
    abr 12 10:23:07 Desktop-i7 kernel: io scheduler deadline registered
    abr 12 10:23:07 Desktop-i7 kernel: io scheduler cfq registered (default)
    abr 12 10:23:07 Desktop-i7 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    abr 12 10:23:07 Desktop-i7 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    abr 12 10:23:07 Desktop-i7 kernel: vesafb: mode is 1024x768x8, linelength=1024, pages=84
    abr 12 10:23:07 Desktop-i7 kernel: vesafb: scrolling: redraw
    abr 12 10:23:07 Desktop-i7 kernel: vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    abr 12 10:23:07 Desktop-i7 kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 1536k, total 65472k
    abr 12 10:23:07 Desktop-i7 kernel: Console: switching to colour frame buffer device 128x48
    abr 12 10:23:07 Desktop-i7 kernel: fb0: VESA VGA frame buffer device
    abr 12 10:23:07 Desktop-i7 kernel: intel_idle: MWAIT substates: 0x42120
    abr 12 10:23:07 Desktop-i7 kernel: intel_idle: v0.4 model 0x3C
    abr 12 10:23:07 Desktop-i7 kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    abr 12 10:23:07 Desktop-i7 kernel: GHES: HEST is not enabled!
    abr 12 10:23:07 Desktop-i7 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    abr 12 10:23:07 Desktop-i7 kernel: 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    abr 12 10:23:07 Desktop-i7 kernel: Linux agpgart interface v0.103
    abr 12 10:23:07 Desktop-i7 kernel: rtc_cmos 00:02: RTC can wake from S4
    abr 12 10:23:07 Desktop-i7 kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    abr 12 10:23:07 Desktop-i7 kernel: rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    abr 12 10:23:07 Desktop-i7 kernel: Intel P-state driver initializing.
    abr 12 10:23:07 Desktop-i7 kernel: ledtrig-cpu: registered to indicate activity on CPUs
    abr 12 10:23:07 Desktop-i7 kernel: TCP: cubic registered
    abr 12 10:23:07 Desktop-i7 kernel: NET: Registered protocol family 10
    abr 12 10:23:07 Desktop-i7 kernel: NET: Registered protocol family 17
    abr 12 10:23:07 Desktop-i7 kernel: Loading compiled-in X.509 certificates
    abr 12 10:23:07 Desktop-i7 kernel: registered taskstats version 1
    abr 12 10:23:07 Desktop-i7 kernel: Magic number: 11:769:375
    abr 12 10:23:07 Desktop-i7 kernel: rtc_cmos 00:02: setting system clock to 2015-04-12 10:23:00 UTC (1428834180)
    abr 12 10:23:07 Desktop-i7 kernel: PM: Hibernation image not present or could not be loaded.
    abr 12 10:23:07 Desktop-i7 kernel: Freeing unused kernel memory: 1164K (ffffffff818e7000 - ffffffff81a0a000)
    abr 12 10:23:07 Desktop-i7 kernel: Write protecting the kernel read-only data: 8192k
    abr 12 10:23:07 Desktop-i7 kernel: Freeing unused kernel memory: 600K (ffff88000156a000 - ffff880001600000)
    abr 12 10:23:07 Desktop-i7 kernel: Freeing unused kernel memory: 304K (ffff8800017b4000 - ffff880001800000)
    abr 12 10:23:07 Desktop-i7 kernel: random: systemd-tmpfile urandom read with 1 bits of entropy available
    abr 12 10:23:07 Desktop-i7 kernel: [drm] Initialized drm 1.1.0 20060810
    abr 12 10:23:07 Desktop-i7 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Button [PWRB]
    abr 12 10:23:07 Desktop-i7 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Power Button [PWRF]
    abr 12 10:23:07 Desktop-i7 kernel: [drm] Memory usable by graphics device = 2048M
    abr 12 10:23:07 Desktop-i7 kernel: checking generic (c0000000 3ff0000) vs hw (c0000000 10000000)
    abr 12 10:23:07 Desktop-i7 kernel: fb: switching to inteldrmfb from VESA VGA
    abr 12 10:23:07 Desktop-i7 kernel: Console: switching to colour dummy device 80x25
    abr 12 10:23:07 Desktop-i7 kernel: [drm] Replacing VGA console driver
    abr 12 10:23:07 Desktop-i7 kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    abr 12 10:23:07 Desktop-i7 kernel: [drm] Driver supports precise vblank timestamp query.
    abr 12 10:23:07 Desktop-i7 kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    abr 12 10:23:07 Desktop-i7 kernel: acpi device:16: registered as cooling_device0
    abr 12 10:23:07 Desktop-i7 kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
    abr 12 10:23:07 Desktop-i7 kernel: [drm] Initialized i915 1.6.0 20141121 for 0000:00:02.0 on minor 0
    abr 12 10:23:07 Desktop-i7 kernel: fbcon: inteldrmfb (fb0) is primary device
    abr 12 10:23:07 Desktop-i7 kernel: Console: switching to colour frame buffer device 240x67
    abr 12 10:23:07 Desktop-i7 kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    abr 12 10:23:07 Desktop-i7 kernel: i915 0000:00:02.0: registered panic notifier
    abr 12 10:23:07 Desktop-i7 kernel: sdhci: Secure Digital Host Controller Interface driver
    abr 12 10:23:07 Desktop-i7 kernel: sdhci: Copyright(c) Pierre Ossman
    abr 12 10:23:07 Desktop-i7 kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    abr 12 10:23:07 Desktop-i7 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    abr 12 10:23:07 Desktop-i7 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    abr 12 10:23:07 Desktop-i7 kernel: ACPI: bus type USB registered
    abr 12 10:23:07 Desktop-i7 kernel: usbcore: registered new interface driver usbfs
    abr 12 10:23:07 Desktop-i7 kernel: usbcore: registered new interface driver hub
    abr 12 10:23:07 Desktop-i7 kernel: usbcore: registered new device driver usb
    abr 12 10:23:07 Desktop-i7 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci: EHCI PCI platform driver
    abr 12 10:23:07 Desktop-i7 kernel: SCSI subsystem initialized
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1a.0: debug port 2
    abr 12 10:23:07 Desktop-i7 kernel: libata version 3.00 loaded.
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xdfc3b000
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    abr 12 10:23:07 Desktop-i7 kernel: hub 1-0:1.0: USB hub found
    abr 12 10:23:07 Desktop-i7 kernel: hub 1-0:1.0: 2 ports detected
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1d.0: debug port 2
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xdfc3a000
    abr 12 10:23:07 Desktop-i7 kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    abr 12 10:23:07 Desktop-i7 kernel: hub 2-0:1.0: USB hub found
    abr 12 10:23:07 Desktop-i7 kernel: hub 2-0:1.0: 2 ports detected
    abr 12 10:23:07 Desktop-i7 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    abr 12 10:23:07 Desktop-i7 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    abr 12 10:23:07 Desktop-i7 kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    abr 12 10:23:07 Desktop-i7 kernel: hub 3-0:1.0: USB hub found
    abr 12 10:23:07 Desktop-i7 kernel: hub 3-0:1.0: 14 ports detected
    abr 12 10:23:07 Desktop-i7 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    abr 12 10:23:07 Desktop-i7 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    abr 12 10:23:07 Desktop-i7 kernel: hub 4-0:1.0: USB hub found
    abr 12 10:23:07 Desktop-i7 kernel: hub 4-0:1.0: 6 ports detected
    abr 12 10:23:07 Desktop-i7 kernel: ahci 0000:00:1f.2: version 3.0
    abr 12 10:23:07 Desktop-i7 kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3e impl SATA mode
    abr 12 10:23:07 Desktop-i7 kernel: ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
    abr 12 10:23:07 Desktop-i7 kernel: scsi host0: ahci
    abr 12 10:23:07 Desktop-i7 kernel: scsi host1: ahci
    abr 12 10:23:07 Desktop-i7 kernel: scsi host2: ahci
    abr 12 10:23:07 Desktop-i7 kernel: scsi host3: ahci
    abr 12 10:23:07 Desktop-i7 kernel: scsi host4: ahci
    abr 12 10:23:07 Desktop-i7 kernel: scsi host5: ahci
    abr 12 10:23:07 Desktop-i7 kernel: ata1: DUMMY
    abr 12 10:23:07 Desktop-i7 kernel: ata2: SATA max UDMA/133 abar m2048@0xdfc39000 port 0xdfc39180 irq 27
    abr 12 10:23:07 Desktop-i7 kernel: ata3: SATA max UDMA/133 abar m2048@0xdfc39000 port 0xdfc39200 irq 27
    abr 12 10:23:07 Desktop-i7 kernel: ata4: SATA max UDMA/133 abar m2048@0xdfc39000 port 0xdfc39280 irq 27
    abr 12 10:23:07 Desktop-i7 kernel: ata5: SATA max UDMA/133 abar m2048@0xdfc39000 port 0xdfc39300 irq 27
    abr 12 10:23:07 Desktop-i7 kernel: ata6: SATA max UDMA/133 abar m2048@0xdfc39000 port 0xdfc39380 irq 27
    abr 12 10:23:07 Desktop-i7 kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
    abr 12 10:23:07 Desktop-i7 kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
    abr 12 10:23:07 Desktop-i7 kernel: ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    abr 12 10:23:07 Desktop-i7 kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    abr 12 10:23:07 Desktop-i7 kernel: ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    abr 12 10:23:07 Desktop-i7 kernel: ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    abr 12 10:23:07 Desktop-i7 kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    abr 12 10:23:07 Desktop-i7 kernel: ata3.00: ATA-9: WDC WD10EZEX-08M2NA0, 01.01A01, max UDMA/100
    abr 12 10:23:07 Desktop-i7 kernel: ata3.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20141107/psargs-359)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT4._GTF] (Node ffff8802370e3938), AE_NOT_FOUND (20141107/psparse-536)
    abr 12 10:23:07 Desktop-i7 kernel: ata3.00: configured for UDMA/100
    abr 12 10:23:07 Desktop-i7 kernel: ata4.00: ATA-8: ST3500320AS, SD1A, max UDMA/133
    abr 12 10:23:07 Desktop-i7 kernel: ata4.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20141107/psargs-359)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff8802370e39b0), AE_NOT_FOUND (20141107/psparse-536)
    abr 12 10:23:07 Desktop-i7 kernel: ata6.00: ATAPI: Optiarc DVD RW AD-7260S, 1.03, max UDMA/100
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20141107/psargs-359)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff8802370e39b0), AE_NOT_FOUND (20141107/psparse-536)
    abr 12 10:23:07 Desktop-i7 kernel: ata6.00: configured for UDMA/100
    abr 12 10:23:07 Desktop-i7 kernel: ata4.00: configured for UDMA/133
    abr 12 10:23:07 Desktop-i7 kernel: ata2.00: ATA-8: SAMSUNG HD103SJ, 1AJ10001, max UDMA/133
    abr 12 10:23:07 Desktop-i7 kernel: ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    abr 12 10:23:07 Desktop-i7 kernel: ata2.00: configured for UDMA/133
    abr 12 10:23:07 Desktop-i7 kernel: scsi 1:0:0:0: Direct-Access ATA SAMSUNG HD103SJ 0001 PQ: 0 ANSI: 5
    abr 12 10:23:07 Desktop-i7 kernel: scsi 2:0:0:0: Direct-Access ATA WDC WD10EZEX-08M 1A01 PQ: 0 ANSI: 5
    abr 12 10:23:07 Desktop-i7 kernel: scsi 3:0:0:0: Direct-Access ATA ST3500320AS SD1A PQ: 0 ANSI: 5
    abr 12 10:23:07 Desktop-i7 kernel: usb 3-12: new low-speed USB device number 2 using xhci_hcd
    abr 12 10:23:07 Desktop-i7 kernel: ata5.00: ATA-8: MAXTOR STM3320613AS, MX13, max UDMA/133
    abr 12 10:23:07 Desktop-i7 kernel: ata5.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20141107/psargs-359)
    abr 12 10:23:07 Desktop-i7 kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT4._GTF] (Node ffff8802370e3938), AE_NOT_FOUND (20141107/psparse-536)
    abr 12 10:23:07 Desktop-i7 kernel: ata5.00: configured for UDMA/133
    abr 12 10:23:07 Desktop-i7 kernel: scsi 4:0:0:0: Direct-Access ATA MAXTOR STM332061 MX13 PQ: 0 ANSI: 5
    abr 12 10:23:07 Desktop-i7 kernel: hub 1-1:1.0: USB hub found
    abr 12 10:23:07 Desktop-i7 kernel: hub 1-1:1.0: 6 ports detected
    abr 12 10:23:07 Desktop-i7 kernel: scsi 5:0:0:0: CD-ROM Optiarc DVD RW AD-7260S 1.03 PQ: 0 ANSI: 5
    abr 12 10:23:07 Desktop-i7 kernel: sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    abr 12 10:23:07 Desktop-i7 kernel: sd 2:0:0:0: [sdb] 4096-byte physical blocks
    abr 12 10:23:07 Desktop-i7 kernel: sd 3:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    abr 12 10:23:07 Desktop-i7 kernel: sd 2:0:0:0: [sdb] Write Protect is off
    abr 12 10:23:07 Desktop-i7 kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    abr 12 10:23:07 Desktop-i7 kernel: sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    abr 12 10:23:07 Desktop-i7 kernel: sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    abr 12 10:23:07 Desktop-i7 kernel: sd 4:0:0:0: [sdd] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    abr 12 10:23:07 Desktop-i7 kernel: sd 3:0:0:0: [sdc] Write Protect is off
    abr 12 10:23:07 Desktop-i7 kernel: sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    abr 12 10:23:07 Desktop-i7 kernel: sd 4:0:0:0: [sdd] Write Protect is off
    abr 12 10:23:07 Desktop-i7 kernel: sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    abr 12 10:23:07 Desktop-i7 kernel: sd 4:0:0:0: [sdd] Mode Sense: 00 3a 00 00
    abr 12 10:23:07 Desktop-i7 kernel: sd 4:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    abr 12 10:23:07 Desktop-i7 kernel: hub 2-1:1.0: USB hub found
    abr 12 10:23:07 Desktop-i7 kernel: sd 1:0:0:0: [sda] Write Protect is off
    abr 12 10:23:07 Desktop-i7 kernel: sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
    abr 12 10:23:07 Desktop-i7 kernel: sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    abr 12 10:23:07 Desktop-i7 kernel: hub 2-1:1.0: 8 ports detected
    abr 12 10:23:07 Desktop-i7 kernel: sda: sda1
    abr 12 10:23:07 Desktop-i7 kernel: sd 1:0:0:0: [sda] Attached SCSI disk
    abr 12 10:23:07 Desktop-i7 kernel: sr 5:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    abr 12 10:23:07 Desktop-i7 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    abr 12 10:23:07 Desktop-i7 kernel: sr 5:0:0:0: Attached scsi CD-ROM sr0
    abr 12 10:23:07 Desktop-i7 kernel: sdc: sdc1
    abr 12 10:23:07 Desktop-i7 kernel: sd 3:0:0:0: [sdc] Attached SCSI disk
    abr 12 10:23:07 Desktop-i7 kernel: sdb:
    abr 12 10:23:07 Desktop-i7 kernel: sd 2:0:0:0: [sdb] Attached SCSI disk
    abr 12 10:23:07 Desktop-i7 kernel: sdd: sdd1 sdd2 sdd3 sdd4
    abr 12 10:23:07 Desktop-i7 kernel: sd 4:0:0:0: [sdd] Attached SCSI disk
    abr 12 10:23:07 Desktop-i7 kernel: usb 3-12: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    abr 12 10:23:07 Desktop-i7 kernel: usb 3-12: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    abr 12 10:23:07 Desktop-i7 kernel: hidraw: raw HID events driver (C) Jiri Kosina
    abr 12 10:23:07 Desktop-i7 kernel: usbcore: registered new interface driver usbhid
    abr 12 10:23:07 Desktop-i7 kernel: usbhid: USB HID core driver
    abr 12 10:23:07 Desktop-i7 kernel: input: Genius 2.4G Wireless Mouse and Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-12/3-12:1.0/0003:0458:00AE.0001/input/input5
    abr 12 10:23:07 Desktop-i7 kernel: hid-generic 0003:0458:00AE.0001: input,hidraw0: USB HID v1.00 Keyboard [Genius 2.4G Wireless Mouse and Keyboard] on usb-0000:00:14.0-12/input0
    abr 12 10:23:07 Desktop-i7 kernel: input: Genius 2.4G Wireless Mouse and Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-12/3-12:1.1/0003:0458:00AE.0002/input/input6
    abr 12 10:23:07 Desktop-i7 kernel: hid-generic 0003:0458:00AE.0002: input,hidraw1: USB HID v1.00 Mouse [Genius 2.4G Wireless Mouse and Keyboard] on usb-0000:00:14.0-12/input1
    abr 12 10:23:07 Desktop-i7 kernel: random: nonblocking pool is initialized
    abr 12 10:23:07 Desktop-i7 kernel: tsc: Refined TSC clocksource calibration: 3597.914 MHz
    abr 12 10:23:07 Desktop-i7 kernel: EXT4-fs (sdd3): mounted filesystem with ordered data mode. Opts: (null)
    abr 12 10:23:07 Desktop-i7 kernel: Switched to clocksource tsc
    abr 12 10:23:07 Desktop-i7 systemd[1]: RTC configured in localtime, applying delta of -180 minutes to system time.
    abr 12 10:23:07 Desktop-i7 systemd[1]: systemd 218 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    abr 12 10:23:07 Desktop-i7 systemd[1]: Detected architecture 'x86-64'.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Set hostname to <Desktop-i7>.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Expecting device dev-sdc1.device...
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Root Slice.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Created slice Root Slice.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Journal Socket.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Listening on Journal Socket.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting udev Kernel Socket.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Listening on udev Kernel Socket.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting User and Session Slice.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Created slice User and Session Slice.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Device-mapper event daemon FIFOs.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Listening on Device-mapper event daemon FIFOs.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Expecting device dev-sda1.device...
    abr 12 10:23:07 Desktop-i7 systemd[1]: Listening on Journal Audit Socket.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Journal Socket (/dev/log).
    abr 12 10:23:07 Desktop-i7 systemd[1]: Listening on Journal Socket (/dev/log).
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting System Slice.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Created slice System Slice.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Create list of required static device nodes for the current kernel...
    abr 12 10:23:07 Desktop-i7 systemd[1]: Started File System Check on Root Device.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Slices.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Reached target Slices.
    abr 12 10:23:07 Desktop-i7 systemd[1]: Starting Set Up Additional Binary Formats...
    abr 12 10:23:07 Desktop-

    Gracias a todos por responder.
    Podrias poner el enlace de Graysky asi le hecho un vistazo?
    Las teclas no responden, estoy con un keyboard y mouse wireless, puedo entrar en a traves de SSH desde mi notebook, el driver que uso para el video?
    fitap@Desktop-i7 ~ $ lsmod | grep video
    video 22205 2 i915,asus_wmi

  • 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.

Maybe you are looking for

  • Possible to autocreate task from Technician Portal when creating SR?

    I have this question: Is it possible to automatically create a task (and assignment) when creatin a SR in Technician Portal (Field Service)? There is setup for creating automatically tasks and even assigning them to a resource when working in Service

  • How can I find out those files whose name has space character?

    Hi How can I find out the files whose name has space character in a whole file system? Thanks Jerry

  • Bug in cluster drag'n'drop

    LV2011, haven't tried in any other. Just crashed LV 3 times in a row when creating a cluster and dragging  in a numeric array. The 3rd time i noticed the array was grouped with a free label, and when ungrouped it all worked as anticipated. So: Draggi

  • Pagination Bug

    We meet a strange bug when we processing a document recently. For example, one paragraph have 3 lines, 2 lines are in the page 1, and the last line is in the page 2. So we set the Widow/Orphan Lines to 2, and click Apply, then the whole paragraph wil

  • Saving files in tiff

    Help please. I am having issues with elements 7. When i save a flattened, layered file in tiff, the resulting image shows areas missing, complete layers. however, when i save the same file in jpg, or even bmp, the image shows complete. this does not