Timestamp query

Hello all,
I have a requirement to create a query on a table that has a column called created_datetime which is of type TIMESTAMP(6) (using Oracle 9i).
The query should return all results where the date is greater than 1,200,000 milliseconds from Jan 01, 1970 (as the standard is).
So basically in my Java code, ill be getting the current time in milliseconds by using:
Calendar.getInstance().getTimeInMillis();
Then passing it into my SQL query, where I need results that have been in the table for longer than 1,200,000 milliseconds from Jan 01 170.
I basically need to find out the difference between the created_datetime column and Jan 01 1970, then convert that into milliseconds.
Man I hope that makes sense.
If thats not clear, let me know and I'll re-phrase it
Cheers!

You could try having the query as,
SELECT ... FROM ... WHERE created_datetime > :1
from Jdbc do,
setTIMESTAMP(1, oracleConnection.createTimestamp(new Timestamp(1200000)));
I have not personally tried it but, I guess it should work.

Similar Messages

  • Error in timestamp query

    select ENO from emp versions between timestamp
    to_timestamp(to_char('17-JUL-09 12.05.03.000000 PM','dd-mm-yyyy hh24:mi:ss'),'dd-mm-yyyy hh24:mi:ss')
    and systimestamp
    The above query is throwing the below error.
    ORA-01722: invalid number
    PLease clarify....
    thanks,
    vinodh

    Thanks Sean for correcting me (again) :) I kinda overlooked it.... :(
    And Oracle was kind enough to ignore the error for me: :D
    SQL> SELECT TO_TIMESTAMP ('17-JUL-09 02.45.23.848000 PM',
      2                       'dd-mm-yyyy hh:mi:ss.ff6 pm'
      3                      )
      4    FROM DUAL
      5  /
    TO_TIMESTAMP('17-JUL-0902.45.23.848000PM','DD-MM-YYYYHH:MI:SS.FF6PM')
    17-JUL-09 02.45.23.848000000 PM
    1 row selected.
    SQL> SELECT TO_TIMESTAMP ('17-JUL-2009 02.45.23.848000 PM',
      2                       'dd-mon-yyyy hh12.mi.ss.ff6 PM'
      3                      )
      4    FROM DUAL
      5  /
    TO_TIMESTAMP('17-JUL-200902.45.23.848000PM','DD-MON-YYYYHH12.MI.SS.FF6PM')
    17-JUL-09 02.45.23.848000000 PM
    1 row selected.
    SQL> Regards,
    Jo

  • Timestamp query in partitioned table - can this work?

    Hi,
    I have a table RANGE partitioned by a column named: CREATE_DATE (DATE). Its purpose is to manage the daily create/drop partitions of this table, I do not want to include this column in queries. I do not have an index on this column. We chose DATE for this column because we want to maintain a specific number of days in this table. And when we originally tried to use the STOP_TMSTMP column, TIMESTAMP proved to be unusable for RANGE partitioning.
    There are two other Timestamp columns that ARE used for precise transaction time calculation (STOP_TMSTMP - START_TMSTMP), and included within queries.
    I have an index on the STOP/START_TMSTMP but it is not getting used. And a table scan is occurring. So, finally my main question: How can I make the STOP_TIMESTAMP column index be used in queries against this table? And Is the CREATE_DATE required in a query, or can I safely ignore this column?
    Thanks,
    Mike

    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    PL/SQL Release 10.2.0.3.0 - Production
    "CORE     10.2.0.3.0     Production"
    TNS for Solaris: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Example query:
    select count(*)
    from flow_completion_record
    where stop_timestamp > '03-MAY-10 12.00.01.000000 AM'
    Takes 370 seconds and returns 2.7 million rows.
    Are you smarter than Oracle's optimizer?I will answer this rhetorical question with another question: does anyone really know what the optimizer will do? Or are you just best-guessing?
    Back to the original question: If I use the CREATE_DATE column to RANGE PARTITION this table, can I ignore it for queries in this table when it comes to TIMESTAMP?
    I really want to treat CREATE_DATE like I would an ID primary key column. Its value is set but I do not use it for queries.
    Thanks

  • SQL Timestamp query for use with PointBase

    I know this isn't an SQL forum, but I was wondering if someone could help me define an SQL query that returns rows from a table in a PointBase database with 2 separate TIMESTAMP fields. What I would like to do is return all rows where timefield1 is less than 2 hours later than timefield2.
    I've tried things like:
    select * from timetable where timefield1 < timefield2 + 2;
    select * from timetable where timefield1 < timefield2 + time '02:00:00';
    But haven't had any luck so far. Thanks in advance for any help you can give!

    usually SQL has a function called DATEADD where you take a timestamp, the amount to add and what to add it to.
    So you would have
    Select * from timetable where timefield1 < DATEADD(timefield2, 2, hours);
    Not exactly that since I don't know PointBase so check its documentation fro such a command and then do you SQL using it.

  • Timestamp Query Issue

    Hi,
    Executing below query, I am getting result as
    SELECT SUBSTR(A,1,30) CREATED , SUBSTR(B,1,30) COMPLETED,SUBSTR(B-A,1,30) FROM TIM;
    RESULT
    CREATED COMPLETED SUBSTR(B-A,1,30)
    23-SEP-11 05.37.23.000000 AM 30-SEP-11 12.00.00.000000 AM +000000006 18:22:37.000000
    30-SEP-11 12.00.00.000000 AM 30-SEP-11 12.00.00.000000 AM +000000000 00:00:00.000000
    My requirement is, Instead of this answer "000000006 18:22:37.000000". I need everything in seconds of (6 days 18 hrs, 23 min and 37 seconds)
    Please give me your valuable recommendation, Thanks in Advance.
    Regards
    Balaji Subramaniam

    Hello
    you can use the EXTRACT function to work on an interval...
    DTYLER_APP@pssdev2> WITH source_data
      2  AS
      3  (   SELECT
      4          to_timestamp('23-SEP-11 05.37.23.000000 AM','dd-mon-yy hh:mi:ss:ff AM') created,
      5          to_timestamp('30-SEP-11 12.00.00.000000 AM','dd-mon-yy hh:mi:ss:ff AM') completed
      6      FROM
      7          dual
      8  )
      9  SELECT
    10      completed - created complete_interval,
    11      EXTRACT( DAY FROM completed - created) days,
    12      EXTRACT( HOUR FROM completed - created) hours,
    13      EXTRACT( MINUTE FROM completed - created) minute,
    14      EXTRACT( SECOND FROM completed - created) seconds
    15  FROM
    16      source_data
    17  /
    COMPLETE_INTERVAL                                                                 DAYS      HOURS     MINUTE    SECONDS
    +000000006 18:22:37.000000000                                                        6         18         22         37
    1 row selected.HTH
    David

  • Timestamp server authentication issues

    I'm using Adobe Reader XI and when using http timeStamp server that requires basic authentication is always tried without the needed BasicAuth field set.
    That's the request adobe send
    POST /cdie/HttpService HTTP/1.1
    accept: */*
    content-type: application/timestamp-query
    content-length: 69
    character-encoding: binary
    user-agent: PPKHandler
    connection: Keep-Alive
    cache-control: no-cache
    The reply is a simply HTTP/1.1 401 Unauthorized because the request hasn't the authentication field.
    I've tried using Windows and Macintosh
    Why didn't send the basic authentication?

    What exactly are you trying to do? Are you signing a PDF with a certificate-based digital signature? You cannot sign in Adobe Reader unless your PDF is Reader-extended with permissions to sign.
    If your PDF is Reader-extended or you're signing with Acrobat Pro, and you want your signature to be timestamped you need to set up the timestamp server in Acrobat/Reader. If your timestamp server requires authentication, you need to provide authentication information in the Acrobat's timestamp server setup. Some signing credentials (Digital IDs) have timestamp server information embedded in the certificate. In this case Acrobat will use this timestamp server to timestamp the signature and you do not need to set up this timestamp in Acrobat's timestamp servers list unless this timestamp server requires authentication. If it requires authentication, you need to set it up in Acrobat/Reader providing authentication info.
    You should never access timestamp server if you just open a signed PDF.

  • Need help on retrieving query result - NPE

    Hi, I could get results with the native query in my TOAD, but I can't get it working in my session EJB. I tried both native query and EJB ql. The query created fine, as soon as I try to retrieve results, it gets stuck.
    My native query looks like this:
    Query query = em.createNativeQuery("select sum(o.amount_reimbursed) from t_expenses o where o.employee_id = '999999911' " +
    "and o.EXPENSE_ID in (select p.expense_id from T_Per_Diem_Xref p where p.expense_Type_Xref_Id=22 " +
    "and p.expense_Id in (select e.expense_Id from T_Expenses e where e.employee_Id='999999911' " +
    "and e.expense_date > to_date('01/01/2011', 'mm/dd/yyyy') and e.expense_date < to_date('12/31/2011', 'mm/dd/yyyy')))") ;
    My EJB query looks like this:
    Query query = em.createQuery("select sum(o.amountReimbursed) from TExpenses o where o.employeeId = ?1 " +
    "and o.expenseId in (select p.expenseId from TPerDiemXref p where p.expenseTypeXrefId=?2 " +
    "and p.expenseId in (select e.expenseId from TExpenses e where e.employeeId=?1 and e.expenseDate>=?3 and e.expenseDate<=?4))");
    query.setParameter(1, employeeId);
    query.setParameter(2, expenseType);
    query.setParameter(3, fDay, TemporalType.TIMESTAMP);
    query.setParameter(4, lDay, TemporalType.TIMESTAMP);
    Either one, I get NPE at the line retrieve result.
    // sumAmt = (Double)query.getSingleResult();
    List list = query.getResultList();
    if (list != null) {
    long longAmt = (Long)list.get(0);
    sumAmt = (Double)list.get(0);
    As you can see, I tried to getSingleResult, or getResultList. also tried to convert the result to Double or Long. None worked.
    Please help and thank you for your time.
    Sophia

    Frank, thank you for your reply. I have this code in my session Facade EJB, and I get the NPE in my backing bean which calls this method. When I debug the code, it appears what really cuases the problem is in this code on the line I try to assign the query result to my variable 'sumAmt = (Double)query.getSingleResult();'. In the debug, when it reaches this line, it starts to give me all kinds of pop-up windows saying couldn't find this file or that file or packages. If I get a stack trace later, I will post it. Right now I am trying to fix something else.
    Thanks, Sophia

  • 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

  • ConsoleKit takes 20seconds to time out on GDM load

    My GDM is really slow and I tracked it down to ConsoleKit. Anyone have any suggestion on how to fix it?
    Please take a look at my messages.log to get some idea of what's happening:
    Search for ConsoleKit to see that it's taking 20secs to timeout.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Linux version 3.2.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Jan 26 08:40:20 CET 2012
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Command line: root=/dev/sda2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-provided physical RAM map:
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cd71e000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd71e000 - 00000000cd772000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd772000 - 00000000cd77b000 (ACPI data)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd77b000 - 00000000cdada000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdada000 - 00000000cdaeb000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdaeb000 - 00000000cdafe000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdafe000 - 00000000cdb00000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb00000 - 00000000cdb09000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb09000 - 00000000cdb0f000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb0f000 - 00000000cdb71000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb71000 - 00000000cdd74000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdd74000 - 00000000cdf00000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec20000 - 00000000fec21000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed01000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed61000 - 00000000fed71000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed90000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fef00000 - 0000000100000000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000100001000 - 000000022f000000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NX (Execute Disable) protection: active
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMI 2.7 present.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No AGP bridge found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] last_pfn = 0x22f000 max_arch_pfn = 0x400000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Feb 1 20:31:48 localhost kernel: [ 0.000000] last_pfn = 0xcdf00 max_arch_pfn = 0x400000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Using GB pages for direct mapping
    Feb 1 20:31:48 localhost kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000cdf00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] init_memory_mapping: 0000000100000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] RAMDISK: 7fd5a000 - 7ffff000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: XSDT 00000000cd772068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: FACP 00000000cd779340 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110623/tbfadt-560)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: DSDT 00000000cd772150 071EC (v02 ALASKA A M I 00000000 INTL 20051117)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: FACS 00000000cdb09f80 00040
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: APIC 00000000cd779438 0009E (v03 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: MCFG 00000000cd7794d8 0003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: HPET 00000000cd779518 00038 (v01 ALASKA A M I 01072009 AMI 00000004)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IVRS 00000000cd779550 000D8 (v01 AMD RD890S 00202031 AMD 00000000)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: SSDT 00000000cd779628 00D3C (v01 AMD POWERNOW 00000001 AMD 00000001)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No NUMA configuration found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Faking a node at 0000000000000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initmem setup node 0 0000000000000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NODE_DATA [000000022effb000 - 000000022effffff]
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Zone PFN ranges:
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Normal 0x00100000 -> 0x0022f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Movable zone start PFN for each node
    Feb 1 20:31:48 localhost kernel: [ 0.000000] early_node_map[4] active PFN ranges
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009d
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00000100 -> 0x000cd71e
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x000cdd74 -> 0x000cdf00
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00100001 -> 0x0022f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x15] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x17] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec00000] gsi_base[0])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec20000] gsi_base[24])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] IOAPIC[1]: apic_id 10, version 33, address 0xfec20000, GSI 24-55
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd71e000 - 00000000cd772000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd772000 - 00000000cd77b000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd77b000 - 00000000cdada000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdada000 - 00000000cdaeb000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdaeb000 - 00000000cdafe000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdafe000 - 00000000cdb00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb00000 - 00000000cdb09000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb09000 - 00000000cdb0f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb0f000 - 00000000cdb71000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb71000 - 00000000cdd74000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdf00000 - 00000000f8000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fec20000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec20000 - 00000000fec21000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec21000 - 00000000fed00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fef00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 0000000100000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Allocating PCI resources starting at cdf00000 (gap: cdf00000:2a100000)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Feb 1 20:31:48 localhost kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88022ec00000 s82048 r8192 d24448 u262144
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2047089
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Policy zone: Normal
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Kernel command line: root=/dev/sda2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Checking aperture...
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No AGP bridge found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Node 0: aperture @ f8000000 size 64 MB
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Memory: 8119580k/9158656k available (4281k kernel code, 827176k absent, 211900k reserved, 4599k data, 728k init)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Verbose stalled-CPUs detection is disabled.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:1288 16
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Extended CMOS year: 2000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Console: colour VGA+ 80x25
    Feb 1 20:31:48 localhost kernel: [ 0.000000] console [tty0] enabled
    Feb 1 20:31:48 localhost kernel: [ 0.000000] allocated 67108864 bytes of page_cgroup
    Feb 1 20:31:48 localhost kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Fast TSC calibration using PIT
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Detected 3110.742 MHz processor.
    Feb 1 20:31:48 localhost kernel: [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6223.71 BogoMIPS (lpj=10369140)
    Feb 1 20:31:48 localhost kernel: [ 0.003339] pid_max: default: 32768 minimum: 301
    Feb 1 20:31:48 localhost kernel: [ 0.003361] Security Framework initialized
    Feb 1 20:31:48 localhost kernel: [ 0.003365] AppArmor: AppArmor disabled by boot time parameter
    Feb 1 20:31:48 localhost kernel: [ 0.004126] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.007900] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.008745] Mount-cache hash table entries: 256
    Feb 1 20:31:48 localhost kernel: [ 0.008854] Initializing cgroup subsys cpuacct
    Feb 1 20:31:48 localhost kernel: [ 0.008859] Initializing cgroup subsys memory
    Feb 1 20:31:48 localhost kernel: [ 0.008866] Initializing cgroup subsys devices
    Feb 1 20:31:48 localhost kernel: [ 0.008868] Initializing cgroup subsys freezer
    Feb 1 20:31:48 localhost kernel: [ 0.008869] Initializing cgroup subsys net_cls
    Feb 1 20:31:48 localhost kernel: [ 0.008870] Initializing cgroup subsys blkio
    Feb 1 20:31:48 localhost kernel: [ 0.008896] CPU: Physical Processor ID: 0
    Feb 1 20:31:48 localhost kernel: [ 0.008897] CPU: Processor Core ID: 0
    Feb 1 20:31:48 localhost kernel: [ 0.008899] mce: CPU supports 7 MCE banks
    Feb 1 20:31:48 localhost kernel: [ 0.009566] ACPI: Core revision 20110623
    Feb 1 20:31:48 localhost kernel: [ 0.013346] ftrace: allocating 16779 entries in 66 pages
    Feb 1 20:31:48 localhost kernel: [ 0.020327] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Feb 1 20:31:48 localhost kernel: [ 0.053341] CPU0: AMD FX(tm)-8120 Eight-Core Processor stepping 02
    Feb 1 20:31:48 localhost kernel: [ 0.056663] Performance Events: AMD Family 15h PMU driver.
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... version: 0
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... bit width: 48
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... generic registers: 6
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... value mask: 0000ffffffffffff
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... max period: 00007fffffffffff
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... fixed-purpose events: 0
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... event mask: 000000000000003f
    Feb 1 20:31:48 localhost kernel: [ 0.073374] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.100015] Booting Node 0, Processors #1
    Feb 1 20:31:48 localhost kernel: [ 0.196673] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.216689] #2
    Feb 1 20:31:48 localhost kernel: [ 0.313331] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.333338] #3
    Feb 1 20:31:48 localhost kernel: [ 0.429988] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.449998] #4
    Feb 1 20:31:48 localhost kernel: [ 0.546652] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.566662] #5
    Feb 1 20:31:48 localhost kernel: [ 0.663312] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.683316] #6
    Feb 1 20:31:48 localhost kernel: [ 0.779965] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.799971] #7 Ok.
    Feb 1 20:31:48 localhost kernel: [ 0.896625] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.903288] Brought up 8 CPUs
    Feb 1 20:31:48 localhost kernel: [ 0.903291] Total of 8 processors activated (49786.82 BogoMIPS).
    Feb 1 20:31:48 localhost kernel: [ 0.906788] devtmpfs: initialized
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cd71e000 (344064 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdada000 (69632 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdafe000 (8192 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdb09000 (24576 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdb71000 (2109440 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.910376] print_constraints: dummy:
    Feb 1 20:31:48 localhost kernel: [ 0.910415] NET: Registered protocol family 16
    Feb 1 20:31:48 localhost kernel: [ 0.910507] Extended Config Space enabled on 1 nodes
    Feb 1 20:31:48 localhost kernel: [ 0.910549] ACPI: bus type pci registered
    Feb 1 20:31:48 localhost kernel: [ 0.910607] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 1 20:31:48 localhost kernel: [ 0.910610] PCI: not using MMCONFIG
    Feb 1 20:31:48 localhost kernel: [ 0.910612] PCI: Using configuration type 1 for base access
    Feb 1 20:31:48 localhost kernel: [ 0.910613] PCI: Using configuration type 1 for extended access
    Feb 1 20:31:48 localhost kernel: [ 0.911157] bio: create slab <bio-0> at 0
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Module Device)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Processor Device)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(3.0 _SCP Extensions)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Processor Aggregator Device)
    Feb 1 20:31:48 localhost kernel: [ 0.913406] ACPI: Executed 2 blocks of module-level executable AML code
    Feb 1 20:31:48 localhost kernel: [ 0.923431] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110623/psargs-359)
    Feb 1 20:31:48 localhost kernel: [ 0.923438] ACPI Exception: AE_NOT_FOUND, Could not execute arguments for [RAMW] (Region) (20110623/nsinit-349)
    Feb 1 20:31:48 localhost kernel: [ 0.923740] ACPI: Interpreter enabled
    Feb 1 20:31:48 localhost kernel: [ 0.923743] ACPI: (supports S0 S1 S3 S4 S5)
    Feb 1 20:31:48 localhost kernel: [ 0.923766] ACPI: Using IOAPIC for interrupt routing
    Feb 1 20:31:48 localhost kernel: [ 0.923907] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 1 20:31:48 localhost kernel: [ 0.923945] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Feb 1 20:31:48 localhost kernel: [ 0.972366] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    Feb 1 20:31:48 localhost kernel: [ 0.972499] ACPI: No dock devices found.
    Feb 1 20:31:48 localhost kernel: [ 0.972500] HEST: Table not found.
    Feb 1 20:31:48 localhost kernel: [ 0.972503] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Feb 1 20:31:48 localhost kernel: [ 0.972680] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Feb 1 20:31:48 localhost kernel: [ 0.972959] pci_root PNP0A03:00: host bridge window [io 0x0000-0x03af]
    Feb 1 20:31:48 localhost kernel: [ 0.972962] pci_root PNP0A03:00: host bridge window [io 0x03e0-0x0cf7]
    Feb 1 20:31:48 localhost kernel: [ 0.972964] pci_root PNP0A03:00: host bridge window [io 0x03b0-0x03df]
    Feb 1 20:31:48 localhost kernel: [ 0.972966] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972968] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972970] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972972] pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xffffffff]
    Feb 1 20:31:48 localhost kernel: [ 0.974557] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Feb 1 20:31:48 localhost kernel: [ 0.974564] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    Feb 1 20:31:48 localhost kernel: [ 0.979960] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    Feb 1 20:31:48 localhost kernel: [ 0.986619] pci 0000:00:05.0: PCI bridge to [bus 03-03]
    Feb 1 20:31:48 localhost kernel: [ 0.993283] pci 0000:00:06.0: PCI bridge to [bus 04-04]
    Feb 1 20:31:48 localhost kernel: [ 0.999948] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    Feb 1 20:31:48 localhost kernel: [ 1.006616] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    Feb 1 20:31:48 localhost kernel: [ 1.006676] pci 0000:00:14.4: PCI bridge to [bus 07-07] (subtractive decode)
    Feb 1 20:31:48 localhost kernel: [ 1.007075] pci0000:00: Requesting ACPI _OSC control (0x1d)
    Feb 1 20:31:48 localhost kernel: [ 1.007078] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    Feb 1 20:31:48 localhost kernel: [ 1.007080] ACPI _OSC control for PCIe not granted, disabling ASPM
    Feb 1 20:31:48 localhost kernel: [ 1.013835] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.013895] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.013957] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014018] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014066] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014103] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014141] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014178] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: loaded
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: bridge control possible 0000:01:00.0
    Feb 1 20:31:48 localhost kernel: [ 1.014248] PCI: Using ACPI for IRQ routing
    Feb 1 20:31:48 localhost kernel: [ 1.020997] NetLabel: Initializing
    Feb 1 20:31:48 localhost kernel: [ 1.020999] NetLabel: domain hash size = 128
    Feb 1 20:31:48 localhost kernel: [ 1.021000] NetLabel: protocols = UNLABELED CIPSOv4
    Feb 1 20:31:48 localhost kernel: [ 1.021013] NetLabel: unlabeled traffic allowed by default
    Feb 1 20:31:48 localhost kernel: [ 1.021026] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Feb 1 20:31:48 localhost kernel: [ 1.021030] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    Feb 1 20:31:48 localhost kernel: [ 1.023074] Switching to clocksource hpet
    Feb 1 20:31:48 localhost kernel: [ 1.025725] pnp: PnP ACPI init
    Feb 1 20:31:48 localhost kernel: [ 1.025737] ACPI: bus type pnp registered
    Feb 1 20:31:48 localhost kernel: [ 1.026037] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026620] system 00:02: [io 0x040b] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026623] system 00:02: [io 0x04d6] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026625] system 00:02: [io 0x0c00-0x0c01] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026627] system 00:02: [io 0x0c14] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026629] system 00:02: [io 0x0c50-0x0c51] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026632] system 00:02: [io 0x0c52] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026634] system 00:02: [io 0x0c6c] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026636] system 00:02: [io 0x0c6f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026638] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026640] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026642] system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026644] system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026646] system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026649] system 00:02: [io 0x0800-0x089f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026651] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026653] system 00:02: [io 0x0900-0x090f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026656] system 00:02: [io 0x0910-0x091f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026658] system 00:02: [io 0xfe00-0xfefe] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026661] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026664] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026677] system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026680] system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026682] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026685] system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026688] system 00:02: [mem 0xffc00000-0xffffffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026854] system 00:03: [io 0x0290-0x02af] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027074] system 00:07: [io 0x04d0-0x04d1] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027343] system 00:0a: [mem 0xfeb20000-0xfeb23fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027480] system 00:0b: [mem 0xfec20000-0xfec200ff] could not be reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027648] pnp: PnP ACPI: found 13 devices
    Feb 1 20:31:48 localhost kernel: [ 1.027650] ACPI: ACPI bus type pnp unregistered
    Feb 1 20:31:48 localhost kernel: [ 1.034572] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    Feb 1 20:31:48 localhost kernel: [ 1.034575] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Feb 1 20:31:48 localhost kernel: [ 1.034578] pci 0000:00:02.0: bridge window [mem 0xf4000000-0xf70fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034581] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Feb 1 20:31:48 localhost kernel: [ 1.034585] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    Feb 1 20:31:48 localhost kernel: [ 1.034587] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Feb 1 20:31:48 localhost kernel: [ 1.034590] pci 0000:00:04.0: bridge window [mem 0xf7500000-0xf75fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034594] pci 0000:00:05.0: PCI bridge to [bus 03-03]
    Feb 1 20:31:48 localhost kernel: [ 1.034597] pci 0000:00:05.0: bridge window [io 0xc000-0xcfff]
    Feb 1 20:31:48 localhost kernel: [ 1.034599] pci 0000:00:05.0: bridge window [mem 0xf7400000-0xf74fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034604] pci 0000:00:06.0: PCI bridge to [bus 04-04]
    Feb 1 20:31:48 localhost kernel: [ 1.034606] pci 0000:00:06.0: bridge window [mem 0xf7300000-0xf73fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034611] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    Feb 1 20:31:48 localhost kernel: [ 1.034613] pci 0000:00:07.0: bridge window [mem 0xf7200000-0xf72fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034617] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    Feb 1 20:31:48 localhost kernel: [ 1.034620] pci 0000:00:09.0: bridge window [mem 0xf7100000-0xf71fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034624] pci 0000:00:14.4: PCI bridge to [bus 07-07]
    Feb 1 20:31:48 localhost kernel: [ 1.034641] pci 0000:00:02.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034649] pci 0000:00:04.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034656] pci 0000:00:05.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034666] pci 0000:00:06.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034673] pci 0000:00:07.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034679] pci 0000:00:09.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034759] NET: Registered protocol family 2
    Feb 1 20:31:48 localhost kernel: [ 1.035011] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.036243] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.037985] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038182] TCP: Hash tables configured (established 524288 bind 65536)
    Feb 1 20:31:48 localhost kernel: [ 1.038184] TCP reno registered
    Feb 1 20:31:48 localhost kernel: [ 1.038200] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038241] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038330] NET: Registered protocol family 1
    Feb 1 20:31:48 localhost kernel: [ 2.103599] Unpacking initramfs...
    Feb 1 20:31:48 localhost kernel: [ 2.145316] Freeing initrd memory: 2708k freed
    Feb 1 20:31:48 localhost kernel: [ 2.145978] pci 0000:00:00.2: PCI INT A -> GSI 55 (level, low) -> IRQ 55
    Feb 1 20:31:48 localhost kernel: [ 2.146104] AMD-Vi: Enabling IOMMU at 0000:00:00.2 cap 0x40
    Feb 1 20:31:48 localhost kernel: [ 2.213957] AMD-Vi: Lazy IO/TLB flushing enabled
    Feb 1 20:31:48 localhost kernel: [ 2.213960] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Feb 1 20:31:48 localhost kernel: [ 2.213962] Placing 64MB software IO TLB between ffff8800c971e000 - ffff8800cd71e000
    Feb 1 20:31:48 localhost kernel: [ 2.213965] software IO TLB at phys 0xc971e000 - 0xcd71e000
    Feb 1 20:31:48 localhost kernel: [ 2.214583] perf: AMD IBS detected (0x000000ff)
    Feb 1 20:31:48 localhost kernel: [ 2.214717] audit: initializing netlink socket (disabled)
    Feb 1 20:31:48 localhost kernel: [ 2.214725] type=2000 audit(1328128291.213:1): initialized
    Feb 1 20:31:48 localhost kernel: [ 2.226263] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Feb 1 20:31:48 localhost kernel: [ 2.249701] VFS: Disk quotas dquot_6.5.2
    Feb 1 20:31:48 localhost kernel: [ 2.249754] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Feb 1 20:31:48 localhost kernel: [ 2.249833] msgmni has been set to 15863
    Feb 1 20:31:48 localhost kernel: [ 2.250009] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    Feb 1 20:31:48 localhost kernel: [ 2.250041] io scheduler noop registered
    Feb 1 20:31:48 localhost kernel: [ 2.250042] io scheduler deadline registered
    Feb 1 20:31:48 localhost kernel: [ 2.250071] io scheduler cfq registered (default)
    Feb 1 20:31:48 localhost kernel: [ 2.250407] ERST: Table is not found!
    Feb 1 20:31:48 localhost kernel: [ 2.250409] GHES: HEST is not enabled!
    Feb 1 20:31:48 localhost kernel: [ 2.250463] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Feb 1 20:31:48 localhost kernel: [ 2.463583] Linux agpgart interface v0.103
    Feb 1 20:31:48 localhost kernel: [ 2.463656] i8042: PNP: No PS/2 controller found. Probing ports directly.
    Feb 1 20:31:48 localhost kernel: [ 2.463999] serio: i8042 KBD port at 0x60,0x64 irq 1
    Feb 1 20:31:48 localhost kernel: [ 2.464021] serio: i8042 AUX port at 0x60,0x64 irq 12
    Feb 1 20:31:48 localhost kernel: [ 2.464164] mousedev: PS/2 mouse device common for all mice
    Feb 1 20:31:48 localhost kernel: [ 2.464197] rtc_cmos 00:05: RTC can wake from S4
    Feb 1 20:31:48 localhost kernel: [ 2.464319] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    Feb 1 20:31:48 localhost kernel: [ 2.464343] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Feb 1 20:31:48 localhost kernel: [ 2.464357] cpuidle: using governor ladder
    Feb 1 20:31:48 localhost kernel: [ 2.464359] cpuidle: using governor menu
    Feb 1 20:31:48 localhost kernel: [ 2.464584] TCP cubic registered
    Feb 1 20:31:48 localhost kernel: [ 2.464586] NET: Registered protocol family 17
    Feb 1 20:31:48 localhost kernel: [ 2.464591] Registering the dns_resolver key type
    Feb 1 20:31:48 localhost kernel: [ 2.464716] registered taskstats version 1
    Feb 1 20:31:48 localhost kernel: [ 2.476065] rtc_cmos 00:05: setting system clock to 2012-02-01 20:31:32 UTC (1328128292)
    Feb 1 20:31:48 localhost kernel: [ 2.476133] Initializing network drop monitor service
    Feb 1 20:31:48 localhost kernel: [ 2.478077] Freeing unused kernel memory: 728k freed
    Feb 1 20:31:48 localhost kernel: [ 2.478200] Write protecting the kernel read-only data: 8192k
    Feb 1 20:31:48 localhost kernel: [ 2.486030] Freeing unused kernel memory: 1844k freed
    Feb 1 20:31:48 localhost kernel: [ 2.489293] Freeing unused kernel memory: 692k freed
    Feb 1 20:31:48 localhost [ 2.496933] udevd[63]: starting version 179
    Feb 1 20:31:48 localhost kernel: [ 2.519274] SCSI subsystem initialized
    Feb 1 20:31:48 localhost kernel: [ 2.522067] usbcore: registered new interface driver usbfs
    Feb 1 20:31:48 localhost kernel: [ 2.522092] usbcore: registered new interface driver hub
    Feb 1 20:31:48 localhost kernel: [ 2.522136] usbcore: registered new device driver usb
    Feb 1 20:31:48 localhost kernel: [ 2.525268] xhci_hcd 0000:04:00.0: PCI INT A -> GSI 51 (level, low) -> IRQ 51
    Feb 1 20:31:48 localhost kernel: [ 2.525310] xhci_hcd 0000:04:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.525333] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
    Feb 1 20:31:48 localhost kernel: [ 2.532052] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    Feb 1 20:31:48 localhost kernel: [ 2.532191] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
    Feb 1 20:31:48 localhost kernel: [ 2.532195] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    Feb 1 20:31:48 localhost kernel: [ 2.534149] scsi0 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534430] scsi1 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534950] scsi2 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534973] xhci_hcd 0000:04:00.0: irq 51, io mem 0xf7300000
    Feb 1 20:31:48 localhost kernel: [ 2.535368] scsi3 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535611] hub 1-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.535617] hub 1-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.535667] scsi4 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535735] xhci_hcd 0000:04:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.535743] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    Feb 1 20:31:48 localhost kernel: [ 2.535809] scsi5 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535956] hub 2-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.535963] hub 2-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.536253] ata1: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b100 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536257] ata2: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b180 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536260] ata3: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b200 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536263] ata4: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b280 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536266] ata5: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b300 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536269] ata6: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b380 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536304] ahci 0000:02:00.0: PCI INT A -> GSI 44 (level, low) -> IRQ 44
    Feb 1 20:31:48 localhost kernel: [ 2.536361] ahci: SSS flag set, parallel bus scan disabled
    Feb 1 20:31:48 localhost kernel: [ 2.536390] ahci 0000:02:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    Feb 1 20:31:48 localhost kernel: [ 2.536393] ahci 0000:02:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
    Feb 1 20:31:48 localhost kernel: [ 2.537576] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Feb 1 20:31:48 localhost kernel: [ 2.537596] scsi6 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.537620] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    Feb 1 20:31:48 localhost kernel: [ 2.537653] ehci_hcd 0000:00:12.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.537672] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 3
    Feb 1 20:31:48 localhost kernel: [ 2.537681] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.537719] ehci_hcd 0000:00:12.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.537734] scsi7 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.537740] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf7609000
    Feb 1 20:31:48 localhost kernel: [ 2.537799] ata7: SATA max UDMA/133 abar m512@0xf7500000 port 0xf7500100 irq 81
    Feb 1 20:31:48 localhost kernel: [ 2.537803] ata8: SATA max UDMA/133 abar m512@0xf7500000 port 0xf7500180 irq 81
    Feb 1 20:31:48 localhost kernel: [ 2.550064] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.550194] hub 3-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.550198] hub 3-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.550282] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Feb 1 20:31:48 localhost kernel: [ 2.550313] ehci_hcd 0000:00:13.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.550320] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    Feb 1 20:31:48 localhost kernel: [ 2.550326] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.550345] ehci_hcd 0000:00:13.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.550362] ehci_hcd 0000:00:13.2: irq 21, io mem 0xf7607000
    Feb 1 20:31:48 localhost kernel: [ 2.553402] xhci_hcd 0000:05:00.0: PCI INT A -> GSI 50 (level, low) -> IRQ 50
    Feb 1 20:31:48 localhost kernel: [ 2.553438] xhci_hcd 0000:05:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.553447] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 5
    Feb 1 20:31:48 localhost kernel: [ 2.555089] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Feb 1 20:31:48 localhost kernel: [ 2.560049] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.560188] hub 4-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.560191] hub 4-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.560280] ehci_hcd 0000:00:16.2: PCI INT B -> GSI 23 (level, low) -> IRQ 23
    Feb 1 20:31:48 localhost kernel: [ 2.560314] ehci_hcd 0000:00:16.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.560321] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 6
    Feb 1 20:31:48 localhost kernel: [ 2.560329] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.560349] ehci_hcd 0000:00:16.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.560367] ehci_hcd 0000:00:16.2: irq 23, io mem 0xf7604000
    Feb 1 20:31:48 localhost kernel: [ 2.563065] xhci_hcd 0000:05:00.0: irq 50, io mem 0xf7200000
    Feb 1 20:31:48 localhost kernel: [ 2.563367] hub 5-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.563373] hub 5-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.563437] xhci_hcd 0000:05:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.563443] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 7
    Feb 1 20:31:48 localhost kernel: [ 2.563617] hub 7-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.563625] hub 7-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.573392] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.573722] hub 6-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.573728] hub 6-0:1.0: 4 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.574021] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Feb 1 20:31:48 localhost kernel: [ 2.574050] ohci_hcd 0000:00:12.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.574059] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 8
    Feb 1 20:31:48 localhost kernel: [ 2.574083] ohci_hcd 0000:00:12.0: irq 18, io mem 0xf760a000
    Feb 1 20:31:48 localhost kernel: [ 2.580067] xhci_hcd 0000:06:00.0: PCI INT A -> GSI 48 (level, low) -> IRQ 48
    Feb 1 20:31:48 localhost kernel: [ 2.580106] xhci_hcd 0000:06:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.580121] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 9
    Feb 1 20:31:48 localhost kernel: [ 2.589735] xhci_hcd 0000:06:00.0: irq 48, io mem 0xf7100000
    Feb 1 20:31:48 localhost kernel: [ 2.590047] hub 9-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.590052] hub 9-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.590111] xhci_hcd 0000:06:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.590116] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 10
    Feb 1 20:31:48 localhost kernel: [ 2.590227] hub 10-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.590232] hub 10-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.634184] hub 8-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.634190] hub 8-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.634310] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    Feb 1 20:31:48 localhost kernel: [ 2.634324] ohci_hcd 0000:00:13.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.634331] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 11
    Feb 1 20:31:48 localhost kernel: [ 2.634353] ohci_hcd 0000:00:13.0: irq 20, io mem 0xf7608000
    Feb 1 20:31:48 localhost kernel: [ 2.690863] hub 11-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.690869] hub 11-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.690964] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Feb 1 20:31:48 localhost kernel: [ 2.690977] ohci_hcd 0000:00:14.5: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.690984] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 12
    Feb 1 20:31:48 localhost kernel: [ 2.691000] ohci_hcd 0000:00:14.5: irq 18, io mem 0xf7606000
    Feb 1 20:31:48 localhost kernel: [ 2.747523] hub 12-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.747528] hub 12-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.747611] ohci_hcd 0000:00:16.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Feb 1 20:31:48 localhost kernel: [ 2.747623] ohci_hcd 0000:00:16.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.747631] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 13
    Feb 1 20:31:48 localhost kernel: [ 2.747651] ohci_hcd 0000:00:16.0: irq 22, io mem 0xf7605000
    Feb 1 20:31:48 localhost kernel: [ 2.804198] hub 13-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.804204] hub 13-0:1.0: 4 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.846739] ata5: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.853415] ata6: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.853422] ata7: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.860071] usb 3-3: new high-speed USB device number 2 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 3.013403] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.013934] ata2.00: ATAPI: Optiarc DVD RW AD-7170S, 1.00, max UDMA/66
    Feb 1 20:31:48 localhost kernel: [ 3.014751] ata2.00: configured for UDMA/66
    Feb 1 20:31:48 localhost kernel: [ 3.020037] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.020063] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.020360] ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10362, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.020362] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Feb 1 20:31:48 localhost kernel: [ 3.020690] ata1.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.020813] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 4PC1 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.022190] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7170S 1.00 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.074092] ata3.00: ATA-7: ST3500641AS, 3.AGE, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.074095] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Feb 1 20:31:48 localhost kernel: [ 3.140722] ata3.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.140825] scsi 2:0:0:0: Direct-Access ATA ST3500641AS 3.AG PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.216724] Refined TSC clocksource calibration: 3110.408 MHz.
    Feb 1 20:31:48 localhost kernel: [ 3.216733] Switching to clocksource tsc
    Feb 1 20:31:48 localhost kernel: [ 3.263391] usb 4-3: new high-speed USB device number 2 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 3.395804] hub 4-3:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 3.395894] hub 4-3:1.0: 3 ports detected
    Feb 1 20:31:48 localhost kernel: [ 3.553384] usb 4-5: new high-speed USB device number 4 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.046721] usb 11-4: new low-speed USB device number 2 using ohci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.273663] usb 4-3.2: new low-speed USB device number 5 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.420186] input: Western Digital My Book as /devices/pci0000:00/0000:00:12.2/usb3/3-3/3-3:1.1/input/input0
    Feb 1 20:31:48 localhost kernel: [ 4.420237] generic-usb 0003:1058:1102.0001: input,hidraw0: USB HID v1.11 Device [Western Digital My Book] on usb-0000:00:12.2-3/input1
    Feb 1 20:31:48 localhost kernel: [ 4.426121] input: Microsoft Microsoft Optical Mouse with Tilt Wheel as /devices/pci0000:00/0000:00:13.0/usb11/11-4/11-4:1.0/input/input1
    Feb 1 20:31:48 localhost kernel: [ 4.426201] generic-usb 0003:045E:00D1.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft Optical Mouse with Tilt Wheel] on usb-0000:00:13.0-4/input0
    Feb 1 20:31:48 localhost kernel: [ 4.426298] usbcore: registered new interface driver usbhid
    Feb 1 20:31:48 localhost kernel: [ 4.426300] usbhid: USB HID core driver
    Feb 1 20:31:48 localhost kernel: [ 4.430576] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:13.2/usb4/4-3/4-3.2/4-3.2:1.0/input/input2
    Feb 1 20:31:48 localhost kernel: [ 4.430693] apple 0003:05AC:0221.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:13.2-3.2/input0
    Feb 1 20:31:48 localhost kernel: [ 4.433681] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:13.2/usb4/4-3/4-3.2/4-3.2:1.1/input/input3
    Feb 1 20:31:48 localhost kernel: [ 4.433739] apple 0003:05AC:0221.0004: input,hidraw3: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:13.2-3.2/input1
    Feb 1 20:31:48 localhost kernel: [ 12.293392] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 12.309096] ata4.00: ATA-8: WDC WD3000GLFS-01F8U0, 03.03V01, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 12.309099] ata4.00: 586072368 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    Feb 1 20:31:48 localhost kernel: [ 12.312342] ata4.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 12.312441] scsi 3:0:0:0: Direct-Access ATA WDC WD3000GLFS-0 03.0 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 12.630028] ata8: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 12.635871] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635950] sd 2:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635957] sd 0:0:0:0: [sda] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.635976] sd 3:0:0:0: [sdc] 586072368 512-byte logical blocks: (300 GB/279 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635985] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636034] sd 3:0:0:0: [sdc] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.636045] sd 2:0:0:0: [sdb] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.636066] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636079] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636749] sda: sda1 sda2 sda3 sda4
    Feb 1 20:31:48 localhost kernel: [ 12.637439] sd 0:0:0:0: [sda] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.640917] sdc: sdc1
    Feb 1 20:31:48 localhost kernel: [ 12.641165] sd 3:0:0:0: [sdc] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.651794] sdb: sdb1 sdb2
    Feb 1 20:31:48 localhost kernel: [ 12.652085] sd 2:0:0:0: [sdb] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.655644] sr0: scsi3-mmc drive: 125x/125x writer dvd-ram cd/rw xa/form2 cdda tray
    Feb 1 20:31:48 localhost kernel: [ 12.655648] cdrom: Uniform CD-ROM driver Revision: 3.20
    Feb 1 20:31:48 localhost kernel: [ 13.048056] Btrfs loaded
    Feb 1 20:31:48 localhost kernel: [ 13.048506] device fsid 699d671b-7064-441d-95ec-c616049fe287 devid 1 transid 3976 /dev/sda2
    Feb 1 20:31:48 localhost kernel: [ 13.056208] Btrfs detected SSD devices, enabling SSD mode
    Feb 1 20:31:48 localhost [ 13.490114] udevd[216]: starting version 180
    Feb 1 20:31:48 localhost kernel: [ 13.539060] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
    Feb 1 20:31:48 localhost kernel: [ 13.539066] ACPI: Power Button [PWRB]
    Feb 1 20:31:48 localhost kernel: [ 13.539864] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    Feb 1 20:31:48 localhost kernel: [ 13.539869] ACPI: Power Button [PWRF]
    Feb 1 20:31:48 localhost kernel: [ 13.540851] wmi: Mapper loaded
    Feb 1 20:31:48 localhost kernel: [ 13.558916] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    Feb 1 20:31:48 localhost kernel: [ 13.560394] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
    Feb 1 20:31:48 localhost kernel: [ 13.560397] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    Feb 1 20:31:48 localhost kernel: [ 13.560422] e1000e 0000:03:00.0: Disabling ASPM L0s
    Feb 1 20:31:48 localhost kernel: [ 13.560446] e1000e 0000:03:00.0: PCI INT A -> GSI 46 (level, low) -> IRQ 46
    Feb 1 20:31:48 localhost kernel: [ 13.561584] ACPI: resource piix4_smbus [io 0x0b00-0x0b07] conflicts with ACPI region SMRG [io 0xb00-0xb2f]
    Feb 1 20:31:48 localhost kernel: [ 13.561588] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 1 20:31:48 localhost kernel: [ 13.566248] [drm] Initialized drm 1.1.0 20060810
    Feb 1 20:31:48 localhost kernel: [ 13.574620] input: PC Speaker as /devices/platform/pcspkr/input/input6
    Feb 1 20:31:48 localhost kernel: [ 13.578148] EDAC MC: Ver: 2.1.0
    Feb 1 20:31:48 localhost kernel: [ 13.580298] MCE: In-kernel MCE decoding enabled.
    Feb 1 20:31:48 localhost kernel: [ 13.584054] snd_hda_intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Feb 1 20:31:48 localhost kernel: [ 13.585205] AMD64 EDAC driver v3.4.0
    Feb 1 20:31:48 localhost kernel: [ 13.592440] MXM: GUID detected in BIOS
    Feb 1 20:31:48 localhost kernel: [ 13.592532] nouveau 0000:01:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24
    Feb 1 20:31:48 localhost kernel: [ 13.594790] [drm] nouveau 0000:01:00.0: Detected an NV50 generation card (0x450300a3)
    Feb 1 20:31:48 localhost kernel: [ 13.599879] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
    Feb 1 20:31:48 localhost kernel: [ 13.617652] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Feb 1 20:31:48 localhost kernel: [ 13.618816] asus_wmi: ASUS WMI generic driver loaded
    Feb 1 20:31:48 localhost kernel: [ 13.619138] hda_codec: ALC889: BIOS auto-probing.
    Feb 1 20:31:48 localhost kernel: [ 13.620044] asus_wmi: Initialization: 0x0
    Feb 1 20:31:48 localhost kernel: [ 13.620072] asus_wmi: BIOS WMI version: 0.9
    Feb 1 20:31:48 localhost kernel: [ 13.620130] asus_wmi: SFUN value: 0x0
    Feb 1 20:31:48 localhost kernel: [ 13.620447] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input7
    Feb 1 20:31:48 localhost kernel: [ 13.622424] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input8
    Feb 1 20:31:48 localhost kernel: [ 13.631444] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    Feb 1 20:31:48 localhost kernel: [ 13.631636] EDAC amd64: DRAM ECC disabled.
    Feb 1 20:31:48 localhost kernel: [ 13.631648] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Feb 1 20:31:48 localhost kernel: [ 13.631650] Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    Feb 1 20:31:48 localhost kernel: [ 13.631651] (Note that use of the override may cause unknown side effects.)
    Feb 1 20:31:48 localhost kernel: [ 13.663236] e1000e 0000:03:00.0: eth0: (PCI Express:2.5GT/s:Width x1) 14:da:e9:13:96:a9
    Feb 1 20:31:48 localhost kernel: [ 13.663239] e1000e 0000:03:00.0: eth0: Intel(R) PRO/1000 Network Connection
    Feb 1 20:31:48 localhost kernel: [ 13.663331] e1000e 0000:03:00.0: eth0: MAC: 4, PHY: 8, PBA No: FFFFFF-0FF
    Feb 1 20:31:48 localhost kernel: [ 13.672185] [drm] nouveau 0000:01:00.0: ... appears to be valid
    Feb 1 20:31:48 localhost kernel: [ 13.672188] [drm] nouveau 0000:01:00.0: BIT BIOS found
    Feb 1 20:31:48 localhost kernel: [ 13.672190] [drm] nouveau 0000:01:00.0: Bios version 60.80.18.00
    Feb 1 20:31:48 localhost kernel: [ 13.672193] [drm] nouveau 0000:01:00.0: TMDS table version 2.0
    Feb 1 20:31:48 localhost kernel: [ 13.672195] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 4.0
    Feb 1 20:31:48 localhost kernel: [ 13.672197] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 04000320 00000028
    Feb 1 20:31:48 localhost kernel: [ 13.672199] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 01000322 00000030
    Feb 1 20:31:48 localhost kernel: [ 13.672201] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02011310 00000028
    Feb 1 20:31:48 localhost kernel: [ 13.672203] [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 02011312 00000030
    Feb 1 20:31:48 localhost kernel: [ 13.672204] [drm] nouveau 0000:01:00.0: Raw DCB entry 4: 010223f1 00c1c023
    Feb 1 20:31:48 localhost kernel: [ 13.672207] [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x40 5 14 2
    Feb 1 20:31:48 localhost kernel: [ 13.672209] [drm] nouveau 0000:01:00.0: 0: 0x00001030: type 0x30 idx 0 tag 0x07
    Feb 1 20:31:48 localhost kernel: [ 13.672211] [drm] nouveau 0000:01:00.0: 1: 0x00002130: type 0x30 idx 1 tag 0x08
    Feb 1 20:31:48 localhost kernel: [ 13.672213] [drm] nouveau 0000:01:00.0: 2: 0x00000210: type 0x10 idx 2 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672214] [drm] nouveau 0000:01:00.0: 3: 0x00000211: type 0x11 idx 3 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672216] [drm] nouveau 0000:01:00.0: 4: 0x00000213: type 0x13 idx 4 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672220] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xBFB4
    Feb 1 20:31:48 localhost kernel: [ 13.694453] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xC1BF
    Feb 1 20:31:48 localhost kernel: [ 13.711299] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xD37B
    Feb 1 20:31:48 localhost kernel: [ 13.711307] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xD46A
    Feb 1 20:31:48 localhost kernel: [ 13.712376] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xD621
    Feb 1 20:31:48 localhost kernel: [ 13.712378] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table at offset 0xD686
    Feb 1 20:31:48 localhost kernel: [ 13.732383] [drm] nouveau 0000:01:00.0: 0xD686: Condition still not met after 20ms, skipping following opcodes
    Feb 1 20:31:48 localhost kernel: [ 13.774080] adt7475 0-002e: ADT7473 device, revision 0
    Feb 1 20:31:48 localhost kernel: [ 13.774082] adt7475 0-002e: Optional features: fan4
    Feb 1 20:31:48 localhost kernel: [ 13.783928] [drm] nouveau 0000:01:00.0: Detected monitoring device: adt7473
    Feb 1 20:31:48 localhost kernel: [ 13.783931] [drm] nouveau 0000:01:00.0: 1 available performance level(s)
    Feb 1 20:31:48 localhost kernel: [ 13.783935] [drm] nouveau 0000:01:00.0: 0: core 513MHz shader 1188MHz memory 792MHz voltage 1300mV fanspeed 100%
    Feb 1 20:31:48 localhost kernel: [ 13.783950] [drm] nouveau 0000:01:00.0: c: core 198MHz shader 1188MHz memory 396MHz
    Feb 1 20:31:48 localhost kernel: [ 13.785323] [TTM] Zone kernel: Available graphics memory: 4062776 kiB.
    Feb 1 20:31:48 localhost kernel: [ 13.785325] [TTM] Zone dma32: Available graphics memory: 2097152 kiB.
    Feb 1 20:31:48 localhost kernel: [ 13.785327] [TTM] Initializing pool allocator.
    Feb 1 20:31:48 localhost kernel: [ 13.785341] [drm] nouveau 0000:01:00.0: Detected 320MiB VRAM
    Feb 1 20:31:48 localhost kernel: [ 13.799226] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
    Feb 1 20:31:48 localhost kernel: [ 13.806974] [drm] nouveau 0000:01:00.0: DCB encoder 1 unknown
    Feb 1 20:31:48 localhost kernel: [ 13.806977] [drm] nouveau 0000:01:00.0: TV-1 has no encoders, removing
    Feb 1 20:31:48 localhost kernel: [ 13.817239] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Feb 1 20:31:48 localhost kernel: [ 13.817241] [drm] No driver support for vblank timestamp query.
    Feb 1 20:31:48 localhost kernel: [ 13.918245] usbcore: registered new interface driver uas
    Feb 1 20:31:48 localhost kernel: [ 13.919398] Linux media interface: v0.10
    Feb 1 20:31:48 localhost kernel: [ 13.921493] Initializing USB Mass Storage driver...
    Feb 1 20:31:48 localhost kernel: [ 13.921642] scsi8 : usb-storage 3-3:1.0
    Feb 1 20:31:48 localhost kernel: [ 13.922317] usbcore: registered new interface driver usb-storage
    Feb 1 20:31:48 localhost kernel: [ 13.922320] USB Mass Storage support registered.
    Feb 1 20:31:48 localhost kernel: [ 13.925326] Linux video capture interface: v2.00
    Feb 1 20:31:48 localhost kernel: [ 13.927942] uvcvideo: Found UVC 1.00 device <unnamed> (046d:080f)
    Feb 1 20:31:48 localhost kernel: [ 13.942174] input: UVC Camera (046d:080f) as /devices/pci0000:00/0000:00:13.2/usb4/4-5/4-5:1.0/input/input10
    Feb 1 20:31:48 localhost kernel: [ 13.942248] usbcore: registered new interface driver uvcvideo
    Feb 1 20:31:48 localhost kernel: [ 13.942251] USB Video Class driver (1.1.1)
    Feb 1 20:31:48 localhost kernel: [ 13.976590] [drm] nouveau 0000:01:00.0: allocated 1680x1050 fb: 0x310000, bo ffff88021ea78000
    Feb 1 20:31:48 localhost kernel: [ 13.976738] fbcon: nouveaufb (fb0) is primary device
    Feb 1 20:31:48 localhost kernel: [ 14.021548] Console: switching to colour frame buffer device 210x65
    Feb 1 20:31:48 localhost kernel: [ 14.025974] fb0: nouveaufb frame buffer device
    Feb 1 20:31:48 localhost kernel: [ 14.025976] drm: registered panic notifier
    Feb 1 20:31:48 localhost kernel: [ 14.025979] [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0
    Feb 1 20:31:48 localhost kernel: [ 14.946307] scsi 8:0:0:0: Direct-Access WD My Book 1028 PQ: 0 ANSI: 4
    Feb 1 20:31:48 localhost kernel: [ 14.969040] sd 8:0:0:0: [sdd] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Feb 1 20:31:48 localhost kernel: [ 14.982159] sd 8:0:0:0: [sdd] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 14.996032] sd 8:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 15.619105] sdd: sdd1
    Feb 1 20:31:48 localhost kernel: [ 15.730813] sd 8:0:0:0: [sdd] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 17.625282] device fsid 699d671b-7064-441d-95ec-c616049fe287 devid 1 transid 3976 /dev/sda2
    Feb 1 20:31:48 localhost kernel: [ 17.625855] device label home devid 1 transid 8074 /dev/sda3
    Feb 1 20:31:48 localhost kernel: [ 17.927687] btrfs: use ssd allocation scheme
    Feb 1 20:31:48 localhost kernel: [ 17.930204] device label home devid 1 transid 8074 /dev/sda3
    Feb 1 20:31:48 localhost kernel: [ 17.940362] Btrfs detected SSD devices, enabling SSD mode
    Feb 1 20:31:48 localhost kernel: [ 17.976566] kjournald starting. Commit interval 5 seconds
    Feb 1 20:31:48 localhost kernel: [ 17.976619] EXT3-fs (sdb2): warning: maximal mount count reached, running e2fsck is recommended
    Feb 1 20:31:48 localhost kernel: [ 17.976813] EXT3-fs (sdb2): using internal journal
    Feb 1 20:31:48 localhost kernel: [ 17.976816] EXT3-fs (sdb2): mounted filesystem with ordered data mode
    Feb 1 20:31:48 localhost kernel: [ 18.018513] kjournald starting. Commit interval 5 seconds
    Feb 1 20:31:48 localhost kernel: [

    User,
    Refer this
    http://oracleintelligence.blogspot.com/2008/08/obiee-time-to-expire-for-idle.html
    thanks,
    Saichand.v

  • 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] LXDE missing window borders (or decoratioins, widget?)

    Hello,
    The LXDE runs fine on my newly built arch for a couple of days, and then I must have done something (e.g. upgraded or uninstalled some packages) and now I can still log into LXDE by using slim login manager or startx command, but none of the applications will have the window borders and I am not able to move the application window around or minimize/resize the window.
    Here is my .xinitrc file
    [sgeuser@sge00 ~]$ cat .xinitrc
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    if [ -d /etc/X11/xinit/xinitrc.d ]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    # exec gnome-session
    # exec startkde
    # exec startxfce4
    # ...or the Window Manager of your choice
    FontPath /usr/share/fonts/100dpi
    xset -dpms
    xset s off
    exec /usr/bin/startlxde
    Here is my systemd journal since reboot:
    [1;39m-- Reboot --[0m
    Sep 02 13:13:37 sge00 systemd-journal[98]: Allowing runtime journal files to grow to 100.3M.
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys cpuset
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys cpu
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys cpuacct
    Sep 02 13:13:37 sge00 kernel: Linux version 3.10.10-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Aug 30 11:30:06 CEST 2013
    Sep 02 13:13:37 sge00 kernel: Command line: root=/dev/sda1 rw initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Sep 02 13:13:37 sge00 kernel: e820: BIOS-provided physical RAM map:
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007ffeffff] usable
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data
    Sep 02 13:13:37 sge00 kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
    Sep 02 13:13:37 sge00 kernel: NX (Execute Disable) protection: active
    Sep 02 13:13:37 sge00 kernel: SMBIOS 2.5 present.
    Sep 02 13:13:37 sge00 kernel: DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
    Sep 02 13:13:37 sge00 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Sep 02 13:13:37 sge00 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Sep 02 13:13:37 sge00 kernel: No AGP bridge found
    Sep 02 13:13:37 sge00 kernel: e820: last_pfn = 0x7fff0 max_arch_pfn = 0x400000000
    Sep 02 13:13:37 sge00 kernel: MTRR default type: uncachable
    Sep 02 13:13:37 sge00 kernel: MTRR variable ranges disabled:
    Sep 02 13:13:37 sge00 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Sep 02 13:13:37 sge00 kernel: CPU MTRRs all blank - virtualized system.
    Sep 02 13:13:37 sge00 kernel: found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [ffff88000009fff0]
    Sep 02 13:13:37 sge00 kernel: Scanning 1 areas for low memory corruption
    Sep 02 13:13:37 sge00 kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x00000000-0x000fffff] page 4k
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b23000, 0x01b23fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b24000, 0x01b24fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b25000, 0x01b25fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x7fa00000-0x7fbfffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x7fa00000-0x7fbfffff] page 2M
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b26000, 0x01b26fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x7c000000-0x7f9fffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x7c000000-0x7f9fffff] page 2M
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x00100000-0x7bffffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x00100000-0x001fffff] page 4k
    Sep 02 13:13:37 sge00 kernel: [mem 0x00200000-0x7bffffff] page 2M
    Sep 02 13:13:37 sge00 kernel: init_memory_mapping: [mem 0x7fc00000-0x7ffeffff]
    Sep 02 13:13:37 sge00 kernel: [mem 0x7fc00000-0x7fdfffff] page 2M
    Sep 02 13:13:37 sge00 kernel: [mem 0x7fe00000-0x7ffeffff] page 4k
    Sep 02 13:13:37 sge00 kernel: BRK [0x01b27000, 0x01b27fff] PGTABLE
    Sep 02 13:13:37 sge00 kernel: RAMDISK: [mem 0x7fd22000-0x7ffeefff]
    Sep 02 13:13:37 sge00 kernel: ACPI: RSDP 00000000000e0000 00024 (v02 VBOX )
    Sep 02 13:13:37 sge00 kernel: ACPI: XSDT 000000007fff0030 0003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
    Sep 02 13:13:37 sge00 kernel: ACPI: FACP 000000007fff00f0 000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
    Sep 02 13:13:37 sge00 kernel: ACPI: DSDT 000000007fff0470 01B96 (v01 VBOX VBOXBIOS 00000002 INTL 20100528)
    Sep 02 13:13:37 sge00 kernel: ACPI: FACS 000000007fff0200 00040
    Sep 02 13:13:37 sge00 kernel: ACPI: APIC 000000007fff0240 0005C (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
    Sep 02 13:13:37 sge00 kernel: ACPI: SSDT 000000007fff02a0 001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
    Sep 02 13:13:37 sge00 kernel: ACPI: Local APIC address 0xfee00000
    Sep 02 13:13:37 sge00 kernel: No NUMA configuration found
    Sep 02 13:13:37 sge00 kernel: Faking a node at [mem 0x0000000000000000-0x000000007ffeffff]
    Sep 02 13:13:37 sge00 kernel: Initmem setup node 0 [mem 0x00000000-0x7ffeffff]
    Sep 02 13:13:37 sge00 kernel: NODE_DATA [mem 0x7fd1d000-0x7fd21fff]
    Sep 02 13:13:37 sge00 kernel: [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007d400000-ffff88007f3fffff] on node 0
    Sep 02 13:13:37 sge00 kernel: Zone ranges:
    Sep 02 13:13:37 sge00 kernel: DMA [mem 0x00001000-0x00ffffff]
    Sep 02 13:13:37 sge00 kernel: DMA32 [mem 0x01000000-0xffffffff]
    Sep 02 13:13:37 sge00 kernel: Normal empty
    Sep 02 13:13:37 sge00 kernel: Movable zone start for each node
    Sep 02 13:13:37 sge00 kernel: Early memory node ranges
    Sep 02 13:13:37 sge00 kernel: node 0: [mem 0x00001000-0x0009efff]
    Sep 02 13:13:37 sge00 kernel: node 0: [mem 0x00100000-0x7ffeffff]
    Sep 02 13:13:37 sge00 kernel: On node 0 totalpages: 524174
    Sep 02 13:13:37 sge00 kernel: DMA zone: 64 pages used for memmap
    Sep 02 13:13:37 sge00 kernel: DMA zone: 21 pages reserved
    Sep 02 13:13:37 sge00 kernel: DMA zone: 3998 pages, LIFO batch:0
    Sep 02 13:13:37 sge00 kernel: DMA32 zone: 8128 pages used for memmap
    Sep 02 13:13:37 sge00 kernel: DMA32 zone: 520176 pages, LIFO batch:31
    Sep 02 13:13:37 sge00 kernel: ACPI: PM-Timer IO Port: 0x4008
    Sep 02 13:13:37 sge00 kernel: ACPI: Local APIC address 0xfee00000
    Sep 02 13:13:37 sge00 kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Sep 02 13:13:37 sge00 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Sep 02 13:13:37 sge00 kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Sep 02 13:13:37 sge00 kernel: IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    Sep 02 13:13:37 sge00 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Sep 02 13:13:37 sge00 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Sep 02 13:13:37 sge00 kernel: ACPI: IRQ0 used by override.
    Sep 02 13:13:37 sge00 kernel: ACPI: IRQ2 used by override.
    Sep 02 13:13:37 sge00 kernel: ACPI: IRQ9 used by override.
    Sep 02 13:13:37 sge00 kernel: Using ACPI (MADT) for SMP configuration information
    Sep 02 13:13:37 sge00 kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    Sep 02 13:13:37 sge00 kernel: nr_irqs_gsi: 40
    Sep 02 13:13:37 sge00 kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Sep 02 13:13:37 sge00 kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Sep 02 13:13:37 sge00 kernel: PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Sep 02 13:13:37 sge00 kernel: e820: [mem 0x80000000-0xfffbffff] available for PCI devices
    Sep 02 13:13:37 sge00 kernel: Booting paravirtualized kernel on bare hardware
    Sep 02 13:13:37 sge00 kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    Sep 02 13:13:37 sge00 kernel: PERCPU: Embedded 28 pages/cpu @ffff88007fa00000 s86016 r8192 d20480 u1048576
    Sep 02 13:13:37 sge00 kernel: pcpu-alloc: s86016 r8192 d20480 u1048576 alloc=1*2097152
    Sep 02 13:13:37 sge00 kernel: pcpu-alloc: [0] 0 1
    Sep 02 13:13:37 sge00 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 515961
    Sep 02 13:13:37 sge00 kernel: Policy zone: DMA32
    Sep 02 13:13:37 sge00 kernel: Kernel command line: root=/dev/sda1 rw initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Sep 02 13:13:37 sge00 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Sep 02 13:13:37 sge00 kernel: Checking aperture...
    Sep 02 13:13:37 sge00 kernel: No AGP bridge found
    Sep 02 13:13:37 sge00 kernel: Calgary: detecting Calgary via BIOS EBDA area
    Sep 02 13:13:37 sge00 kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Sep 02 13:13:37 sge00 kernel: Memory: 2049056k/2097088k available (4943k kernel code, 392k absent, 47640k reserved, 4024k data, 1124k init)
    Sep 02 13:13:37 sge00 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Sep 02 13:13:37 sge00 kernel: Preemptible hierarchical RCU implementation.
    Sep 02 13:13:37 sge00 kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Sep 02 13:13:37 sge00 kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Sep 02 13:13:37 sge00 kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=2.
    Sep 02 13:13:37 sge00 kernel: NR_IRQS:4352 nr_irqs:512 16
    Sep 02 13:13:37 sge00 kernel: Console: colour VGA+ 80x25
    Sep 02 13:13:37 sge00 kernel: console [tty0] enabled
    Sep 02 13:13:37 sge00 kernel: allocated 8388608 bytes of page_cgroup
    Sep 02 13:13:37 sge00 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Sep 02 13:13:37 sge00 kernel: tsc: Fast TSC calibration failed
    Sep 02 13:13:37 sge00 kernel: tsc: PIT calibration matches PMTIMER. 2 loops
    Sep 02 13:13:37 sge00 kernel: tsc: Detected 2708.883 MHz processor
    Sep 02 13:13:37 sge00 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5419.50 BogoMIPS (lpj=9029610)
    Sep 02 13:13:37 sge00 kernel: pid_max: default: 32768 minimum: 301
    Sep 02 13:13:37 sge00 kernel: Security Framework initialized
    Sep 02 13:13:37 sge00 kernel: AppArmor: AppArmor disabled by boot time parameter
    Sep 02 13:13:37 sge00 kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Sep 02 13:13:37 sge00 kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Sep 02 13:13:37 sge00 kernel: Mount-cache hash table entries: 256
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys memory
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys devices
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys freezer
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys net_cls
    Sep 02 13:13:37 sge00 kernel: Initializing cgroup subsys blkio
    Sep 02 13:13:37 sge00 kernel: CPU: Physical Processor ID: 0
    Sep 02 13:13:37 sge00 kernel: CPU: Processor Core ID: 0
    Sep 02 13:13:37 sge00 kernel: mce: CPU supports 0 MCE banks
    Sep 02 13:13:37 sge00 kernel: [117B blob data]
    Sep 02 13:13:37 sge00 kernel: Freeing SMP alternatives: 20k freed
    Sep 02 13:13:37 sge00 kernel: ACPI: Core revision 20130328
    Sep 02 13:13:37 sge00 kernel: ACPI: All ACPI Tables successfully acquired
    Sep 02 13:13:37 sge00 kernel: ftrace: allocating 19652 entries in 77 pages
    Sep 02 13:13:37 sge00 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Sep 02 13:13:37 sge00 kernel: smpboot: CPU0: Intel(R) Core(TM) i7-3820QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
    Sep 02 13:13:37 sge00 kernel: Performance Events: unsupported p6 CPU model 58 no PMU driver, software events only.
    Sep 02 13:13:37 sge00 kernel: NMI watchdog: disabled (cpu0): hardware events not enabled
    Sep 02 13:13:37 sge00 kernel: smpboot: Booting Node 0, Processors #1 OK
    Sep 02 13:13:37 sge00 kernel: mce: CPU supports 0 MCE banks
    Sep 02 13:13:37 sge00 kernel: TSC synchronization [CPU#0 -> CPU#1]:
    Sep 02 13:13:37 sge00 kernel: Measured 31057 cycles TSC warp between CPUs, turning off TSC clock.
    Sep 02 13:13:37 sge00 kernel: tsc: Marking TSC unstable due to check_tsc_sync_source failed
    Sep 02 13:13:37 sge00 kernel: Brought up 2 CPUs
    Sep 02 13:13:37 sge00 kernel: smpboot: Total of 2 processors activated (10839.01 BogoMIPS)
    Sep 02 13:13:37 sge00 kernel: devtmpfs: initialized
    Sep 02 13:13:37 sge00 kernel: RTC time: 17:13:36, date: 09/02/13
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 16
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type PCI registered
    Sep 02 13:13:37 sge00 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Sep 02 13:13:37 sge00 kernel: PCI: Using configuration type 1 for base access
    Sep 02 13:13:37 sge00 kernel: bio: create slab <bio-0> at 0
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(Module Device)
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(Processor Device)
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Sep 02 13:13:37 sge00 kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Sep 02 13:13:37 sge00 kernel: ACPI: EC: Look up EC in DSDT
    Sep 02 13:13:37 sge00 kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Sep 02 13:13:37 sge00 kernel: ACPI: Interpreter enabled
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20130328/hwxface-568)
    Sep 02 13:13:37 sge00 kernel: ACPI: (supports S0 S5)
    Sep 02 13:13:37 sge00 kernel: ACPI: Using IOAPIC for interrupt routing
    Sep 02 13:13:37 sge00 kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Sep 02 13:13:37 sge00 kernel: ACPI: No dock devices found.
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: host bridge window [mem 0x80000000-0xffdfffff] (ignored)
    Sep 02 13:13:37 sge00 kernel: PCI: root bus 00: using default resources
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
    Sep 02 13:13:37 sge00 kernel: PCI host bridge to bus 0000:00
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.1: [8086:7111] type 00 class 0x01018a
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.1: reg 20: [io 0xd000-0xd00f]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:02.0: [80ee:beef] type 00 class 0x030000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:02.0: reg 10: [mem 0xe0000000-0xe0ffffff pref]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:03.0: reg 10: [mem 0xf0000000-0xf001ffff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:03.0: reg 18: [io 0xd010-0xd017]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: reg 10: [io 0xd020-0xd03f]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: reg 14: [mem 0xf0400000-0xf07fffff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:04.0: reg 18: [mem 0xf0800000-0xf0803fff pref]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:06.0: reg 10: [mem 0xf0804000-0xf0804fff]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:07.0: [8086:7113] type 00 class 0x068000
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 10: [io 0xd040-0xd047]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 18: [io 0xd050-0xd057]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 20: [io 0xd060-0xd06f]
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:0d.0: reg 24: [mem 0xf0806000-0xf0807fff]
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Sep 02 13:13:37 sge00 kernel: acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs *5 9 10 11)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 10 *11)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 9 *10 11)
    Sep 02 13:13:37 sge00 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 *9 10 11)
    Sep 02 13:13:37 sge00 kernel: ACPI: Enabled 1 GPEs in block 00 to 07
    Sep 02 13:13:37 sge00 kernel: acpi root: \_SB_.PCI0 notify handler is installed
    Sep 02 13:13:37 sge00 kernel: Found 1 acpi root devices
    Sep 02 13:13:37 sge00 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Sep 02 13:13:37 sge00 kernel: vgaarb: loaded
    Sep 02 13:13:37 sge00 kernel: vgaarb: bridge control possible 0000:00:02.0
    Sep 02 13:13:37 sge00 kernel: PCI: Using ACPI for IRQ routing
    Sep 02 13:13:37 sge00 kernel: PCI: pci_cache_line_size set to 64 bytes
    Sep 02 13:13:37 sge00 kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Sep 02 13:13:37 sge00 kernel: e820: reserve RAM buffer [mem 0x7fff0000-0x7fffffff]
    Sep 02 13:13:37 sge00 kernel: NetLabel: Initializing
    Sep 02 13:13:37 sge00 kernel: NetLabel: domain hash size = 128
    Sep 02 13:13:37 sge00 kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Sep 02 13:13:37 sge00 kernel: NetLabel: unlabeled traffic allowed by default
    Sep 02 13:13:37 sge00 kernel: Switching to clocksource refined-jiffies
    Sep 02 13:13:37 sge00 kernel: pnp: PnP ACPI init
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type PNP registered
    Sep 02 13:13:37 sge00 kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0303 (active)
    Sep 02 13:13:37 sge00 kernel: pnp 00:01: [dma 4]
    Sep 02 13:13:37 sge00 kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Sep 02 13:13:37 sge00 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f03 (active)
    Sep 02 13:13:37 sge00 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active)
    Sep 02 13:13:37 sge00 kernel: pnp: PnP ACPI: found 4 devices
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type PNP unregistered
    Sep 02 13:13:37 sge00 kernel: Switching to clocksource acpi_pm
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    Sep 02 13:13:37 sge00 kernel: pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff]
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 2
    Sep 02 13:13:37 sge00 kernel: TCP established hash table entries: 16384 (order: 6, 262144 bytes)
    Sep 02 13:13:37 sge00 kernel: TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
    Sep 02 13:13:37 sge00 kernel: TCP: Hash tables configured (established 16384 bind 16384)
    Sep 02 13:13:37 sge00 kernel: TCP: reno registered
    Sep 02 13:13:37 sge00 kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes)
    Sep 02 13:13:37 sge00 kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 1
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:01.0: Activating ISA DMA hang workarounds
    Sep 02 13:13:37 sge00 kernel: pci 0000:00:02.0: Boot video device
    Sep 02 13:13:37 sge00 kernel: PCI: CLS 0 bytes, default 64
    Sep 02 13:13:37 sge00 kernel: Unpacking initramfs...
    Sep 02 13:13:37 sge00 kernel: Freeing initrd memory: 2868k freed
    Sep 02 13:13:37 sge00 kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
    Sep 02 13:13:37 sge00 kernel: Scanning for low memory corruption every 60 seconds
    Sep 02 13:13:37 sge00 kernel: audit: initializing netlink socket (disabled)
    Sep 02 13:13:37 sge00 kernel: type=2000 audit(1378142015.246:1): initialized
    Sep 02 13:13:37 sge00 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Sep 02 13:13:37 sge00 kernel: VFS: Disk quotas dquot_6.5.2
    Sep 02 13:13:37 sge00 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Sep 02 13:13:37 sge00 kernel: msgmni has been set to 4007
    Sep 02 13:13:37 sge00 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Sep 02 13:13:37 sge00 kernel: io scheduler noop registered
    Sep 02 13:13:37 sge00 kernel: io scheduler deadline registered
    Sep 02 13:13:37 sge00 kernel: io scheduler cfq registered (default)
    Sep 02 13:13:37 sge00 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Sep 02 13:13:37 sge00 kernel: intel_idle: does not run on family 6 model 58
    Sep 02 13:13:37 sge00 kernel: GHES: HEST is not enabled!
    Sep 02 13:13:37 sge00 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Sep 02 13:13:37 sge00 kernel: Linux agpgart interface v0.103
    Sep 02 13:13:37 sge00 kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    Sep 02 13:13:37 sge00 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Sep 02 13:13:37 sge00 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Sep 02 13:13:37 sge00 kernel: mousedev: PS/2 mouse device common for all mice
    Sep 02 13:13:37 sge00 kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Sep 02 13:13:37 sge00 kernel: rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
    Sep 02 13:13:37 sge00 kernel: rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
    Sep 02 13:13:37 sge00 kernel: cpuidle: using governor ladder
    Sep 02 13:13:37 sge00 kernel: cpuidle: using governor menu
    Sep 02 13:13:37 sge00 kernel: drop_monitor: Initializing network drop monitor service
    Sep 02 13:13:37 sge00 kernel: TCP: cubic registered
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 10
    Sep 02 13:13:37 sge00 kernel: NET: Registered protocol family 17
    Sep 02 13:13:37 sge00 kernel: Key type dns_resolver registered
    Sep 02 13:13:37 sge00 kernel: PM: Hibernation image not present or could not be loaded.
    Sep 02 13:13:37 sge00 kernel: registered taskstats version 1
    Sep 02 13:13:37 sge00 kernel: Magic number: 13:139:238
    Sep 02 13:13:37 sge00 kernel: rtc_cmos rtc_cmos: setting system clock to 2013-09-02 17:13:36 UTC (1378142016)
    Sep 02 13:13:37 sge00 kernel: Freeing unused kernel memory: 1124k freed
    Sep 02 13:13:37 sge00 kernel: Write protecting the kernel read-only data: 8192k
    Sep 02 13:13:37 sge00 kernel: Freeing unused kernel memory: 1192k freed
    Sep 02 13:13:37 sge00 kernel: Freeing unused kernel memory: 400k freed
    Sep 02 13:13:37 sge00 systemd-udevd[45]: starting version 204
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type USB registered
    Sep 02 13:13:37 sge00 kernel: usbcore: registered new interface driver usbfs
    Sep 02 13:13:37 sge00 kernel: usbcore: registered new interface driver hub
    Sep 02 13:13:37 sge00 kernel: SCSI subsystem initialized
    Sep 02 13:13:37 sge00 kernel: ACPI: bus type ATA registered
    Sep 02 13:13:37 sge00 kernel: usbcore: registered new device driver usb
    Sep 02 13:13:37 sge00 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Sep 02 13:13:37 sge00 kernel: ohci_hcd 0000:00:06.0: OHCI Host Controller
    Sep 02 13:13:37 sge00 kernel: ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 1
    Sep 02 13:13:37 sge00 kernel: ohci_hcd 0000:00:06.0: irq 22, io mem 0xf0804000
    Sep 02 13:13:37 sge00 kernel: libata version 3.00 loaded.
    Sep 02 13:13:37 sge00 kernel: hub 1-0:1.0: USB hub found
    Sep 02 13:13:37 sge00 kernel: hub 1-0:1.0: 8 ports detected
    Sep 02 13:13:37 sge00 kernel: ahci 0000:00:0d.0: version 3.0
    Sep 02 13:13:37 sge00 kernel: ahci: SSS flag set, parallel bus scan disabled
    Sep 02 13:13:37 sge00 kernel: ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    Sep 02 13:13:37 sge00 kernel: ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
    Sep 02 13:13:37 sge00 kernel: scsi0 : ahci
    Sep 02 13:13:37 sge00 kernel: ata1: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806100 irq 21
    Sep 02 13:13:37 sge00 kernel: ata_piix 0000:00:01.1: version 2.13
    Sep 02 13:13:37 sge00 kernel: scsi1 : ata_piix
    Sep 02 13:13:37 sge00 kernel: scsi2 : ata_piix
    Sep 02 13:13:37 sge00 kernel: ata2: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
    Sep 02 13:13:37 sge00 kernel: ata3: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
    Sep 02 13:13:37 sge00 kernel: ata3.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
    Sep 02 13:13:37 sge00 kernel: ata3.00: configured for UDMA/33
    Sep 02 13:13:37 sge00 kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Sep 02 13:13:37 sge00 kernel: ata1.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
    Sep 02 13:13:37 sge00 kernel: ata1.00: 167772160 sectors, multi 128: LBA48 NCQ (depth 31/32)
    Sep 02 13:13:37 sge00 kernel: ata1.00: configured for UDMA/133
    Sep 02 13:13:37 sge00 kernel: scsi 0:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
    Sep 02 13:13:37 sge00 kernel: scsi 2:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] 167772160 512-byte logical blocks: (85.8 GB/80.0 GiB)
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Write Protect is off
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Sep 02 13:13:37 sge00 kernel: sr0: scsi3-mmc drive: 32x/32x xa/form2 tray
    Sep 02 13:13:37 sge00 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Sep 02 13:13:37 sge00 kernel: sr 2:0:0:0: Attached scsi CD-ROM sr0
    Sep 02 13:13:37 sge00 kernel: sda: sda1
    Sep 02 13:13:37 sge00 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Sep 02 13:13:37 sge00 kernel: usb 1-1: new full-speed USB device number 2 using ohci_hcd
    Sep 02 13:13:37 sge00 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Sep 02 13:13:37 sge00 systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Sep 02 13:13:37 sge00 systemd[1]: Detected virtualization 'oracle'.
    Sep 02 13:13:37 sge00 systemd[1]: Set hostname to <sge00>.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Remote File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Remote File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Expecting device sys-subsystem-net-devices-enp0s3.device...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Delayed Shutdown Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on Delayed Shutdown Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Device-mapper event daemon FIFOs.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Sep 02 13:13:37 sge00 systemd[1]: Starting LVM2 metadata daemon socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on LVM2 metadata daemon socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Encrypted Volumes.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Encrypted Volumes.
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Kernel Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on udev Kernel Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Control Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on udev Control Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Sep 02 13:13:37 sge00 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Paths.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Paths.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Journal Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on Journal Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Load Kernel Modules...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Setup Virtual Console...
    Sep 02 13:13:37 sge00 systemd[1]: Started Set Up Additional Binary Formats.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Apply Kernel Variables...
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Coldplug all Devices...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Create static device nodes in /dev...
    Sep 02 13:13:37 sge00 systemd[1]: Mounting POSIX Message Queue File System...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Journal Service...
    Sep 02 13:13:37 sge00 systemd[1]: Started Journal Service.
    Sep 02 13:13:37 sge00 systemd[1]: Mounting Debug File System...
    Sep 02 13:13:37 sge00 systemd[1]: Mounting Huge Pages File System...
    Sep 02 13:13:37 sge00 systemd[1]: Started File System Check on Root Device.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Remount Root and Kernel File Systems...
    Sep 02 13:13:37 sge00 systemd[1]: Started Setup Virtual Console.
    Sep 02 13:13:37 sge00 systemd[1]: Started Create static device nodes in /dev.
    Sep 02 13:13:37 sge00 systemd[1]: Starting udev Kernel Device Manager...
    Sep 02 13:13:37 sge00 kernel: EXT4-fs (sda1): re-mounted. Opts: data=ordered
    Sep 02 13:13:37 sge00 kernel: FS-Cache: Loaded
    Sep 02 13:13:37 sge00 kernel: RPC: Registered named UNIX socket transport module.
    Sep 02 13:13:37 sge00 kernel: RPC: Registered udp transport module.
    Sep 02 13:13:37 sge00 kernel: RPC: Registered tcp transport module.
    Sep 02 13:13:37 sge00 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
    Sep 02 13:13:37 sge00 systemd-journal[98]: Journal started
    Sep 02 13:13:37 sge00 systemd[1]: Started Apply Kernel Variables.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted POSIX Message Queue File System.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted Debug File System.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted Huge Pages File System.
    Sep 02 13:13:37 sge00 systemd[1]: Started Remount Root and Kernel File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Load Random Seed...
    Sep 02 13:13:37 sge00 systemd[1]: Activating swap /swapfile...
    Sep 02 13:13:37 sge00 systemd[1]: Started udev Coldplug all Devices.
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'nfs'
    Sep 02 13:13:37 sge00 kernel: FS-Cache: Netfs 'nfs' registered for caching
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'vboxguest'
    Sep 02 13:13:37 sge00 kernel: input: Unspecified device as /devices/pci0000:00/0000:00:04.0/input/input1
    Sep 02 13:13:37 sge00 kernel: vboxguest: major 0, IRQ 20, I/O port d020, MMIO at 00000000f0400000 (size 0x400000)
    Sep 02 13:13:37 sge00 kernel: vboxguest: Successfully loaded version 4.2.16_OSE (interface 0x00010004)
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'vboxsf'
    Sep 02 13:13:37 sge00 kernel: vboxsf: Successfully loaded version 4.2.16_OSE (interface 0x00010004)
    Sep 02 13:13:37 sge00 systemd-modules-load[92]: Inserted module 'vboxvideo'
    Sep 02 13:13:37 sge00 systemd[1]: Started Load Kernel Modules.
    Sep 02 13:13:37 sge00 systemd[1]: Mounting Configuration File System...
    Sep 02 13:13:37 sge00 kernel: [drm] Initialized drm 1.1.0 20060810
    Sep 02 13:13:37 sge00 kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Sep 02 13:13:37 sge00 kernel: [drm] No driver support for vblank timestamp query.
    Sep 02 13:13:37 sge00 kernel: [drm] Initialized vboxvideo 1.0.0 20090303 for 0000:00:02.0 on minor 0
    Sep 02 13:13:37 sge00 systemd[1]: Mounted FUSE Control File System.
    Sep 02 13:13:37 sge00 systemd[1]: Started udev Kernel Device Manager.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Local File Systems (Pre).
    Sep 02 13:13:37 sge00 systemd-udevd[106]: starting version 204
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Local File Systems (Pre).
    Sep 02 13:13:37 sge00 systemd[1]: Mounting RPC pipe filesystem...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Local File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Local File Systems.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Recreate Volatile Files and Directories...
    Sep 02 13:13:37 sge00 systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage...
    Sep 02 13:13:37 sge00 systemd[1]: Mounted RPC pipe filesystem.
    Sep 02 13:13:37 sge00 systemd[1]: Mounted Configuration File System.
    Sep 02 13:13:37 sge00 systemd[1]: Started Load Random Seed.
    Sep 02 13:13:37 sge00 systemd-journal[98]: Allowing system journal files to grow to 4.0G.
    Sep 02 13:13:37 sge00 systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Sep 02 13:13:37 sge00 systemd[1]: Started Recreate Volatile Files and Directories.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Update UTMP about System Reboot/Shutdown...
    Sep 02 13:13:37 sge00 systemd[1]: Started Update UTMP about System Reboot/Shutdown.
    Sep 02 13:13:37 sge00 systemd[1]: Activated swap /swapfile.
    Sep 02 13:13:37 sge00 systemd[1]: Starting Swap.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target Swap.
    Sep 02 13:13:37 sge00 systemd[1]: Starting System Initialization.
    Sep 02 13:13:37 sge00 systemd[1]: Reached target System Initialization.
    Sep 02 13:13:37 sge00 systemd[1]: Starting D-Bus System Message Bus Socket.
    Sep 02 13:13:37 sge00 systemd[1]: Listening on D-Bus System Message Bus Socket.
    Sep 02 13:13:38 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:38 sge00 swapon[116]: swapon: /swapfile: insecure permissions 0777, 0600 suggested.
    Sep 02 13:13:38 sge00 kernel: ACPI: AC Adapter [AC] (on-line)
    Sep 02 13:13:37 sge00 sshd[155]: Server listening on 0.0.0.0 port 22.
    Sep 02 13:13:37 sge00 sshd[155]: Server listening on :: port 22.
    Sep 02 13:13:37 sge00 slapd[156]: @(#) $OpenLDAP: slapd 2.4.35 (May 20 2013 16:33:13) $
    Sep 02 13:13:37 sge00 slapd[168]: bdb_monitor_db_open: monitoring disabled; configure monitor database to enable
    Sep 02 13:13:37 sge00 slapd[168]: slapd starting
    Sep 02 13:13:38 sge00 kernel: parport_pc 00:03: reported by Plug and Play ACPI
    Sep 02 13:13:38 sge00 kernel: input: PC Speaker as /devices/platform/pcspkr/input/input2
    Sep 02 13:13:38 sge00 kernel: microcode: CPU0 sig=0x306a9, pf=0x1, revision=0x0
    Sep 02 13:13:38 sge00 kernel: microcode: CPU1 sig=0x306a9, pf=0x1, revision=0x0
    Sep 02 13:13:38 sge00 kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Sep 02 13:13:38 sge00 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Sep 02 13:13:38 sge00 kernel: ACPI: Battery Slot [BAT0] (battery present)
    Sep 02 13:13:38 sge00 kernel: ACPI: Power Button [PWRF]
    Sep 02 13:13:38 sge00 CLCGenomicsServer[163]: Starting CLCGenomicsServer
    Sep 02 13:13:38 sge00 kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input4
    Sep 02 13:13:38 sge00 slim[166]: /usr/bin/xauth: file /var/run/slim.auth does not exist
    Sep 02 13:13:38 sge00 slim[166]: X.Org X Server 1.14.2
    Sep 02 13:13:38 sge00 slim[166]: Release Date: 2013-06-25
    Sep 02 13:13:38 sge00 slim[166]: X Protocol Version 11, Revision 0
    Sep 02 13:13:38 sge00 slim[166]: Build Operating System: Linux 3.9.7-1-ARCH x86_64
    Sep 02 13:13:38 sge00 slim[166]: Current Operating System: Linux sge00 3.10.10-1-ARCH #1 SMP PREEMPT Fri Aug 30 11:30:06 CEST 2013 x86_64
    Sep 02 13:13:38 sge00 slim[166]: Kernel command line: root=/dev/sda1 rw initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Sep 02 13:13:38 sge00 slim[166]: Build Date: 01 July 2013 10:48:42AM
    Sep 02 13:13:38 sge00 slim[166]: Current version of pixman: 0.30.2
    Sep 02 13:13:38 sge00 slim[166]: Before reporting problems, check http://wiki.x.org
    Sep 02 13:13:38 sge00 slim[166]: to make sure that you have the latest version.
    Sep 02 13:13:38 sge00 slim[166]: Markers: (--) probed, (**) from config file, (==) default setting,
    Sep 02 13:13:38 sge00 slim[166]: (++) from command line, (!!) notice, (II) informational,
    Sep 02 13:13:38 sge00 slim[166]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    Sep 02 13:13:38 sge00 slim[166]: (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 2 13:13:37 2013
    Sep 02 13:13:38 sge00 slim[166]: (==) Using config directory: "/etc/X11/xorg.conf.d"
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension Generic Event Extension
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension SHAPE
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension MIT-SHM
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XInputExtension
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XTEST
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension BIG-REQUESTS
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension SYNC
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XKEYBOARD
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XC-MISC
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension SECURITY
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XINERAMA
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFIXES
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension RENDER
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension RANDR
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension COMPOSITE
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DAMAGE
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension MIT-SCREEN-SAVER
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DOUBLE-BUFFER
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension RECORD
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DPMS
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension X-Resource
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XVideo
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XVideo-MotionCompensation
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFree86-VidModeExtension
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFree86-DGA
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension XFree86-DRI
    Sep 02 13:13:38 sge00 kernel: ACPI: Sleep Button [SLPF]
    Sep 02 13:13:38 sge00 slim[166]: Initializing built-in extension DRI2
    Sep 02 13:13:38 sge00 slim[166]: Loading extension GLX
    Sep 02 13:13:38 sge00 kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Sep 02 13:13:38 sge00 kernel: ppdev: user-space parallel port driver
    Sep 02 13:13:38 sge00 kernel: usbcore: registered new interface driver usbhid
    Sep 02 13:13:38 sge00 kernel: usbhid: USB HID core driver
    Sep 02 13:13:38 sge00 kernel: input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/input/input5
    Sep 02 13:13:38 sge00 kernel: hid-generic 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
    Sep 02 13:13:38 sge00 kernel: e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
    Sep 02 13:13:38 sge00 kernel: e1000: Copyright (c) 1999-2006 Intel Corporation.
    Sep 02 13:13:38 sge00 kernel: Adding 1048572k swap on /swapfile. Priority:-1 extents:5 across:1105916k FS
    Sep 02 13:13:38 sge00 kernel: input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input6
    Sep 02 13:13:38 sge00 systemd-logind[158]: Watching system buttons on /dev/input/event3 (Power Button)
    Sep 02 13:13:38 sge00 systemd-logind[158]: Watching system buttons on /dev/input/event4 (Sleep Button)
    Sep 02 13:13:38 sge00 kernel: e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 08:00:27:3d:4f:34
    Sep 02 13:13:38 sge00 kernel: e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
    Sep 02 13:13:38 sge00 systemd[1]: Found device PRO/1000 MT Desktop Adapter.
    Sep 02 13:13:38 sge00 systemd[1]: Starting dhcpcd on enp0s3...
    Sep 02 13:13:38 sge00 systemd-udevd[128]: renamed network interface eth0 to enp0s3
    Sep 02 13:13:38 sge00 sgeexecd[161]: starting sge_execd
    Sep 02 13:13:38 sge00 dhcpcd[239]: version 6.0.5 starting
    Sep 02 13:13:38 sge00 kernel: IPv6: ADDRCONF(NETDEV_UP): enp0s3: link is not ready
    Sep 02 13:13:38 sge00 kernel: e1000: enp0s3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
    Sep 02 13:13:38 sge00 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp0s3: link becomes ready
    Sep 02 13:13:38 sge00 sgemaster[162]: starting sge_qmaster
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: soliciting an IPv6 router
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: rebinding lease of 192.168.1.10
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: carrier lost
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: carrier acquired
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: soliciting an IPv6 router
    Sep 02 13:13:38 sge00 dhcpcd[239]: enp0s3: rebinding lease of 192.168.1.10
    Sep 02 13:13:39 sge00 slim[166]: pam_unix(slim:session): session opened for user sgeuser by (uid=0)
    Sep 02 13:13:39 sge00 systemd-logind[158]: New session 1 of user sgeuser.
    Sep 02 13:13:39 sge00 systemd-logind[158]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
    Sep 02 13:13:40 sge00 slim[166]: /usr/bin/xauth: file /home/sgeuser/.Xauthority does not exist
    Sep 02 13:13:40 sge00 slim[166]: /home/sgeuser/.xinitrc: line 18: FontPath: command not found
    Sep 02 13:13:40 sge00 slim[166]: openbox: error while loading shared libraries: librsvg-2.so.2: cannot open shared object file: No such file or directory
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: leased 192.168.1.10 for 86400 seconds
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: adding host route to 192.168.1.10 via 127.0.0.1
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: adding route to 192.168.1.0/24
    Sep 02 13:13:44 sge00 dhcpcd[239]: enp0s3: adding default route via 192.168.1.1
    Sep 02 13:13:44 sge00 dhcpcd[239]: forked to background, child pid 648
    Sep 02 13:13:44 sge00 systemd[1]: Started dhcpcd on enp0s3.
    Sep 02 13:13:44 sge00 systemd[1]: Starting Network.
    Sep 02 13:13:44 sge00 systemd[1]: Reached target Network.
    Sep 02 13:13:44 sge00 systemd[1]: Starting RPC Bind...
    Sep 02 13:13:44 sge00 systemd[1]: Starting Apache Web Server...
    Sep 02 13:13:44 sge00 systemd[1]: Started RPC Bind.
    Sep 02 13:13:44 sge00 systemd[1]: Starting NFS server...
    Sep 02 13:13:44 sge00 apachectl[650]: httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.1.10 for ServerName
    Sep 02 13:13:44 sge00 systemd[1]: Starting RPC Port Mapper.
    Sep 02 13:13:44 sge00 systemd[1]: Reached target RPC Port Mapper.
    Sep 02 13:13:44 sge00 systemd[1]: Starting RPC GSS-API client-side daemon...
    Sep 02 13:13:44 sge00 systemd[1]: Started RPC GSS-API client-side daemon.
    Sep 02 13:13:44 sge00 kernel: Installing knfsd (copyright (C) 1996 [email protected]).
    Sep 02 13:13:44 sge00 kernel: NFSD: starting 90-second grace period (net ffffffff81893040)
    Sep 02 13:13:44 sge00 systemd[1]: Started NFS server.
    Sep 02 13:13:44 sge00 systemd[1]: Starting NFS Mount Daemon...
    Sep 02 13:13:44 sge00 systemd[1]: Starting NFSv4 ID-name mapping daemon...
    Sep 02 13:13:44 sge00 systemd[1]: Started NFSv4 ID-name mapping daemon.
    Sep 02 13:13:44 sge00 rpc.mountd[682]: Version 1.2.8 starting
    Sep 02 13:13:44 sge00 systemd[1]: Started NFS Mount Daemon.
    Sep 02 13:13:45 sge00 systemd[1]: PID file /run/httpd/httpd.pid not readable (yet?) after start.
    Sep 02 13:13:45 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:45 sge00 systemd[1]: Starting SGE Execution Daemon...
    Sep 02 13:13:45 sge00 lmx-serv-clcbio[690]: LM-X License Server v3.6.1 (Linux_x64)
    Sep 02 13:13:45 sge00 lmx-serv-clcbio[690]: Copyright (C) 2002-2010 X-Formation. All rights reserved.
    Sep 02 13:13:45 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:45 sge00 systemd[1]: Started SGE Execution Daemon.
    Sep 02 13:13:46 sge00 systemd[1]: Started Apache Web Server.
    Sep 02 13:13:46 sge00 systemd[1]: Starting Multi-User System.
    Sep 02 13:13:46 sge00 systemd[1]: Reached target Multi-User System.
    Sep 02 13:13:46 sge00 systemd[1]: Starting Graphical Interface.
    Sep 02 13:13:46 sge00 systemd[1]: Reached target Graphical Interface.
    Sep 02 13:13:46 sge00 systemd[1]: Startup finished in 1.441s (kernel) + 8.969s (userspace) = 10.410s.
    Sep 02 13:13:48 sge00 slapd[168]: conn=1000 fd=10 ACCEPT from IP=192.168.1.10:47238 (IP=0.0.0.0:389)
    Sep 02 13:13:48 sge00 slapd[168]: conn=1000 op=0 BIND dn="" method=128
    Sep 02 13:13:48 sge00 slapd[168]: conn=1000 op=0 RESULT tag=97 err=0 text=
    Sep 02 13:13:51 sge00 dhcpcd[648]: enp0s3: no IPv6 Routers available
    Sep 02 13:14:10 sge00 kernel: VBoxGuest: VBoxGuestCommonGuestCapsAcquire: pSession(0xffff88007b747810), OR(0x0), NOT(0xffffffff), flags(0x0)
    Sep 02 13:14:50 sge00 su[755]: (to sgeuser) sgeuser on none
    Sep 02 13:14:50 sge00 su[755]: pam_unix(su-l:session): session opened for user root by sgeuser(uid=1000)
    Sep 02 13:19:33 sge00 kernel: hrtimer: interrupt took 1387321 ns
    Sep 02 13:28:35 sge00 systemd[1]: Starting Cleanup of Temporary Directories...
    Sep 02 13:28:35 sge00 systemd[1]: Started Cleanup of Temporary Directories.
    Sep 02 14:39:38 sge00 su[755]: pam_unix(su-l:session): session closed for user root
    Sep 02 14:44:39 sge00 su[807]: (to sgeuser) sgeuser on none
    Sep 02 14:44:39 sge00 su[807]: pam_unix(su-l:session): session opened for user root by sgeuser(uid=1000)
    Sep 02 14:46:34 sge00 rpc.mountd[682]: authenticated mount request from 192.168.1.162:1022 for /opt/gridengine/sge (/opt/gridengine/sge)
    Last edited by teetee1 (2013-09-02 19:34:30)

    Thanks. The problem is solved.
    Both openbox and lxsession were installed. The only thing missing was the missing libsvg library. Here is the relevant entries in /var/log/pacman.log (when I installed the libsvg package just now)
    # egrep -ri svg /var/log/pacman.log
    [2013-09-02 14:52] [PACMAN] Running 'pacman --color auto -S extra/librsvg'
    [2013-09-02 14:52] [PACMAN] installed librsvg (1:2.37.0-1)
    so somehow it wasn't needed on a working lxde since 08/28 when the system was installed, and right after 3.10.10 kernel upgrade(Sat., 8/31), it is required to have the windows manager working properly. 3.10.10 linux kernel change log from https://www.kernel.org/pub/linux/kernel … og-3.10.10 did not return anything relevant.
    Anyway thanks for the input and I'm glad that the problem was solved quickly.
    Last edited by teetee1 (2013-09-02 19:36:39)

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

  • How do I/Do I need to fix "ata#.00 status { DRDY }" error?

    I've got an old server that used to be running windows that I have received to set up with linux for myself.  As I was working with it, I remembered that I had an old computer that I was just going to trash/give away anyways, of which many components would be better.  I have since set up a computer that's a mash of components between the two and everything seems to run perfectly except for one problem: I keep getting this error: (Where "#" is either 2, 3, or 4)
    ata#.00: exception Emask 0x50 SAct 0x0 SErr 0x48900 action 0x6 frozen
    ata#: SError: {UnrecovData HostInt 10B8B Handshk }
    ata#.00: failed command WRITE DMA
    ata#.00: cmd ca/00:88:9f:ca:8d/00:00:00:00:00/e8 tag 0 dma 69632 out
    res 50/00:88:9f:ca:8d/00:00:9e:c9:8d/e8 Emask 0x50 (AtA bus error)
    ata#.00: status: { DRDY }
    This error occurred once for each of the three numbers (which also happens to correspond to the three sata ports my HDs are plugged into): 2 and 3 while I was using dd to zero them (I zeroed all three but 4 didn't give any errors), and 4 just after installing grub onto a mirror raid composing of HDs 2 and 3. 
    All of the HDs originally used IDE so I used a converted to switch them (Model number CB-IS100)
    Additionally, when deconstructing the computers, one of the sata cables tore the first female connector out of the motherboard (hence why they start at 2), but while I know that's not preferable, I don't think it would cause this error.
    Finally, this motherboard was in a computer that had, as far as I could tell, a poor power supply that cause it to reboot when using a lot of CPU power.
    My question is really this: Will this cause any major problems or can I ignore it?  Also, is there anything I can do to fix it?
    This is my dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-i686-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Oct 19 00:29:46 CEST 2013
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000987ff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000098800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfedf7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cfedf800-0x00000000cfedffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfee2fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cfee3000-0x00000000cfeeffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000cfef0000-0x00000000cfefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: HP Pavilion 061 ER879AA-ABA M7457C/EMERY, BIOS 3.15 06/23/2006
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0xcfedf 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-EFFFF uncachable
    [ 0.000000] F0000-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 0C0000000 mask FF0000000 write-back
    [ 0.000000] 3 base 0CFF00000 mask FFFF00000 uncachable
    [ 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 0x000f5f80-0x000f5f8f] mapped at [c00f5f80]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x00bfffff]
    [ 0.000000] Base memory trampoline at [c0094000] 94000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x37000000-0x373fffff]
    [ 0.000000] [mem 0x37000000-0x373fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x30000000-0x36ffffff]
    [ 0.000000] [mem 0x30000000-0x36ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x37400000-0x377fdfff]
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] BRK [0x00877000, 0x00877fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x7ef2f000-0x7fffffff]
    [ 0.000000] Allocated new RAMDISK: [mem 0x3672d000-0x377fddaf]
    [ 0.000000] Move RAMDISK from [mem 0x7ef2f000-0x7ffffdaf] to [mem 0x3672d000-0x377fddaf]
    [ 0.000000] ACPI: RSDP 000f82e0 00014 (v00 HP-CPC)
    [ 0.000000] ACPI: RSDT cfee3040 00030 (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP cfee30c0 00074 (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT cfee3180 0505D (v01 HP-CPC AWRDACPI 00001000 MSFT 0100000E)
    [ 0.000000] ACPI: FACS cfee0000 00040
    [ 0.000000] ACPI: MCFG cfee8340 0003C (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: APIC cfee8240 00084 (v01 HP-CPC AWRDACPI 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 2438MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x00878000, 0x00878fff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
    [ 0.000000] HighMem [mem 0x377fe000-0xcfedefff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00097fff]
    [ 0.000000] node 0: [mem 0x00100000-0xcfedefff]
    [ 0.000000] On node 0 totalpages: 851574
    [ 0.000000] free_area_init_node: node 0, pgdat c06d7740, node_mem_map f4d2d020
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3991 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 4878 pages used for memmap
    [ 0.000000] HighMem zone: 624353 pages, LIFO batch:31
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 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: [mem 0x00098000-0x00098fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00099000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
    [ 0.000000] e820: [mem 0xcff00000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 14 pages/cpu @f4ce3000 s33536 r0 d23808 u57344
    [ 0.000000] pcpu-alloc: s33536 r0 d23808 u57344 alloc=14*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 849798
    [ 0.000000] Kernel command line: BOOT_IMAGE=boot/i686/vmlinuz archisobasedir=arch archisolabel=ARCH_201311 initrd=boot/i686/archiso.img
    [ 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 6813424 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:000cfedf)
    [ 0.000000] Memory: 3346976K/3406296K available (4262K kernel code, 426K rwdata, 1356K rodata, 608K init, 948K bss, 59320K reserved, 2497412K highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc06e9000 - 0xc0781000 ( 608 kB)
    .data : 0xc0529d5e - 0xc06e8a00 (1787 kB)
    .text : 0xc0100000 - 0xc0529d5e (4263 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=128, 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=8 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:2304 nr_irqs:712 16
    [ 0.000000] CPU 0 irqstacks, hard=f4008000 soft=f400a000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 3000.893 MHz processor
    [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6004.86 BogoMIPS (lpj=10002976)
    [ 0.003342] pid_max: default: 32768 minimum: 301
    [ 0.003402] Security Framework initialized
    [ 0.003416] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003418] Yama: becoming mindful.
    [ 0.003442] Mount-cache hash table entries: 512
    [ 0.003753] Initializing cgroup subsys memory
    [ 0.003767] Initializing cgroup subsys devices
    [ 0.003771] Initializing cgroup subsys freezer
    [ 0.003774] Initializing cgroup subsys net_cls
    [ 0.006675] Initializing cgroup subsys blkio
    [ 0.006723] CPU: Physical Processor ID: 0
    [ 0.006727] CPU: Processor Core ID: 0
    [ 0.006731] mce: CPU supports 4 MCE banks
    [ 0.006745] CPU0: Thermal monitoring enabled (TM1)
    [ 0.006763] Last level iTLB entries: 4KB 128, 2MB 128, 4MB 128
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 64
    tlb_flushall_shift: 6
    [ 0.006919] Freeing SMP alternatives memory: 20K (c0781000 - c0786000)
    [ 0.008197] ACPI: Core revision 20130517
    [ 0.012076] ACPI: All ACPI Tables successfully acquired
    [ 0.013370] ftrace: allocating 19099 entries in 38 pages
    [ 0.023450] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.023843] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.057502] smpboot: CPU0: Intel(R) Pentium(R) D CPU 3.00GHz (fam: 0f, model: 06, stepping: 02)
    [ 0.059999] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
    [ 0.059999] ... version: 0
    [ 0.059999] ... bit width: 40
    [ 0.059999] ... generic registers: 18
    [ 0.059999] ... value mask: 000000ffffffffff
    [ 0.059999] ... max period: 0000007fffffffff
    [ 0.059999] ... fixed-purpose events: 0
    [ 0.059999] ... event mask: 000000000003ffff
    [ 0.076727] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.083427] CPU 1 irqstacks, hard=f40ce000 soft=f40d8000
    [ 0.006666] Initializing CPU#1
    [ 0.083431] smpboot: Booting Node 0, Processors #1
    [ 0.096604] Brought up 2 CPUs
    [ 0.096610] smpboot: Total of 2 processors activated (12008.72 BogoMIPS)
    [ 0.096819] devtmpfs: initialized
    [ 0.096976] PM: Registering ACPI NVS region [mem 0xcfee0000-0xcfee2fff] (12288 bytes)
    [ 0.100507] RTC time: 20:09:02, date: 05/19/14
    [ 0.100577] NET: Registered protocol family 16
    [ 0.100840] ACPI: bus type PCI registered
    [ 0.100846] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.100944] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xf0000000-0xffffffff] (base 0xf0000000)
    [ 0.100950] PCI: MMCONFIG at [mem 0xf0000000-0xffffffff] reserved in E820
    [ 0.100954] PCI: MMCONFIG for 0000 [bus00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000) (size reduced!)
    [ 0.100956] PCI: Using MMCONFIG for extended config space
    [ 0.100959] PCI: Using configuration type 1 for base access
    [ 0.102090] bio: create slab <bio-0> at 0
    [ 0.102090] ACPI: Added _OSI(Module Device)
    [ 0.102090] ACPI: Added _OSI(Processor Device)
    [ 0.102090] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.102090] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.103853] ACPI: EC: Look up EC in DSDT
    [ 0.110158] ACPI: Interpreter enabled
    [ 0.110189] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.110213] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.110217] ACPI: Using IOAPIC for interrupt routing
    [ 0.110269] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.110379] ACPI: No dock devices found.
    [ 0.118318] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.118328] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.118332] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.118461] acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    [ 0.118466] acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
    [ 0.118470] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    [ 0.118474] acpi PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    [ 0.118478] acpi PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff] (ignored)
    [ 0.118481] PCI: root bus 00: using default resources
    [ 0.118486] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.118696] PCI host bridge to bus 0000:00
    [ 0.118703] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.118707] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.118710] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    [ 0.118725] pci 0000:00:00.0: [8086:2770] type 00 class 0x060000
    [ 0.118895] pci 0000:00:01.0: [8086:2771] type 01 class 0x060400
    [ 0.118957] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.119125] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
    [ 0.119148] pci 0000:00:1b.0: reg 0x10: [mem 0xfdff8000-0xfdffbfff 64bit]
    [ 0.119231] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.119317] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.119384] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
    [ 0.119433] pci 0000:00:1d.0: reg 0x20: [io 0xff00-0xff1f]
    [ 0.119532] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.119597] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
    [ 0.119646] pci 0000:00:1d.1: reg 0x20: [io 0xfe00-0xfe1f]
    [ 0.119745] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.119808] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
    [ 0.119857] pci 0000:00:1d.2: reg 0x20: [io 0xfd00-0xfd1f]
    [ 0.119955] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.120030] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
    [ 0.120079] pci 0000:00:1d.3: reg 0x20: [io 0xfc00-0xfc1f]
    [ 0.120178] pci 0000:00:1d.3: System wakeup disabled by ACPI
    [ 0.120251] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
    [ 0.120273] pci 0000:00:1d.7: reg 0x10: [mem 0xfdfff000-0xfdfff3ff]
    [ 0.120360] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.120440] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.120507] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
    [ 0.120640] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.120712] pci 0000:00:1f.0: [8086:27b0] type 00 class 0x060100
    [ 0.120948] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
    [ 0.120966] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
    [ 0.120978] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
    [ 0.120990] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
    [ 0.121002] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
    [ 0.121014] pci 0000:00:1f.1: reg 0x20: [io 0xfb00-0xfb0f]
    [ 0.121164] pci 0000:00:1f.2: [8086:27c3] type 00 class 0x010400
    [ 0.121185] pci 0000:00:1f.2: reg 0x10: [io 0xfa00-0xfa07]
    [ 0.121196] pci 0000:00:1f.2: reg 0x14: [io 0xf900-0xf903]
    [ 0.121206] pci 0000:00:1f.2: reg 0x18: [io 0xf800-0xf807]
    [ 0.121217] pci 0000:00:1f.2: reg 0x1c: [io 0xf700-0xf703]
    [ 0.121228] pci 0000:00:1f.2: reg 0x20: [io 0xf600-0xf60f]
    [ 0.121238] pci 0000:00:1f.2: reg 0x24: [mem 0xfdffe000-0xfdffe3ff]
    [ 0.121284] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.121418] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
    [ 0.121478] pci 0000:00:1f.3: reg 0x20: [io 0x0500-0x051f]
    [ 0.121706] pci 0000:01:00.0: [10de:0a65] type 00 class 0x030000
    [ 0.121722] pci 0000:01:00.0: reg 0x10: [mem 0xfb000000-0xfbffffff]
    [ 0.121737] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.121752] pci 0000:01:00.0: reg 0x1c: [mem 0xee000000-0xefffffff 64bit pref]
    [ 0.121762] pci 0000:01:00.0: reg 0x24: [io 0xdf00-0xdf7f]
    [ 0.121773] pci 0000:01:00.0: reg 0x30: [mem 0xfcf00000-0xfcf7ffff pref]
    [ 0.121887] pci 0000:01:00.1: [10de:0be3] type 00 class 0x040300
    [ 0.121903] pci 0000:01:00.1: reg 0x10: [mem 0xfcffc000-0xfcffffff]
    [ 0.126691] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.126697] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.126703] pci 0000:00:01.0: bridge window [mem 0xfb000000-0xfcffffff]
    [ 0.126709] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xefffffff 64bit pref]
    [ 0.126783] pci 0000:02:01.0: [1106:3044] type 00 class 0x0c0010
    [ 0.126806] pci 0000:02:01.0: reg 0x10: [mem 0xfdeff000-0xfdeff7ff]
    [ 0.126819] pci 0000:02:01.0: reg 0x14: [io 0xef00-0xef7f]
    [ 0.126902] pci 0000:02:01.0: supports D2
    [ 0.126905] pci 0000:02:01.0: PME# supported from D2 D3hot D3cold
    [ 0.126989] pci 0000:02:05.0: [10ec:8169] type 00 class 0x020000
    [ 0.127012] pci 0000:02:05.0: reg 0x10: [io 0xec00-0xecff]
    [ 0.127025] pci 0000:02:05.0: reg 0x14: [mem 0xfdefe000-0xfdefe0ff]
    [ 0.127075] pci 0000:02:05.0: reg 0x30: [mem 0xfdec0000-0xfdedffff pref]
    [ 0.127109] pci 0000:02:05.0: supports D1 D2
    [ 0.127113] pci 0000:02:05.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.127196] pci 0000:02:08.0: [8086:27dc] type 00 class 0x020000
    [ 0.127218] pci 0000:02:08.0: reg 0x10: [mem 0xfdefd000-0xfdefdfff]
    [ 0.127230] pci 0000:02:08.0: reg 0x14: [io 0xee00-0xee3f]
    [ 0.127308] pci 0000:02:08.0: supports D1 D2
    [ 0.127311] pci 0000:02:08.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.127410] pci 0000:00:1e.0: PCI bridge to [bus 02] (subtractive decode)
    [ 0.127417] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    [ 0.127423] pci 0000:00:1e.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.127431] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.127435] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
    [ 0.127448] pci_bus 0000:00: on NUMA node 0
    [ 0.128183] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 7 9 10 11 12 14 15)
    [ 0.128303] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 *12 14 15)
    [ 0.128422] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.128542] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12 14 15)
    [ 0.128661] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 *10 11 12 14 15)
    [ 0.128780] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.128900] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.129019] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
    [ 0.129353] ACPI: Enabled 2 GPEs in block 00 to 1F
    [ 0.129366] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.129414] Found 1 acpi root devices
    [ 0.129499] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.129499] vgaarb: loaded
    [ 0.129499] vgaarb: bridge control possible 0000:01:00.0
    [ 0.129499] PCI: Using ACPI for IRQ routing
    [ 0.131455] PCI: pci_cache_line_size set to 64 bytes
    [ 0.131514] e820: reserve RAM buffer [mem 0x00098800-0x0009ffff]
    [ 0.131517] e820: reserve RAM buffer [mem 0xcfedf800-0xcfffffff]
    [ 0.131681] NetLabel: Initializing
    [ 0.131684] NetLabel: domain hash size = 128
    [ 0.131686] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.131709] NetLabel: unlabeled traffic allowed by default
    [ 0.131784] Switched to clocksource refined-jiffies
    [ 0.141221] pnp: PnP ACPI init
    [ 0.141249] ACPI: bus type PNP registered
    [ 0.141516] system 00:00: [io 0x04d0-0x04d1] has been reserved
    [ 0.141521] system 00:00: [io 0x0800-0x087f] has been reserved
    [ 0.141526] system 00:00: [io 0x0880-0x088f] has been reserved
    [ 0.141533] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.141554] pnp 00:01: [dma 4]
    [ 0.141597] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.141664] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.141714] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.141773] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.142316] pnp 00:05: [dma 3]
    [ 0.142386] pnp 00:05: Plug and Play ACPI device, IDs PNP0401 (active)
    [ 0.142549] system 00:06: [io 0x0400-0x04bf] has been reserved
    [ 0.142556] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.142624] pnp 00:07: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.143002] system 00:08: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.143009] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.143327] system 00:09: [mem 0x000d4800-0x000d7fff] has been reserved
    [ 0.143339] system 00:09: [mem 0x000f0000-0x000f7fff] could not be reserved
    [ 0.143344] system 00:09: [mem 0x000f8000-0x000fbfff] could not be reserved
    [ 0.143349] system 00:09: [mem 0x000fc000-0x000fffff] could not be reserved
    [ 0.143353] system 00:09: [mem 0xcfee0000-0xcfefffff] could not be reserved
    [ 0.143357] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.143361] system 00:09: [mem 0x00100000-0xcfedffff] could not be reserved
    [ 0.143365] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.143370] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.143374] system 00:09: [mem 0xffb00000-0xffb7ffff] has been reserved
    [ 0.143378] system 00:09: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.143382] system 00:09: [mem 0x000e0000-0x000effff] has been reserved
    [ 0.143387] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.143401] pnp: PnP ACPI: found 10 devices
    [ 0.143404] ACPI: bus type PNP unregistered
    [ 0.181586] Switched to clocksource acpi_pm
    [ 0.181620] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.181626] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.181632] pci 0000:00:01.0: bridge window [mem 0xfb000000-0xfcffffff]
    [ 0.181637] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xefffffff 64bit pref]
    [ 0.181644] pci 0000:00:1e.0: PCI bridge to [bus 02]
    [ 0.181649] pci 0000:00:1e.0: bridge window [io 0xe000-0xefff]
    [ 0.181655] pci 0000:00:1e.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.181797] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.181804] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.181808] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.181812] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.181815] pci_bus 0000:01: resource 1 [mem 0xfb000000-0xfcffffff]
    [ 0.181819] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xefffffff 64bit pref]
    [ 0.181823] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.181826] pci_bus 0000:02: resource 1 [mem 0xfde00000-0xfdefffff]
    [ 0.181830] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
    [ 0.181833] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.181886] NET: Registered protocol family 2
    [ 0.182168] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.182210] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.182250] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.182288] TCP: reno registered
    [ 0.182293] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.182304] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.182388] NET: Registered protocol family 1
    [ 0.182388] pci 0000:01:00.0: Boot video device
    [ 0.182388] pci 0000:02:08.0: Firmware left e100 interrupts enabled; disabling
    [ 0.182388] PCI: CLS 32 bytes, default 64
    [ 0.182388] Unpacking initramfs...
    [ 3.767636] Freeing initrd memory: 17220K (f672d000 - f77fe000)
    [ 3.767832] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
    [ 3.767836] apm: disabled - APM is not SMP safe.
    [ 3.767883] Scanning for low memory corruption every 60 seconds
    [ 3.768350] audit: initializing netlink socket (disabled)
    [ 3.768369] type=2000 audit(1400530145.763:1): initialized
    [ 3.783776] bounce pool size: 64 pages
    [ 3.783794] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 3.786252] zbud: loaded
    [ 3.786379] VFS: Disk quotas dquot_6.5.2
    [ 3.786456] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 3.786770] msgmni has been set to 1692
    [ 3.787189] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 3.787246] io scheduler noop registered
    [ 3.787250] io scheduler deadline registered
    [ 3.787303] io scheduler cfq registered (default)
    [ 3.787440] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 3.787553] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 3.787585] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 3.787808] GHES: HEST is not enabled!
    [ 3.787828] isapnp: Scanning for PnP cards...
    [ 4.143916] isapnp: No Plug & Play device found
    [ 4.144002] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 4.144834] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 4.393708] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 4.393902] mousedev: PS/2 mouse device common for all mice
    [ 4.394026] rtc_cmos 00:02: RTC can wake from S4
    [ 4.394188] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 4.394220] rtc_cmos 00:02: alarms up to one month, 242 bytes nvram
    [ 4.394271] cpuidle: using governor ladder
    [ 4.394275] cpuidle: using governor menu
    [ 4.394354] drop_monitor: Initializing network drop monitor service
    [ 4.394463] TCP: cubic registered
    [ 4.394689] NET: Registered protocol family 10
    [ 4.394926] NET: Registered protocol family 17
    [ 4.394941] Key type dns_resolver registered
    [ 4.395148] Using IPI No-Shortcut mode
    [ 4.395277] PM: Hibernation image not present or could not be loaded.
    [ 4.395295] registered taskstats version 1
    [ 4.395849] Magic number: 14:160:195
    [ 4.395919] rtc_cmos 00:02: setting system clock to 2014-05-19 20:09:06 UTC (1400530146)
    [ 4.396373] Freeing unused kernel memory: 608K (c06e9000 - c0781000)
    [ 4.396483] Write protecting the kernel text: 4264k
    [ 4.396526] Write protecting the kernel read-only data: 1360k
    [ 4.409586] systemd-udevd[47]: starting version 208
    [ 4.441220] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
    [ 4.441231] ACPI: Power Button [PWRB]
    [ 4.441342] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 4.441349] ACPI: Power Button [PWRF]
    [ 4.453112] Linux agpgart interface v0.103
    [ 4.456375] [drm] Initialized drm 1.1.0 20060810
    [ 4.458668] wmi: Mapper loaded
    [ 4.464289] ACPI: bus type USB registered
    [ 4.464341] usbcore: registered new interface driver usbfs
    [ 4.464366] usbcore: registered new interface driver hub
    [ 4.465442] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.465645] r8169 0000:02:05.0 (unregistered net_device): not PCI Express
    [ 4.466029] r8169 0000:02:05.0 eth0: RTL8110s at 0xf850e000, 00:1e:2a:c2:08:13, XID 04000000 IRQ 17
    [ 4.466034] r8169 0000:02:05.0 eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
    [ 4.466473] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    [ 4.466476] e100: Copyright(c) 1999-2006 Intel Corporation
    [ 4.468849] SCSI subsystem initialized
    [ 4.470129] usbcore: registered new device driver usb
    [ 4.472537] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.472967] uhci_hcd: USB Universal Host Controller Interface driver
    [ 4.473145] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 4.473151] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 4.473162] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
    [ 4.473215] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000ff00
    [ 4.474467] hub 1-0:1.0: USB hub found
    [ 4.474476] hub 1-0:1.0: 2 ports detected
    [ 4.476265] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 4.476273] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 4.476283] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
    [ 4.476285] ehci-pci: EHCI PCI platform driver
    [ 4.476334] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fe00
    [ 4.477340] ACPI: bus type ATA registered
    [ 4.478267] hub 2-0:1.0: USB hub found
    [ 4.478276] hub 2-0:1.0: 2 ports detected
    [ 4.478975] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 4.479324] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 4.479335] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
    [ 4.483257] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
    [ 4.483270] ehci-pci 0000:00:1d.7: irq 23, io mem 0xfdfff000
    [ 4.483319] libata version 3.00 loaded.
    [ 4.490116] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 4.490318] hub 3-0:1.0: USB hub found
    [ 4.490328] hub 3-0:1.0: 8 ports detected
    [ 4.497666] e100 0000:02:08.0 eth1: addr 0xfdefd000, irq 20, MAC addr 00:17:31:0e:7b:1b
    [ 4.498311] nouveau [ DEVICE][0000:01:00.0] BOOT0 : 0x0a8280a2
    [ 4.498316] nouveau [ DEVICE][0000:01:00.0] Chipset: GT218 (NVA8)
    [ 4.498320] nouveau [ DEVICE][0000:01:00.0] Family : NV50
    [ 4.499944] nouveau [ VBIOS][0000:01:00.0] checking PRAMIN for image...
    [ 4.513467] hub 1-0:1.0: USB hub found
    [ 4.513476] hub 1-0:1.0: 2 ports detected
    [ 4.536751] hub 2-0:1.0: USB hub found
    [ 4.536759] hub 2-0:1.0: 2 ports detected
    [ 4.537041] ata_piix 0000:00:1f.1: version 2.13
    [ 4.537215] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 4.538319] scsi0 : ata_piix
    [ 4.539121] scsi1 : ata_piix
    [ 4.539242] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfb00 irq 14
    [ 4.539246] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfb08 irq 15
    [ 4.539349] ahci 0000:00:1f.2: version 3.0
    [ 4.539518] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [ 4.539607] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl RAID mode
    [ 4.539612] ahci 0000:00:1f.2: flags: 64bit ncq led clo
    [ 4.539618] ahci 0000:00:1f.2: setting latency timer to 64
    [ 4.540696] scsi2 : ahci
    [ 4.540853] scsi3 : ahci
    [ 4.540977] scsi4 : ahci
    [ 4.541096] scsi5 : ahci
    [ 4.541226] ata3: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe100 irq 41
    [ 4.541231] ata4: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe180 irq 41
    [ 4.541235] ata5: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe200 irq 41
    [ 4.541239] ata6: SATA max UDMA/133 abar m1024@0xfdffe000 port 0xfdffe280 irq 41
    [ 4.541389] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 4.541395] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 4.541406] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 4.541450] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fd00
    [ 4.541676] hub 4-0:1.0: USB hub found
    [ 4.541683] hub 4-0:1.0: 2 ports detected
    [ 4.541931] uhci_hcd 0000:00:1d.3: setting latency timer to 64
    [ 4.541937] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 4.541946] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 4.541985] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000fc00
    [ 4.542120] ata2: port disabled--ignoring
    [ 4.542317] hub 5-0:1.0: USB hub found
    [ 4.542325] hub 5-0:1.0: 2 ports detected
    [ 4.563395] firewire_ohci 0000:02:01.0: added OHCI v1.0 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 4.574546] nouveau [ VBIOS][0000:01:00.0] ... appears to be valid
    [ 4.574552] nouveau [ VBIOS][0000:01:00.0] using image from PRAMIN
    [ 4.574662] nouveau [ VBIOS][0000:01:00.0] BIT signature found
    [ 4.574667] nouveau [ VBIOS][0000:01:00.0] version 70.18.36.00.00
    [ 4.575237] nouveau [ PFB][0000:01:00.0] RAM type: DDR2
    [ 4.575243] nouveau [ PFB][0000:01:00.0] RAM size: 512 MiB
    [ 4.575247] nouveau [ PFB][0000:01:00.0] ZCOMP: 960 tags
    [ 4.713759] ata1.00: ATAPI: TSSTcorpCD/DVDW TS-H652L, 0803, max UDMA/33
    [ 4.743671] ata1.00: configured for UDMA/33
    [ 4.744629] scsi 0:0:0:0: CD-ROM TSSTcorp CD/DVDW TS-H652L 0803 PQ: 0 ANSI: 5
    [ 4.770051] tsc: Refined TSC clocksource calibration: 3000.853 MHz
    [ 4.860047] ata3: SATA link down (SStatus 0 SControl 300)
    [ 5.020046] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.020077] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.021034] ata5.00: ATA-6: WDC WD800BB-00JHC0, 05.01C05, max UDMA/100
    [ 5.021039] ata5.00: 156301488 sectors, multi 0: LBA
    [ 5.021915] ata5.00: configured for UDMA/100
    [ 5.023691] ata4.00: ATA-6: WDC WD800BB-00JHC0, 05.01C05, max UDMA/100
    [ 5.023695] ata4.00: 156301488 sectors, multi 0: LBA
    [ 5.024602] ata4.00: configured for UDMA/100
    [ 5.024731] scsi 3:0:0:0: Direct-Access ATA WDC WD800BB-00JH 05.0 PQ: 0 ANSI: 5
    [ 5.025019] scsi 4:0:0:0: Direct-Access ATA WDC WD800BB-00JH 05.0 PQ: 0 ANSI: 5
    [ 5.063459] firewire_core 0000:02:01.0: created device fw0: GUID 0011d800009e9dd1, S400
    [ 5.090025] usb 1-1: new low-speed USB device number 2 using uhci_hcd
    [ 5.180043] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.184039] ata6.00: ATA-6: ST380011A, 3.04, max UDMA/100
    [ 5.184044] ata6.00: 156301488 sectors, multi 0: LBA48
    [ 5.188337] ata6.00: configured for UDMA/100
    [ 5.188461] scsi 5:0:0:0: Direct-Access ATA ST380011A 3.04 PQ: 0 ANSI: 5
    [ 5.199621] sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 5.199627] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 5.199923] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 5.200185] sd 3:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 5.200346] sd 3:0:0:0: [sda] Write Protect is off
    [ 5.200351] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 5.200393] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.200900] sd 4:0:0:0: [sdb] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 5.200997] sd 4:0:0:0: [sdb] Write Protect is off
    [ 5.201002] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 5.201043] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.201527] sd 5:0:0:0: [sdc] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    [ 5.201623] sd 5:0:0:0: [sdc] Write Protect is off
    [ 5.201627] sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 5.201669] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.207456] sdc: sdc1
    [ 5.207886] sd 5:0:0:0: [sdc] Attached SCSI disk
    [ 5.235174] sda: sda1 sda2 < sda5 >
    [ 5.235744] sd 3:0:0:0: [sda] Attached SCSI disk
    [ 5.237596] sdb: sdb1 sdb2 < sdb5 >
    [ 5.238117] sd 4:0:0:0: [sdb] Attached SCSI disk
    [ 5.260907] hidraw: raw HID events driver (C) Jiri Kosina
    [ 5.277654] usbcore: registered new interface driver usbhid
    [ 5.277659] usbhid: USB HID core driver
    [ 5.280199] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.0/input/input2
    [ 5.280357] hid-generic 0003:413C:2003.0001: input,hidraw0: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1d.0-1/input0
    [ 5.770105] Switched to clocksource tsc
    [ 6.481687] nouveau [ PTHERM][0000:01:00.0] FAN control: none / external
    [ 6.481702] nouveau [ PTHERM][0000:01:00.0] fan management: disabled
    [ 6.481708] nouveau [ PTHERM][0000:01:00.0] internal sensor: yes
    [ 6.481900] [TTM] Zone kernel: Available graphics memory: 433706 kiB
    [ 6.481904] [TTM] Zone highmem: Available graphics memory: 1682412 kiB
    [ 6.481907] [TTM] Initializing pool allocator
    [ 6.481924] nouveau [ DRM] VRAM: 512 MiB
    [ 6.481927] nouveau [ DRM] GART: 1048576 MiB
    [ 6.481933] nouveau [ DRM] TMDS table version 2.0
    [ 6.481936] nouveau [ DRM] DCB version 4.0
    [ 6.481940] nouveau [ DRM] DCB outp 00: 01000302 00020030
    [ 6.481944] nouveau [ DRM] DCB outp 01: 02000300 00000000
    [ 6.481948] nouveau [ DRM] DCB outp 03: 02011362 00020010
    [ 6.481951] nouveau [ DRM] DCB outp 04: 01022310 00000000
    [ 6.481954] nouveau [ DRM] DCB conn 00: 00001030
    [ 6.481959] nouveau [ DRM] DCB conn 01: 00202161
    [ 6.481964] nouveau [ DRM] DCB conn 02: 00000200
    [ 6.505501] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 6.505505] [drm] No driver support for vblank timestamp query.
    [ 6.505631] nouveau [ DRM] 2 available performance level(s)
    [ 6.505637] nouveau [ DRM] 1: core 405MHz shader 810MHz memory 405MHz voltage 900mV
    [ 6.505642] nouveau [ DRM] 3: core 589MHz shader 1402MHz memory 405MHz voltage 1000mV
    [ 6.505646] nouveau [ DRM] c: core 405MHz shader 810MHz memory 405MHz voltage 900mV
    [ 6.531333] nouveau [ DRM] MM: using COPY for buffer copies
    [ 6.581567] nouveau [ DRM] allocated 1280x1024 fb: 0x70000, bo f7015a00
    [ 6.581724] fbcon: nouveaufb (fb0) is primary device
    [ 6.653923] Console: switching to colour frame buffer device 160x64
    [ 6.655952] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
    [ 6.655955] nouveau 0000:01:00.0: registered panic notifier
    [ 6.655962] [drm] Initialized nouveau 1.1.1 20120801 for 0000:01:00.0 on minor 0
    [ 7.082698] ISO 9660 Extensions: RRIP_1991A
    [ 7.168774] loop: module loaded
    [ 8.253583] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [ 8.355925] device-mapper: uevent: version 1.0.3
    [ 8.356608] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: [email protected]
    [ 8.362693] bio: create slab <bio-1> at 1
    [ 8.386733] EXT4-fs (dm-0): mounted filesystem without journal. Opts: (null)
    [ 10.338096] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 10.417677] systemd[1]: Set hostname to <archiso>.
    [ 10.724871] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 10.724981] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 10.725005] systemd[1]: Starting Remote File Systems.
    [ 10.725151] systemd[1]: Reached target Remote File Systems.
    [ 10.725172] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 10.725323] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 10.725343] systemd[1]: Starting Delayed Shutdown Socket.
    [ 10.725469] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 10.725488] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 10.725627] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 10.725646] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 10.725770] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 10.725790] systemd[1]: Starting Root Slice.
    [ 10.726156] systemd[1]: Created slice Root Slice.
    [ 10.726176] systemd[1]: Starting User and Session Slice.
    [ 10.726413] systemd[1]: Created slice User and Session Slice.
    [ 10.726434] systemd[1]: Starting System Slice.
    [ 10.726647] systemd[1]: Created slice System Slice.
    [ 10.726682] systemd[1]: Starting system-getty.slice.
    [ 10.726921] systemd[1]: Created slice system-getty.slice.
    [ 10.726941] systemd[1]: Starting Slices.
    [ 10.727040] systemd[1]: Reached target Slices.
    [ 10.727064] systemd[1]: Starting Journal Socket.
    [ 10.727235] systemd[1]: Listening on Journal Socket.
    [ 10.727662] systemd[1]: Starting Load Kernel Modules...
    [ 10.728292] systemd[1]: Mounting POSIX Message Queue File System...
    [ 10.880863] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 10.881454] systemd[1]: Starting Journal Service...
    [ 10.882180] systemd[1]: Started Journal Service.
    [ 11.716066] systemd-journald[149]: Vacuuming done, freed 0 bytes
    [ 11.916159] FS-Cache: Loaded
    [ 12.202893] RPC: Registered named UNIX socket transport module.
    [ 12.202899] RPC: Registered udp transport module.
    [ 12.202902] RPC: Registered tcp transport module.
    [ 12.202904] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 12.619444] FS-Cache: Netfs 'nfs' registered for caching
    [ 12.812715] systemd-udevd[181]: starting version 208
    [ 12.905896] systemd-journald[149]: Received request to flush runtime journal from PID 1
    [ 15.580133] thermal LNXTHERM:00: registered as thermal_zone0
    [ 15.580139] ACPI: Thermal Zone [THRM] (40 C)
    [ 15.915160] ACPI: Fan [FAN] (on)
    [ 16.002108] ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \PM2S 1 (20130517/utaddress-251)
    [ 16.002119] ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \PM1K 2 (20130517/utaddress-251)
    [ 16.002126] ACPI Warning: 0x00000428-0x0000042f SystemIO conflicts with Region \GPE1 3 (20130517/utaddress-251)
    [ 16.002133] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.002139] ACPI Warning: 0x000004b0-0x000004bf SystemIO conflicts with Region \GPO2 1 (20130517/utaddress-251)
    [ 16.002145] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.002148] ACPI Warning: 0x00000480-0x000004af SystemIO conflicts with Region \GPIV 1 (20130517/utaddress-251)
    [ 16.002153] ACPI Warning: 0x00000480-0x000004af SystemIO conflicts with Region \GPO_ 2 (20130517/utaddress-251)
    [ 16.002158] ACPI Warning: 0x00000480-0x000004af SystemIO conflicts with Region \PALD 3 (20130517/utaddress-251)
    [ 16.002164] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 16.002166] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 16.342474] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 16.403348] leds_ss4200: no LED devices found
    [ 16.664449] parport_pc 00:05: reported by Plug and Play ACPI
    [ 16.664509] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
    [ 16.686843] systemd-udevd[203]: renamed network interface eth0 to enp2s5
    [ 16.770163] systemd-udevd[209]: renamed network interface eth1 to enp2s8
    [ 17.098798] input: PC Speaker as /devices/platform/pcspkr/input/input3
    [ 17.779883] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 17.780620] ppdev: user-space parallel port driver
    [ 17.849790] microcode: CPU0 sig=0xf62, pf=0x4, revision=0xf
    [ 17.944384] iTCO_vendor_support: vendor-support=0
    [ 17.946278] microcode: CPU1 sig=0xf62, pf=0x4, revision=0xf
    [ 17.947486] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 17.950629] r8169 0000:02:05.0 enp2s5: link down
    [ 17.950649] r8169 0000:02:05.0 enp2s5: link down
    [ 17.950666] IPv6: ADDRCONF(NETDEV_UP): enp2s5: link is not ready
    [ 17.965112] IPv6: ADDRCONF(NETDEV_UP): enp2s8: link is not ready
    [ 18.405080] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 18.405126] iTCO_wdt: Found a ICH7DH TCO device (Version=2, TCOBASE=0x0460)
    [ 18.405284] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 18.872915] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [ 19.433622] hda_codec: ALC882: SKU not ready 0x411111f0
    [ 19.445025] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input4
    [ 19.479013] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
    [ 19.479156] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 19.479804] hda_intel: Disabling MSI
    [ 19.479816] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 20.178014] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input7
    [ 20.178270] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input8
    [ 20.178485] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
    [ 20.178696] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
    [44490.433683] md: bind<sda1>
    [44490.446722] md: bind<sdb1>
    [44490.449241] md: raid1 personality registered for level 1
    [44490.450198] md/raid1:md1: not clean -- starting background reconstruction
    [44490.450203] md/raid1:md1: active with 2 out of 2 mirrors
    [44490.450235] md1: detected capacity change from 0 to 75934400512
    [44490.452050] md: resync of RAID array md1
    [44490.452056] md: minimum _guaranteed_ speed: 1000 KB/sec/disk.
    [44490.452059] md: using maximum available idle IO bandwidth (but not more than 200000 KB/sec) for resync.
    [44490.452064] md: using 128k window, over a total of 74154688k.
    [44490.454641] md1: unknown partition table
    [45968.754029] md: md1: resync done.
    [45968.841250] RAID1 conf printout:
    [45968.841254] --- wd:2 rd:2
    [45968.841258] disk 0, wo:0, o:1, dev:sda1
    [45968.841261] disk 1, wo:0, o:1, dev:sdb1
    [47642.847783] EXT4-fs (md1): mounted filesystem with ordered data mode. Opts: (null)
    [47687.134362] r8169 0000:02:05.0 enp2s5: link up
    [47687.134376] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s5: link becomes ready
    [47825.775238] usb 3-6: new high-speed USB device number 3 using ehci-pci
    [47825.899362] usb 3-6: unable to get BOS descriptor set
    [47826.017245] usb-storage 3-6:1.0: USB Mass Storage device detected
    [47826.017363] scsi6 : usb-storage 3-6:1.0
    [47826.017504] usbcore: registered new interface driver usb-storage
    [47827.081919] scsi 6:0:0:0: Direct-Access PMAP PQ: 0 ANSI: 4
    [47827.802316] sd 6:0:0:0: [sdd] 15466496 512-byte logical blocks: (7.91 GB/7.37 GiB)
    [47827.804809] sd 6:0:0:0: [sdd] Write Protect is off
    [47827.804814] sd 6:0:0:0: [sdd] Mode Sense: 23 00 00 00
    [47827.807314] sd 6:0:0:0: [sdd] No Caching mode page found
    [47827.807763] sd 6:0:0:0: [sdd] Assuming drive cache: write through
    [47827.816453] sd 6:0:0:0: [sdd] No Caching mode page found
    [47827.816915] sd 6:0:0:0: [sdd] Assuming drive cache: write through
    [47827.845089] sdd: sdd1
    [47827.851818] sd 6:0:0:0: [sdd] No Caching mode page found
    [47827.852305] sd 6:0:0:0: [sdd] Assuming drive cache: write through
    [47827.852776] sd 6:0:0:0: [sdd] Attached SCSI removable disk
    [47901.177187] FAT-fs (sdd1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [48255.001967] usb 3-6: USB disconnect, device number 3
    [48456.278507] usb 3-6: new high-speed USB device number 4 using ehci-pci
    [48456.402614] usb 3-6: unable to get BOS descriptor set
    [48456.425683] usb-storage 3-6:1.0: USB Mass Storage device detected
    [48456.425763] scsi7 : usb-storage 3-6:1.0
    [48457.491544] scsi 7:0:0:0: Direct-Access PMAP PQ: 0 ANSI: 4
    [48458.209938] sd 7:0:0:0: [sdd] 15466496 512-byte logical blocks: (7.91 GB/7.37 GiB)
    [48458.212437] sd 7:0:0:0: [sdd] Write Protect is off
    [48458.212442] sd 7:0:0:0: [sdd] Mode Sense: 23 00 00 00
    [48458.214932] sd 7:0:0:0: [sdd] No Caching mode page found
    [48458.215426] sd 7:0:0:0: [sdd] Assuming drive cache: write through
    [48458.224684] sd 7:0:0:0: [sdd] No Caching mode page found
    [48458.225143] sd 7:0:0:0: [sdd] Assuming drive cache: write through
    [48458.253332] sdd: sdd1
    [48458.265813] sd 7:0:0:0: [sdd] No Caching mode page found
    [48458.266295] sd 7:0:0:0: [sdd] Assuming drive cache: write through
    [48458.266755] sd 7:0:0:0: [sdd] Attached SCSI removable disk
    [48470.450341] FAT-fs (sdd1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [50093.387926] Adding 3930408k swap on /dev/sda5. Priority:-1 extents:1 across:3930408k FS
    [50096.410969] Adding 3930408k swap on /dev/sdb5. Priority:-2 extents:1 across:3930408k FS
    [54374.314336] ata4.00: exception Emask 0x50 SAct 0x0 SErr 0x480900 action 0x6 frozen
    [54374.314836] ata4.00: irq_stat 0x08000000, interface fatal error
    [54374.315323] ata4: SError: { UnrecovData HostInt 10B8B Handshk }
    [54374.315764] ata4.00: failed command: WRITE DMA
    [54374.316198] ata4.00: cmd ca/00:88:9f:ca:8d/00:00:00:00:00/e8 tag 0 dma 69632 out
    res 50/00:00:9e:ca:8d/00:00:9e:c9:8d/e8 Emask 0x50 (ATA bus error)
    [54374.317334] ata4.00: status: { DRDY }
    [54374.318002] ata4: hard resetting link
    [54374.904585] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [54374.906314] ata4.00: configured for UDMA/100
    [54374.906332] ata4: EH complete
    [56161.610355] sdd: detected capacity change from 7918845952 to 0
    [56178.066775] usb 3-6: USB disconnect, device number 4
    [56193.205154] ata6: exception Emask 0x50 SAct 0x0 SErr 0x90800 action 0xe frozen
    [56193.205703] ata6: irq_stat 0x00400000, PHY RDY changed
    [56193.206232] ata6: SError: { HostInt PHYRdyChg 10B8B }
    [56193.206732] ata6: hard resetting link
    [56193.924403] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [56193.932798] ata6.00: configured for UDMA/100
    [56193.932805] ata6: EH complete
    [56195.044927] ata6: exception Emask 0x10 SAct 0x0 SErr 0x90000 action 0xe frozen
    [56195.045472] ata6: irq_stat 0x00400000, PHY RDY changed
    [56195.046003] ata6: SError: { PHYRdyChg 10B8B }
    [56195.046511] ata6: hard resetting link
    [56195.764407] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [56195.772826] ata6.00: configured for UDMA/100
    [56195.772832] ata6: EH complete
    [56217.331067] usb 3-6: new high-speed USB device number 5 using ehci-pci
    [56217.455149] usb 3-6: unable to get BOS descriptor set
    [56217.478526] usb-storage 3-6:1.0: USB Mass Storage device detected
    [56217.478662] scsi8 : usb-storage 3-6:1.0
    [56218.544212] scsi 8:0:0:0: Direct-Access PMAP PQ: 0 ANSI: 4
    [56219.262349] sd 8:0:0:0: [sdd] 15466496 512-byte logical blocks: (7.91 GB/7.37 GiB)
    [56219.264849] sd 8:0:0:0: [sdd] Write Protect is off
    [56219.264855] sd 8:0:0:0: [sdd] Mode Sense: 23 00 00 00
    [56219.267343] sd 8:0:0:0: [sdd] No Caching mode page found
    [56219.267939] sd 8:0:0:0: [sdd] Assuming drive cache: write through
    [56219.277220] sd 8:0:0:0: [sdd] No Caching mode page found
    [56219.277802] sd 8:0:0:0: [sdd] Assuming drive cache: write through
    [56219.305984] sdd: sdd1
    [56219.318099] sd 8:0:0:0: [sdd] No Caching mode page found
    [56219.318677] sd 8:0:0:0: [sdd] Assuming drive cache: write through
    [56219.319238] sd 8:0:0:0: [sdd] Attached SCSI removable disk
    [56234.556099] FAT-fs (sdd1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    Edit: Just after I took out my flashdrive, when I accidentally bumped one of the HDs, this popped up:
    [56193.205154] ata6: exception Emask 0x50 SAct 0x0 SErr 0x90800 action 0xe frozen
    [56193.205703] ata6: irq_stat 0x00400000, PHY RDY changed
    [56193.206232] ata6: SError: { HostInt PHYRdyChg 10B8B }
    [56193.206732] ata6: hard resetting link
    [56193.924403] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [56193.932798] ata6.00: configured for UDMA/100
    [56193.932805] ata6: EH complete
    [56195.044927] ata6: exception Emask 0x10 SAct 0x0 SErr 0x90000 action 0xe frozen
    [56195.045472] ata6: irq_stat 0x00400000, PHY RDY changed
    [56195.046003] ata6: SError: { PHYRdyChg 10B8B }
    [56195.046511] ata6: hard resetting link
    Last edited by Dornith (2014-05-20 16:08:40)

    http://ww2.cs.fsu.edu/~rosentha/linux/2.6.26.5/docs/DocBook/libata/ch07.html#excatATAbusErr wrote:
    ATA bus error means that data corruption occurred during transmission over ATA bus (SATA or PATA). This type of errors can be indicated by
    ICRC or ABRT error as described in the section called “ATA/ATAPI device error (non-NCQ / non-CHECK CONDITION)”.
    Controller-specific error completion with error information indicating transmission error.
    On some controllers, command timeout. In this case, there may be a mechanism to determine that the timeout is due to transmission error.
    Unknown/random errors, timeouts and all sorts of weirdities.
    As described above, transmission errors can cause wide variety of symptoms ranging from device ICRC error to random device lockup, and, for many cases, there is no way to tell if an error condition is due to transmission error or not; therefore, it's necessary to employ some kind of heuristic when dealing with errors and timeouts. For example, encountering repetitive ABRT errors for known supported command is likely to indicate ATA bus error.
    Once it's determined that ATA bus errors have possibly occurred, lowering ATA bus transmission speed is one of actions which may alleviate the problem.
    I'd also add; make sure you have good backups when ATA errors are frequent

Maybe you are looking for

  • How do I set the PXI 6031E for single ended or differential input?

    6030/1/2/3 E manual states that the 6031 and 33E has software selectable single ended or differential input per channel.  How do I set it in labview?  I have been unable to locate the property.

  • Problem connecting MacMini to new LG monitor

    I can't get my new LG IPS235V monitor to work with my MacMini (mid-2011). Previously had the MacMini hooked up to a 30" Apple cinema display but am using it temporarily in a different location. I set up the LG monitor and connected to the MacMini via

  • Printing in Windows

    I am using Parallel and Windows Vista but I can't get my printer to print in windows. It prints fine from the Mac. How can I get it to print from both?

  • Email app doesn't open catch-all folder at start-up

    Hi, I'm happy the email app got redesigned and a new catch-all folder has been introduced. I wonder though why it doesn't open this folder by default. Instead it jumps right to the folder underneath which is a folder linked to 1 of the 4 email accoun

  • Photoshop CS 6 upgrade using the creative cloud

    I have purchased Adobe Photoshop CS6, singe app.  I have the Creative Cloud Installer on my desktop, but I can't figure out how to start using CS6