Geometry for EasyRaid X6P

Geetings!
I was handed this system and told to get it to work. We do not have a support contract for either the Sun machine or any of the external hardware.
I have a EasyRaid X6P that I am trying to attached to a NetraT1running Solaris 8. Format sees the disk like this:
4. c7t0d0 <drive type unknown>
/pci&#64;1f,0/pci&#64;1/pci&#64;5/pci&#64;8/pci&#64;c/SUNW,isptwo&#64;4/sd&#64;0,0
When I try to select the device, it lists "AVAILABLE DRIVE TYPES", but none of them fit. There are two additional options. "Auto configure" says:
Mode sense page(3) reports nsect value as 128, adjusting it to -96
Auto configure failed
"Other" asks for the number of cylinders, etc. There is nothing on the EasyRaid box that indicates what the geometry is that is presented to the operating system. However, I tried to simply input the geometery from a single device in the hopes of getting a little farther. However, it fails with:
Enter number of data cylinders: 486344
'486344' is out of range.
I have asked some of the other members of our department and found out that this EesyRaid was on the machine once before. In /etc/vfstab I found:
#/dev/dsk/c7t0d0s2 /dev/rdsk/c7t0d0s2 /stage1 ufs 3 yes -
So I looked at the device node:
lrwxrwxrwx 1 root other 73 Dec 2 2004 /dev/rdsk/c7t0d0s2 -> ../../devices/pci&#64;1f,0/pci&#64;1/pci&#64;5/pci&#64;8/pci&#64;c/SUNW,isptwo&#64;4/sd&#64;0,0:c,raw
and then the messages file for the time the device node was created and found this:
Dec 2 17:25:54 nts-mgm-13 scsi: &#91;ID 107833 kern.notice&#93; Vendor: easyRAID Serial Num
ber:
Dec 2 17:25:54 nts-mgm-13 scsi: &#91;ID 107833 kern.notice&#93; Sense Key: Not Ready
Dec 2 17:25:54 nts-mgm-13 scsi: &#91;ID 107833 kern.notice&#93; ASC: 0x4 (LUN not ready), ASCQ: 0x0, FRU: 0x0
Dec 2 17:25:59 nts-mgm-13 scsi: &#91;ID 107833 kern.warning&#93; WARNING: /pci&#64;1f,0/pci&#64;1/pci&#64;5/pci&#64;8/pci&#64;c/SUNW,isptwo&#64;4/sd
@0,0 (sd91):
Dec 2 17:25:59 nts-mgm-13 Error for Command: load/start/stop Error Level: Retryable
I do not find these entries in the current messages file, so apparently the EasyRaid is not being recognized completely correct. I also found out that this the EasyRaid is not connected directly by goes through a Netra E1 PCI Expanded. So, it is possible that the configuration of the Netra E1 is confusing the recognition of the EasyRaid. However, I am at a loss of where to go from here.
Any help would be greatly appreaciated.

Hello James,
the first hit in google was a page in german (http://www.starline.de/produkte/easyraid/easyraid_x6p/easyra id_x6p.htm) ...
This is a link to download the manual
http://www.easyraid.com/manuals/erx6p_u3r2.pdf
Maybe someone else can review the manual ...
How is this EasyRaid configured (installed capacity, setup, etc) ?
Michael

Similar Messages

  • JS/CS3 or 4:Geometry for texts

    Dear All,
    I had a requirement to get the geometric bounds for some key terms in texts (Eg. Key words, URL, etc). Is there any possibility to get the geometric bounds for inline texts? If so, kindly let me know.
    regards
    Masthan

    search the "keyword", set textRange,
    and creatOutlines(false) method against the textRange.
    ("false" propety remain original texts objects)
    you can get geometricBounds of "keywords" as Polygons
    then remove Outlined texts(polygons)
    //ex)
    var outTxt = app.selection[0].createOutlines (false);
    var textBon = outP[0].geometricBounds;
    outTxt [0]. remove ();

  • Best practice for use of spatial operators

    Hi All,
    I'm trying to build a .NET toolkit to interact with Oracles spatial operators. The most common use of this toolkit will be to find results which are within a given geometry - for example select parish boundaries within a county.
    Our boundary data is high detail, commonly containing upwards of 50'000 vertices for a county sized polygon.
    I've currently been experimenting with queries such as:
    select
    from
    uk_ward a,
    uk_county b
    where
    UPPER(b.name) = 'DORSET COUNTY' and
    sdo_relate(a.geoloc, b.geoloc, 'mask=coveredby+inside') = 'TRUE';
    However the speed is unacceptable, especially as most of the implementations of the toolkit will be web based. The query above takes around a minute to return.
    Any comments or thoughts on the best practice for use of Oracle spatial in this way will be warmly welcomed. I'm looking for a solution which is as quick and efficient as possible.

    Thanks again for the reply... the query currently takes just under 90 seconds to return. Here are the results from the execution plan ran in sql*:
    Elapsed: 00:01:24.81
    Execution Plan
    Plan hash value: 598052089
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 156 | 46956 | 76 (0)| 00:00:01 |
    | 1 | NESTED LOOPS | | 156 | 46956 | 76 (0)| 00:00:01 |
    |* 2 | TABLE ACCESS FULL | UK_COUNTY | 2 | 262 | 5 (0)| 00:00:01 |
    | 3 | TABLE ACCESS BY INDEX ROWID| UK_WARD | 75 | 12750 | 76 (0)| 00:00:01 |
    |* 4 | DOMAIN INDEX | UK_WARD_SX | | | | |
    Predicate Information (identified by operation id):
    2 - filter(UPPER("B"."NAME")='DORSET COUNTY')
    4 - access("MDSYS"."SDO_INT2_RELATE"("A"."GEOLOC","B"."GEOLOC",'mask=coveredby+i
    nside')='TRUE')
    Statistics
    20431 recursive calls
    60 db block gets
    22432 consistent gets
    1156 physical reads
    0 redo size
    2998369 bytes sent via SQL*Net to client
    1158 bytes received via SQL*Net from client
    17 SQL*Net roundtrips to/from client
    452 sorts (memory)
    0 sorts (disk)
    125 rows processed
    The wards table has 7545 rows, the county table has 207.
    We are currently on release 10.2.0.3.
    All i want to do with this is generate results which fall in a particular geometry. Most of my testing has been successful i just seem to run into issues when querying against a county sized polygon - i guess due to the amount of vertices.
    Also looking through the forums now for tuning topics...

  • Set fixed window geometry in Xfce4?

    Is there a way to set fixed geometry for application windows in Xfce4 (without Compiz)?
    I'm thinking like in KDE where you can right-click a window's title bar and set X,Y,width,height to fixed and it will keep that permanently.
    Currently I'm using devilspie, but the problem is that devilspie apparently can only apply geometry to a window once: When it is created. It won't prevent existing windows from getting resized/moved later on.

    I think there are actually several not necessarily related issues here. First of all when I tested this program in LabVIEW 8.6 (not having had an older version handy at that moment) the first thing I noticed, was that the VI never got parented at all. The reason was simply the data type mismatch in the handle between what Get Window Handle returns and what Add Child uses. Once I fixed that it worked like a charm with no jumping whatsoever.
    So I did a test in LabVIEW 7.1 just now and indeed it does jump there. But, I wouldn't exclude that LabVIEW 7 migh have done it correctly for the OS (W2K) that was current at that time it came out. But there are really at least two solutions: Upgrade to a newer LabVIEW version, at least 8.6 works fine (8.2.1 didn't I just checked) or don't call the VI continously but let it run as an independant "process" and pass data by other means than through the connector pane (personally I would point out that globals are a bad way for this )
    And by the way, almost all Windows handles are actually pointer sized entities so if you happen to use such window managment VIs in LabVIEw 8.6 or higher it is advisable to not configure them as U32 but as pointer sized (unsigned) integer instead
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • USB CompactFla​sh cards reported with wrong geometry by the BIOS

    Hello.
    While working with DOS (true DOS such as MS-DOS 6.22, not Windows-based command line) on Toshiba Satellite A665-12W with ROM-BIOS version 1.50, the ROM-BIOS "Interrupt 13h" functions report bad geometry for most of USB-plugged CompactFlash cards.
    I tested it with many different CompactFlash cards and many different USB card readers.
    Int 13h, function 15h incorrectly repports 1023 cylinders for small cards having less than 1023 cylinders. The number of heads and sectors-per-track is good. The resulting computed total of sectors is bad, making the card almost unusable.
    Int 13h, function 48h incorrectly repports the drive as having only one sector (sometimes zero sector), making the flash drive unusable.
    These problems do not show up with same cards and card readers on other computers.
    I can provide details if needed:
    Make and models of cards and card readers (many of them).
    Copy of the ATA "identify device" information block of the cards.
    Assembler language program samples.
    Best regards,
    Chris.

    That doesn't appear to be a US model, and this is the forums for Toshiba USA. You may want to contact Toshiba in your region.
    If it's a European model, you could check the Toshiba Europe forums.
    - Peter

  • Storing geometry deltas

    At my workplace for spatial tables they have a data management process where when a new version of a spatial table is ready to load - they delete all the rows in the existing table and drop all indexes on the table. Then the new data is loaded into the table and the indexes are created again.
    However, for a few of the spatial tables I work on, what I would like is to be able to still retain all historic geometry. For example the primary key is site_no, I want to compare the geometry changes for site_number 1 between 2007, 2008, 2009 etc.
    At first I thought that I would put all the geometry (both old and current) into a single table with a date column:
    CREATE TABLE all_geom_test (
    SITE_NO                   NUMBER,
    GEOMETRY_DATE    DATE DEFAULT SYSDATE NOT NULL,
    GEOMETRY              MDSYS.SDO_GEOMETRY);
    I then made a view which selected the most recent geometry for each site_no.
    However, I have found there are a couple of problems with this: A site_no might exist in 2008 but then be deleted - therefore not exist - in next year's version of the spatial data set. But the view is still selecting the 2008 geometry. The other problem is that the all_geom_test table is going to get very big. For the first problem the only solution I can think of is to have a 'deleted_flag' column.
    What would be a better way to store this geometry? How could I store only the deltas between versions or a base version?

    996454 wrote:
    However, for a few of the spatial tables I work on, what I would like is to be able to still retain all historic geometry. For example the primary key is site_no, I want to compare the geometry changes for site_number 1 between 2007, 2008, 2009 etc.
    Interesting challenge. Have you had a look at Workspace Manager? Contents
    I then made a view which selected the most recent geometry for each site_no. However, I have found there are a couple of problems with this: A site_no might exist in 2008 but then be deleted - therefore not exist - in next year's version of the spatial data set. But the view is still selecting the 2008 geometry.
    It would be helpful if you give the definition of your view. There's no way of knowing why the view is still selecting 2008 geometry if we don't have sample data and the query that is not supposed to select it.
    996454 wrote:
    The other problem is that the all_geom_test table is going to get very big. For the first problem the only solution I can think of is to have a 'deleted_flag' column.
    What would be a better way to store this geometry? How could I store only the deltas between versions or a base version?
    History tends to become very very big very quickly. So what you have to look at before you implement a solution is if you really really really need that history to be available (other than your normal backups). If the answer is yes, then I would suggest to have a look at partitioning your table and especially your spatial index. Works great, the partitioned spatial indexes will prune your table for you without the need to put the partitioning column in your where clause, and performance is superb.
    As for the second part of your question: What do you mean by "deltas"? The actual changes in vertices of your geometry? That would be spossible, but at a cost. I currently maintain a database for a customer who simply puts the system date and time in an "ObjectEndTime" column when the record is updated or deleted, which means you can select older versions of your geometry quite easily. But calculating the difference between geometries takes a bit more work, and besides: what if one of the other columns has changed but the geometrie hasn't? You'll get and empty geometry if you calculate the differences between the geometries, because there is no difference. So I think you need to go back to the drawing board and re-think what it is you want to achieve -  and have a serious look at Workspace Manager.
    Of course if you can describe what exactly it is you want to achieve you can ask here: there's always lot's of people around here with brilliant ideas that I have used quite a lot

  • Failed to wake NIC for hcmd

    Hi,
       Very recently my wifi has been "vanishing" all of a sudden, with no good determined scenario. Rebooting fixes the problem temporarily (so I was hoping it's software related).
       The following error messages are shown by dmesg:
    [ 2058.691869] iwlwifi 0000:01:00.0: Failed to wake NIC for hcmd
    [ 2058.691907] iwlwifi 0000:01:00.0: Error sending SCAN_REQUEST_CMD: enqueue_hcmd failed: -5
    [ 2058.691913] iwlwifi 0000:01:00.0: Scan failed! status 0x1 ret -5
    [ 2178.789055] iwlwifi 0000:01:00.0: Failed to wake NIC for hcmd
    [ 2178.789075] iwlwifi 0000:01:00.0: Error sending SCAN_REQUEST_CMD: enqueue_hcmd failed: -5
    [ 2178.789079] iwlwifi 0000:01:00.0: Scan failed! status 0x1 ret -5
    [ 2298.885158] iwlwifi 0000:01:00.0: Failed to wake NIC for hcmd
    [ 2298.885180] iwlwifi 0000:01:00.0: Error sending SCAN_REQUEST_CMD: enqueue_hcmd failed: -5
    [ 2298.885183] iwlwifi 0000:01:00.0: Scan failed! status 0x1 ret -5
       Has anyone seen that error?
    Edit: Removed stupid commentary written due to lack os good sleep.
    Regards,
    Last edited by fernando_costa (2014-10-29 04:14:11)

    I'm trying a different board and yet I got the same error:
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys cpuset
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys cpu
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys cpuacct
    [Seg Dez 8 13:04:24 2014] Linux version 3.17.6-1-ARCH (builduser@foutrelis) (gcc version 4.9.2 (GCC) ) #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014
    [Seg Dez 8 13:04:24 2014] Command line: \vmlinuz-linux ro root=UUID=98e2ab9a-1b0f-4b88-8fe7-9abf238cfa3f iwlwifi.fw_monitor=1 initrd=\initramfs-linux.img
    [Seg Dez 8 13:04:24 2014] e820: BIOS-provided physical RAM map:
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x0000000000000000-0x000000000006efff] usable
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x000000000006f000-0x000000000006ffff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x0000000000070000-0x0000000000087fff] usable
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x0000000000100000-0x000000009301ffff] usable
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x0000000093020000-0x000000009441ffff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x0000000094420000-0x000000009c6befff] usable
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x000000009c6bf000-0x000000009cebefff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x000000009cebf000-0x000000009cfbefff] ACPI NVS
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x000000009cfbf000-0x000000009cffefff] ACPI data
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x000000009cfff000-0x000000009cffffff] usable
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x000000009d000000-0x000000009f9fffff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [Seg Dez 8 13:04:24 2014] BIOS-e820: [mem 0x0000000100000000-0x000000025f5fffff] usable
    [Seg Dez 8 13:04:24 2014] NX (Execute Disable) protection: active
    [Seg Dez 8 13:04:24 2014] e820: update [mem 0x91f5d018-0x91f6d057] usable ==> usable
    [Seg Dez 8 13:04:24 2014] extended physical RAM map:
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000000000000-0x000000000006efff] usable
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x000000000006f000-0x000000000006ffff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000000070000-0x0000000000087fff] usable
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000000100000-0x0000000091f5d017] usable
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000091f5d018-0x0000000091f6d057] usable
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000091f6d058-0x000000009301ffff] usable
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000093020000-0x000000009441ffff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000094420000-0x000000009c6befff] usable
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x000000009c6bf000-0x000000009cebefff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x000000009cebf000-0x000000009cfbefff] ACPI NVS
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x000000009cfbf000-0x000000009cffefff] ACPI data
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x000000009cfff000-0x000000009cffffff] usable
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x000000009d000000-0x000000009f9fffff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [Seg Dez 8 13:04:24 2014] reserve setup_data: [mem 0x0000000100000000-0x000000025f5fffff] usable
    [Seg Dez 8 13:04:24 2014] efi: EFI v2.31 by INSYDE Corp.
    [Seg Dez 8 13:04:24 2014] efi: ACPI=0x9cffe000 ACPI 2.0=0x9cffe014 SMBIOS=0x9cebef98
    [Seg Dez 8 13:04:24 2014] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000007000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem02: type=7, attr=0xf, range=[0x0000000000007000-0x000000000006f000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem03: type=0, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem04: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem05: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x000000000009f000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem06: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem07: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [Seg Dez 8 13:04:24 2014] efi: mem08: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f4f000) (15MB)
    [Seg Dez 8 13:04:24 2014] efi: mem09: type=7, attr=0xf, range=[0x0000000001f4f000-0x000000007fbfa000) (2012MB)
    [Seg Dez 8 13:04:24 2014] efi: mem10: type=2, attr=0xf, range=[0x000000007fbfa000-0x0000000080000000) (4MB)
    [Seg Dez 8 13:04:24 2014] efi: mem11: type=7, attr=0xf, range=[0x0000000080000000-0x000000008923a000) (146MB)
    [Seg Dez 8 13:04:24 2014] efi: mem12: type=1, attr=0xf, range=[0x000000008923a000-0x000000008b189000) (31MB)
    [Seg Dez 8 13:04:24 2014] efi: mem13: type=2, attr=0xf, range=[0x000000008b189000-0x000000008ed1e000) (59MB)
    [Seg Dez 8 13:04:24 2014] efi: mem14: type=7, attr=0xf, range=[0x000000008ed1e000-0x000000008fcbf000) (15MB)
    [Seg Dez 8 13:04:24 2014] efi: mem15: type=2, attr=0xf, range=[0x000000008fcbf000-0x0000000091430000) (23MB)
    [Seg Dez 8 13:04:24 2014] efi: mem16: type=4, attr=0xf, range=[0x0000000091430000-0x0000000091450000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem17: type=7, attr=0xf, range=[0x0000000091450000-0x0000000091f2a000) (10MB)
    [Seg Dez 8 13:04:24 2014] efi: mem18: type=2, attr=0xf, range=[0x0000000091f2a000-0x0000000091f35000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem19: type=7, attr=0xf, range=[0x0000000091f35000-0x0000000091f5d000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem20: type=2, attr=0xf, range=[0x0000000091f5d000-0x0000000091fbd000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem21: type=7, attr=0xf, range=[0x0000000091fbd000-0x0000000091fc3000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem22: type=2, attr=0xf, range=[0x0000000091fc3000-0x0000000091fdd000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem23: type=7, attr=0xf, range=[0x0000000091fdd000-0x0000000091fe2000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem24: type=2, attr=0xf, range=[0x0000000091fe2000-0x0000000092198000) (1MB)
    [Seg Dez 8 13:04:24 2014] efi: mem25: type=4, attr=0xf, range=[0x0000000092198000-0x0000000093020000) (14MB)
    [Seg Dez 8 13:04:24 2014] efi: mem26: type=0, attr=0xf, range=[0x0000000093020000-0x0000000094420000) (20MB)
    [Seg Dez 8 13:04:24 2014] efi: mem27: type=2, attr=0xf, range=[0x0000000094420000-0x000000009442f000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem28: type=7, attr=0xf, range=[0x000000009442f000-0x00000000945f3000) (1MB)
    [Seg Dez 8 13:04:24 2014] efi: mem29: type=1, attr=0xf, range=[0x00000000945f3000-0x000000009462f000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem30: type=7, attr=0xf, range=[0x000000009462f000-0x0000000097c91000) (54MB)
    [Seg Dez 8 13:04:24 2014] efi: mem31: type=4, attr=0xf, range=[0x0000000097c91000-0x0000000097d74000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem32: type=7, attr=0xf, range=[0x0000000097d74000-0x0000000097d93000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem33: type=4, attr=0xf, range=[0x0000000097d93000-0x000000009c0bf000) (67MB)
    [Seg Dez 8 13:04:24 2014] efi: mem34: type=7, attr=0xf, range=[0x000000009c0bf000-0x000000009c29d000) (1MB)
    [Seg Dez 8 13:04:24 2014] efi: mem35: type=3, attr=0xf, range=[0x000000009c29d000-0x000000009c6bf000) (4MB)
    [Seg Dez 8 13:04:24 2014] efi: mem36: type=5, attr=0x800000000000000f, range=[0x000000009c6bf000-0x000000009c8bf000) (2MB)
    [Seg Dez 8 13:04:24 2014] efi: mem37: type=6, attr=0x800000000000000f, range=[0x000000009c8bf000-0x000000009cabf000) (2MB)
    [Seg Dez 8 13:04:24 2014] efi: mem38: type=0, attr=0xf, range=[0x000000009cabf000-0x000000009cebf000) (4MB)
    [Seg Dez 8 13:04:24 2014] efi: mem39: type=10, attr=0xf, range=[0x000000009cebf000-0x000000009cfbf000) (1MB)
    [Seg Dez 8 13:04:24 2014] efi: mem40: type=9, attr=0xf, range=[0x000000009cfbf000-0x000000009cfff000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem41: type=4, attr=0xf, range=[0x000000009cfff000-0x000000009d000000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem42: type=7, attr=0xf, range=[0x0000000100000000-0x000000025f600000) (5622MB)
    [Seg Dez 8 13:04:24 2014] efi: mem43: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem44: type=0, attr=0x0, range=[0x000000009d000000-0x000000009fa00000) (42MB)
    [Seg Dez 8 13:04:24 2014] efi: mem45: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    [Seg Dez 8 13:04:24 2014] efi: mem46: type=0, attr=0x0, range=[0x00000000fe101000-0x00000000fe113000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem47: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb10000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem48: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem49: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed1c000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem50: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem51: type=11, attr=0x8000000000000001, range=[0x00000000fed20000-0x00000000fee01000) (0MB)
    [Seg Dez 8 13:04:24 2014] efi: mem52: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x0000000100000000) (4MB)
    [Seg Dez 8 13:04:24 2014] SMBIOS 2.7 present.
    [Seg Dez 8 13:04:24 2014] DMI: LENOVO 20266/Yoga2, BIOS 76CN38WW 06/27/2014
    [Seg Dez 8 13:04:24 2014] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [Seg Dez 8 13:04:24 2014] e820: remove [mem 0x000a0000-0x000fffff] usable
    [Seg Dez 8 13:04:24 2014] AGP: No AGP bridge found
    [Seg Dez 8 13:04:24 2014] e820: last_pfn = 0x25f600 max_arch_pfn = 0x400000000
    [Seg Dez 8 13:04:24 2014] MTRR default type: uncachable
    [Seg Dez 8 13:04:24 2014] MTRR fixed ranges enabled:
    [Seg Dez 8 13:04:24 2014] 00000-9FFFF write-back
    [Seg Dez 8 13:04:24 2014] A0000-BFFFF uncachable
    [Seg Dez 8 13:04:24 2014] C0000-E7FFF write-protect
    [Seg Dez 8 13:04:24 2014] E8000-EFFFF write-combining
    [Seg Dez 8 13:04:24 2014] F0000-FFFFF write-protect
    [Seg Dez 8 13:04:24 2014] MTRR variable ranges enabled:
    [Seg Dez 8 13:04:24 2014] 0 base 0000000000 mask 7F80000000 write-back
    [Seg Dez 8 13:04:24 2014] 1 base 0080000000 mask 7FE0000000 write-back
    [Seg Dez 8 13:04:24 2014] 2 base 009D000000 mask 7FFF000000 uncachable
    [Seg Dez 8 13:04:24 2014] 3 base 009E000000 mask 7FFE000000 uncachable
    [Seg Dez 8 13:04:24 2014] 4 base 00FFC00000 mask 7FFFC00000 write-protect
    [Seg Dez 8 13:04:24 2014] 5 base 0100000000 mask 7F00000000 write-back
    [Seg Dez 8 13:04:24 2014] 6 base 0200000000 mask 7F80000000 write-back
    [Seg Dez 8 13:04:24 2014] 7 base 025F600000 mask 7FFFE00000 uncachable
    [Seg Dez 8 13:04:24 2014] 8 base 025F800000 mask 7FFF800000 uncachable
    [Seg Dez 8 13:04:24 2014] 9 base 0260000000 mask 7FE0000000 uncachable
    [Seg Dez 8 13:04:24 2014] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [Seg Dez 8 13:04:24 2014] e820: last_pfn = 0x9d000 max_arch_pfn = 0x400000000
    [Seg Dez 8 13:04:24 2014] Scanning 1 areas for low memory corruption
    [Seg Dez 8 13:04:24 2014] Base memory trampoline at [ffff880000082000] 82000 size 24576
    [Seg Dez 8 13:04:24 2014] Using GB pages for direct mapping
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [Seg Dez 8 13:04:24 2014] [mem 0x00000000-0x000fffff] page 4k
    [Seg Dez 8 13:04:24 2014] BRK [0x01b2b000, 0x01b2bfff] PGTABLE
    [Seg Dez 8 13:04:24 2014] BRK [0x01b2c000, 0x01b2cfff] PGTABLE
    [Seg Dez 8 13:04:24 2014] BRK [0x01b2d000, 0x01b2dfff] PGTABLE
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x25f400000-0x25f5fffff]
    [Seg Dez 8 13:04:24 2014] [mem 0x25f400000-0x25f5fffff] page 2M
    [Seg Dez 8 13:04:24 2014] BRK [0x01b2e000, 0x01b2efff] PGTABLE
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x25c000000-0x25f3fffff]
    [Seg Dez 8 13:04:24 2014] [mem 0x25c000000-0x25f3fffff] page 2M
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x200000000-0x25bffffff]
    [Seg Dez 8 13:04:24 2014] [mem 0x200000000-0x23fffffff] page 1G
    [Seg Dez 8 13:04:24 2014] [mem 0x240000000-0x25bffffff] page 2M
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x00100000-0x9301ffff]
    [Seg Dez 8 13:04:24 2014] [mem 0x00100000-0x001fffff] page 4k
    [Seg Dez 8 13:04:24 2014] [mem 0x00200000-0x3fffffff] page 2M
    [Seg Dez 8 13:04:24 2014] [mem 0x40000000-0x7fffffff] page 1G
    [Seg Dez 8 13:04:24 2014] [mem 0x80000000-0x92ffffff] page 2M
    [Seg Dez 8 13:04:24 2014] [mem 0x93000000-0x9301ffff] page 4k
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x94420000-0x9c6befff]
    [Seg Dez 8 13:04:24 2014] [mem 0x94420000-0x945fffff] page 4k
    [Seg Dez 8 13:04:24 2014] [mem 0x94600000-0x9c5fffff] page 2M
    [Seg Dez 8 13:04:24 2014] [mem 0x9c600000-0x9c6befff] page 4k
    [Seg Dez 8 13:04:24 2014] BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    [Seg Dez 8 13:04:24 2014] BRK [0x01b30000, 0x01b30fff] PGTABLE
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x9cfff000-0x9cffffff]
    [Seg Dez 8 13:04:24 2014] [mem 0x9cfff000-0x9cffffff] page 4k
    [Seg Dez 8 13:04:24 2014] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [Seg Dez 8 13:04:24 2014] [mem 0x100000000-0x1ffffffff] page 1G
    [Seg Dez 8 13:04:24 2014] RAMDISK: [mem 0x7fbfa000-0x7fffffff]
    [Seg Dez 8 13:04:24 2014] ACPI: Early table checksum verification disabled
    [Seg Dez 8 13:04:24 2014] ACPI: RSDP 0x000000009CFFE014 000024 (v02 LENOVO)
    [Seg Dez 8 13:04:24 2014] ACPI: XSDT 0x000000009CFFE210 0000C4 (v01 LENOVO CB-01 00000001 01000013)
    [Seg Dez 8 13:04:24 2014] ACPI: FACP 0x000000009CFEB000 00010C (v05 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: DSDT 0x000000009CFDA000 00D141 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: FACS 0x000000009CFBA000 000040
    [Seg Dez 8 13:04:24 2014] ACPI: SLIC 0x000000009CFFD000 000176 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: UEFI 0x000000009CFFC000 000236 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0x000000009CFF0000 00B124 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: FPDT 0x000000009CFEE000 000044 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: MSDM 0x000000009CFED000 000055 (v03 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: ASF! 0x000000009CFEC000 0000A5 (v32 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: HPET 0x000000009CFEA000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: APIC 0x000000009CFE9000 00008C (v03 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: MCFG 0x000000009CFE8000 00003C (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0x000000009CFD7000 002028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: BOOT 0x000000009CFD5000 000028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: LPIT 0x000000009CFD4000 000094 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: ASPT 0x000000009CFD2000 000034 (v07 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: DBGP 0x000000009CFD1000 000034 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0x000000009CFCE000 000539 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0x000000009CFCD000 000AD8 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0x000000009CFC9000 003496 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0x000000009CFC8000 0007C7 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: BGRT 0x000000009CFC7000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [Seg Dez 8 13:04:24 2014] ACPI: Local APIC address 0xfee00000
    [Seg Dez 8 13:04:24 2014] No NUMA configuration found
    [Seg Dez 8 13:04:24 2014] Faking a node at [mem 0x0000000000000000-0x000000025f5fffff]
    [Seg Dez 8 13:04:24 2014] Initmem setup node 0 [mem 0x00000000-0x25f5fffff]
    [Seg Dez 8 13:04:24 2014] NODE_DATA [mem 0x25f5f9000-0x25f5fcfff]
    [Seg Dez 8 13:04:24 2014] [ffffea0000000000-ffffea00097fffff] PMD -> [ffff880256c00000-ffff88025ebfffff] on node 0
    [Seg Dez 8 13:04:24 2014] Zone ranges:
    [Seg Dez 8 13:04:24 2014] DMA [mem 0x00001000-0x00ffffff]
    [Seg Dez 8 13:04:24 2014] DMA32 [mem 0x01000000-0xffffffff]
    [Seg Dez 8 13:04:24 2014] Normal [mem 0x100000000-0x25f5fffff]
    [Seg Dez 8 13:04:24 2014] Movable zone start for each node
    [Seg Dez 8 13:04:24 2014] Early memory node ranges
    [Seg Dez 8 13:04:24 2014] node 0: [mem 0x00001000-0x0006efff]
    [Seg Dez 8 13:04:24 2014] node 0: [mem 0x00070000-0x00087fff]
    [Seg Dez 8 13:04:24 2014] node 0: [mem 0x00100000-0x9301ffff]
    [Seg Dez 8 13:04:24 2014] node 0: [mem 0x94420000-0x9c6befff]
    [Seg Dez 8 13:04:24 2014] node 0: [mem 0x9cfff000-0x9cffffff]
    [Seg Dez 8 13:04:24 2014] node 0: [mem 0x100000000-0x25f5fffff]
    [Seg Dez 8 13:04:24 2014] On node 0 totalpages: 2074694
    [Seg Dez 8 13:04:24 2014] DMA zone: 64 pages used for memmap
    [Seg Dez 8 13:04:24 2014] DMA zone: 21 pages reserved
    [Seg Dez 8 13:04:24 2014] DMA zone: 3974 pages, LIFO batch:0
    [Seg Dez 8 13:04:24 2014] DMA32 zone: 9867 pages used for memmap
    [Seg Dez 8 13:04:24 2014] DMA32 zone: 631488 pages, LIFO batch:31
    [Seg Dez 8 13:04:24 2014] Normal zone: 22488 pages used for memmap
    [Seg Dez 8 13:04:24 2014] Normal zone: 1439232 pages, LIFO batch:31
    [Seg Dez 8 13:04:24 2014] Reserving Intel graphics stolen memory at 0x9da00000-0x9f9fffff
    [Seg Dez 8 13:04:24 2014] ACPI: PM-Timer IO Port: 0x1808
    [Seg Dez 8 13:04:24 2014] ACPI: Local APIC address 0xfee00000
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [Seg Dez 8 13:04:24 2014] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [Seg Dez 8 13:04:24 2014] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [Seg Dez 8 13:04:24 2014] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
    [Seg Dez 8 13:04:24 2014] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [Seg Dez 8 13:04:24 2014] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [Seg Dez 8 13:04:24 2014] ACPI: IRQ0 used by override.
    [Seg Dez 8 13:04:24 2014] ACPI: IRQ9 used by override.
    [Seg Dez 8 13:04:24 2014] Using ACPI (MADT) for SMP configuration information
    [Seg Dez 8 13:04:24 2014] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [Seg Dez 8 13:04:24 2014] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x0006f000-0x0006ffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x91f5d000-0x91f5dfff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x91f6d000-0x91f6dfff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x93020000-0x9441ffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x9c6bf000-0x9cebefff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x9cebf000-0x9cfbefff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x9cfbf000-0x9cffefff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x9d000000-0x9f9fffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xf0000000-0xfe100fff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfe113000-0xfeafffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb0ffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfeb10000-0xfebfffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfed00000-0xfee00fff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [Seg Dez 8 13:04:24 2014] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [Seg Dez 8 13:04:24 2014] e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
    [Seg Dez 8 13:04:24 2014] Booting paravirtualized kernel on bare hardware
    [Seg Dez 8 13:04:24 2014] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [Seg Dez 8 13:04:24 2014] PERCPU: Embedded 28 pages/cpu @ffff88025f200000 s82752 r8192 d23744 u262144
    [Seg Dez 8 13:04:24 2014] pcpu-alloc: s82752 r8192 d23744 u262144 alloc=1*2097152
    [Seg Dez 8 13:04:24 2014] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [Seg Dez 8 13:04:24 2014] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2042254
    [Seg Dez 8 13:04:24 2014] Policy zone: Normal
    [Seg Dez 8 13:04:24 2014] Kernel command line: \vmlinuz-linux ro root=UUID=98e2ab9a-1b0f-4b88-8fe7-9abf238cfa3f iwlwifi.fw_monitor=1 initrd=\initramfs-linux.img
    [Seg Dez 8 13:04:24 2014] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [Seg Dez 8 13:04:24 2014] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [Seg Dez 8 13:04:24 2014] AGP: Checking aperture...
    [Seg Dez 8 13:04:24 2014] AGP: No AGP bridge found
    [Seg Dez 8 13:04:24 2014] Calgary: detecting Calgary via BIOS EBDA area
    [Seg Dez 8 13:04:24 2014] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [Seg Dez 8 13:04:24 2014] Memory: 7995804K/8298776K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 302972K reserved)
    [Seg Dez 8 13:04:24 2014] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [Seg Dez 8 13:04:24 2014] Preemptible hierarchical RCU implementation.
    [Seg Dez 8 13:04:24 2014] RCU dyntick-idle grace-period acceleration is enabled.
    [Seg Dez 8 13:04:24 2014] Dump stacks of tasks blocking RCU-preempt GP.
    [Seg Dez 8 13:04:24 2014] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [Seg Dez 8 13:04:24 2014] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [Seg Dez 8 13:04:24 2014] NR_IRQS:8448 nr_irqs:760 0
    [Seg Dez 8 13:04:24 2014] Console: colour dummy device 80x25
    [Seg Dez 8 13:04:24 2014] console [tty0] enabled
    [Seg Dez 8 13:04:24 2014] allocated 33554432 bytes of page_cgroup
    [Seg Dez 8 13:04:24 2014] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [Seg Dez 8 13:04:24 2014] hpet clockevent registered
    [Seg Dez 8 13:04:24 2014] tsc: Fast TSC calibration failed
    [Seg Dez 8 13:04:24 2014] tsc: PIT calibration matches HPET. 1 loops
    [Seg Dez 8 13:04:24 2014] tsc: Detected 2394.449 MHz processor
    [Seg Dez 8 13:04:24 2014] Calibrating delay loop (skipped), value calculated using timer frequency.. 4790.43 BogoMIPS (lpj=7981496)
    [Seg Dez 8 13:04:24 2014] pid_max: default: 32768 minimum: 301
    [Seg Dez 8 13:04:24 2014] ACPI: Core revision 20140724
    [Seg Dez 8 13:04:24 2014] ACPI: All ACPI Tables successfully acquired
    [Seg Dez 8 13:04:24 2014] Security Framework initialized
    [Seg Dez 8 13:04:24 2014] Yama: becoming mindful.
    [Seg Dez 8 13:04:24 2014] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [Seg Dez 8 13:04:24 2014] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [Seg Dez 8 13:04:24 2014] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [Seg Dez 8 13:04:24 2014] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys memory
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys devices
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys freezer
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys net_cls
    [Seg Dez 8 13:04:24 2014] Initializing cgroup subsys blkio
    [Seg Dez 8 13:04:24 2014] CPU: Physical Processor ID: 0
    [Seg Dez 8 13:04:24 2014] CPU: Processor Core ID: 0
    [Seg Dez 8 13:04:24 2014] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [Seg Dez 8 13:04:24 2014] mce: CPU supports 7 MCE banks
    [Seg Dez 8 13:04:24 2014] CPU0: Thermal monitoring enabled (TM1)
    [Seg Dez 8 13:04:24 2014] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    [Seg Dez 8 13:04:24 2014] Freeing SMP alternatives memory: 20K (ffffffff819fe000 - ffffffff81a03000)
    [Seg Dez 8 13:04:24 2014] ftrace: allocating 20687 entries in 81 pages
    [Seg Dez 8 13:04:24 2014] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [Seg Dez 8 13:04:24 2014] smpboot: CPU0: Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz (fam: 06, model: 45, stepping: 01)
    [Seg Dez 8 13:04:24 2014] TSC deadline timer enabled
    [Seg Dez 8 13:04:24 2014] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [Seg Dez 8 13:04:24 2014] ... version: 3
    [Seg Dez 8 13:04:24 2014] ... bit width: 48
    [Seg Dez 8 13:04:24 2014] ... generic registers: 4
    [Seg Dez 8 13:04:24 2014] ... value mask: 0000ffffffffffff
    [Seg Dez 8 13:04:24 2014] ... max period: 0000ffffffffffff
    [Seg Dez 8 13:04:24 2014] ... fixed-purpose events: 3
    [Seg Dez 8 13:04:24 2014] ... event mask: 000000070000000f
    [Seg Dez 8 13:04:24 2014] x86: Booting SMP configuration:
    [Seg Dez 8 13:04:24 2014] .... node #0, CPUs: #1
    [Seg Dez 8 13:04:24 2014] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [Seg Dez 8 13:04:24 2014] #2 #3
    [Seg Dez 8 13:04:24 2014] x86: Booted up 1 node, 4 CPUs
    [Seg Dez 8 13:04:24 2014] smpboot: Total of 4 processors activated (19163.74 BogoMIPS)
    [Seg Dez 8 13:04:24 2014] devtmpfs: initialized
    [Seg Dez 8 13:04:24 2014] PM: Registering ACPI NVS region [mem 0x9cebf000-0x9cfbefff] (1048576 bytes)
    [Seg Dez 8 13:04:24 2014] pinctrl core: initialized pinctrl subsystem
    [Seg Dez 8 13:04:24 2014] RTC time: 15:04:24, date: 12/08/14
    [Seg Dez 8 13:04:24 2014] NET: Registered protocol family 16
    [Seg Dez 8 13:04:24 2014] cpuidle: using governor ladder
    [Seg Dez 8 13:04:24 2014] cpuidle: using governor menu
    [Seg Dez 8 13:04:24 2014] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [Seg Dez 8 13:04:24 2014] ACPI: bus type PCI registered
    [Seg Dez 8 13:04:24 2014] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [Seg Dez 8 13:04:24 2014] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [Seg Dez 8 13:04:24 2014] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [Seg Dez 8 13:04:24 2014] PCI: Using configuration type 1 for base access
    [Seg Dez 8 13:04:24 2014] ACPI: Added _OSI(Module Device)
    [Seg Dez 8 13:04:24 2014] ACPI: Added _OSI(Processor Device)
    [Seg Dez 8 13:04:24 2014] ACPI: Added _OSI(3.0 _SCP Extensions)
    [Seg Dez 8 13:04:24 2014] ACPI: Added _OSI(Processor Aggregator Device)
    [Seg Dez 8 13:04:24 2014] ACPI: Executed 1 blocks of module-level executable AML code
    [Seg Dez 8 13:04:24 2014] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [Seg Dez 8 13:04:24 2014] ACPI: Dynamic OEM Table Load:
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0xFFFF880253590800 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20121220)
    [Seg Dez 8 13:04:24 2014] ACPI: Dynamic OEM Table Load:
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0xFFFF880253589000 0005AA (v01 PmRef ApIst 00003000 INTL 20121220)
    [Seg Dez 8 13:04:24 2014] ACPI: Dynamic OEM Table Load:
    [Seg Dez 8 13:04:24 2014] ACPI: SSDT 0xFFFF88025355EA00 000119 (v01 PmRef ApCst 00003000 INTL 20121220)
    [Seg Dez 8 13:04:24 2014] ACPI: Interpreter enabled
    [Seg Dez 8 13:04:24 2014] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    [Seg Dez 8 13:04:24 2014] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    [Seg Dez 8 13:04:24 2014] ACPI: (supports S0 S3 S4 S5)
    [Seg Dez 8 13:04:24 2014] ACPI: Using IOAPIC for interrupt routing
    [Seg Dez 8 13:04:24 2014] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [Seg Dez 8 13:04:24 2014] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [Seg Dez 8 13:04:24 2014] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
    [Seg Dez 8 13:04:24 2014] PCI host bridge to bus 0000:00
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [bus 00-fe]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [Seg Dez 8 13:04:24 2014] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [Seg Dez 8 13:04:24 2014] pci 0000:00:02.0: reg 0x10: [mem 0xb0000000-0xb03fffff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [Seg Dez 8 13:04:24 2014] pci 0000:00:03.0: reg 0x10: [mem 0xb0518000-0xb051bfff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:04.0: [8086:0a03] type 00 class 0x118000
    [Seg Dez 8 13:04:24 2014] pci 0000:00:04.0: reg 0x10: [mem 0xb0510000-0xb0517fff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [Seg Dez 8 13:04:24 2014] pci 0000:00:14.0: reg 0x10: [mem 0xb0500000-0xb050ffff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [Seg Dez 8 13:04:24 2014] pci 0000:00:14.0: System wakeup disabled by ACPI
    [Seg Dez 8 13:04:24 2014] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [Seg Dez 8 13:04:24 2014] pci 0000:00:16.0: reg 0x10: [mem 0xb0520000-0xb052001f 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1b.0: reg 0x10: [mem 0xb051c000-0xb051ffff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1d.0: reg 0x10: [mem 0xb0524000-0xb05243ff]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: reg 0x10: [io 0x3088-0x308f]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: reg 0x14: [io 0x3094-0x3097]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: reg 0x18: [io 0x3080-0x3087]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: reg 0x1c: [io 0x3090-0x3093]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: reg 0x24: [mem 0xb0523000-0xb05237ff]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.2: PME# supported from D3hot
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.3: reg 0x10: [mem 0xb0521000-0xb05210ff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.3: reg 0x20: [io 0x3040-0x305f]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.6: [8086:9c24] type 00 class 0x118000
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1f.6: reg 0x10: [mem 0xb0522000-0xb0522fff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:01:00.0: [8086:08b2] type 00 class 0x028000
    [Seg Dez 8 13:04:24 2014] pci 0000:01:00.0: reg 0x10: [mem 0xb0400000-0xb0401fff 64bit]
    [Seg Dez 8 13:04:24 2014] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [Seg Dez 8 13:04:24 2014] pci 0000:01:00.0: System wakeup disabled by ACPI
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb04fffff]
    [Seg Dez 8 13:04:24 2014] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [Seg Dez 8 13:04:24 2014] ACPI: Enabled 5 GPEs in block 00 to 7F
    [Seg Dez 8 13:04:24 2014] ACPI : EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    [Seg Dez 8 13:04:24 2014] vgaarb: setting as boot device: PCI:0000:00:02.0
    [Seg Dez 8 13:04:24 2014] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [Seg Dez 8 13:04:24 2014] vgaarb: loaded
    [Seg Dez 8 13:04:24 2014] vgaarb: bridge control possible 0000:00:02.0
    [Seg Dez 8 13:04:24 2014] PCI: Using ACPI for IRQ routing
    [Seg Dez 8 13:04:24 2014] PCI: pci_cache_line_size set to 64 bytes
    [Seg Dez 8 13:04:24 2014] e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
    [Seg Dez 8 13:04:24 2014] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    [Seg Dez 8 13:04:24 2014] e820: reserve RAM buffer [mem 0x91f5d018-0x93ffffff]
    [Seg Dez 8 13:04:24 2014] e820: reserve RAM buffer [mem 0x93020000-0x93ffffff]
    [Seg Dez 8 13:04:24 2014] e820: reserve RAM buffer [mem 0x9c6bf000-0x9fffffff]
    [Seg Dez 8 13:04:24 2014] e820: reserve RAM buffer [mem 0x9d000000-0x9fffffff]
    [Seg Dez 8 13:04:24 2014] e820: reserve RAM buffer [mem 0x25f600000-0x25fffffff]
    [Seg Dez 8 13:04:24 2014] NetLabel: Initializing
    [Seg Dez 8 13:04:24 2014] NetLabel: domain hash size = 128
    [Seg Dez 8 13:04:24 2014] NetLabel: protocols = UNLABELED CIPSOv4
    [Seg Dez 8 13:04:24 2014] NetLabel: unlabeled traffic allowed by default
    [Seg Dez 8 13:04:24 2014] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [Seg Dez 8 13:04:24 2014] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [Seg Dez 8 13:04:24 2014] Switched to clocksource hpet
    [Seg Dez 8 13:04:24 2014] pnp: PnP ACPI init
    [Seg Dez 8 13:04:24 2014] system 00:00: [io 0x0680-0x069f] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:00: [io 0xffff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:00: [io 0xffff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:00: [io 0xffff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:00: [io 0x1800-0x18fe] could not be reserved
    [Seg Dez 8 13:04:24 2014] system 00:00: [io 0x164e-0x164f] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [Seg Dez 8 13:04:24 2014] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
    [Seg Dez 8 13:04:24 2014] system 00:02: [io 0x1854-0x1857] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [Seg Dez 8 13:04:24 2014] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    [Seg Dez 8 13:04:24 2014] pnp 00:04: Plug and Play ACPI device, IDs SYN2b2c SYN2b00 SYN0002 PNP0f13 (active)
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0x9fa20000-0x9fa20fff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: [mem 0x9fa10000-0x9fa1ffff] has been reserved
    [Seg Dez 8 13:04:24 2014] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [Seg Dez 8 13:04:24 2014] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [Seg Dez 8 13:04:24 2014] pnp: PnP ACPI: found 7 devices
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [Seg Dez 8 13:04:24 2014] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb04fffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:00: resource 15 [mem 0x9fa00000-0xfeafffff]
    [Seg Dez 8 13:04:24 2014] pci_bus 0000:01: resource 1 [mem 0xb0400000-0xb04fffff]
    [Seg Dez 8 13:04:24 2014] NET: Registered protocol family 2
    [Seg Dez 8 13:04:24 2014] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [Seg Dez 8 13:04:24 2014] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [Seg Dez 8 13:04:24 2014] TCP: Hash tables configured (established 65536 bind 65536)
    [Seg Dez 8 13:04:24 2014] TCP: reno registered
    [Seg Dez 8 13:04:24 2014] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [Seg Dez 8 13:04:24 2014] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [Seg Dez 8 13:04:24 2014] NET: Registered protocol family 1
    [Seg Dez 8 13:04:24 2014] pci 0000:00:02.0: Video device with shadowed ROM
    [Seg Dez 8 13:04:24 2014] PCI: CLS 64 bytes, default 64
    [Seg Dez 8 13:04:24 2014] Unpacking initramfs...
    [Seg Dez 8 13:04:24 2014] Freeing initrd memory: 4120K (ffff88007fbfa000 - ffff880080000000)
    [Seg Dez 8 13:04:24 2014] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [Seg Dez 8 13:04:24 2014] software IO TLB [mem 0x8d430000-0x91430000] (64MB) mapped at [ffff88008d430000-ffff88009142ffff]
    [Seg Dez 8 13:04:24 2014] Simple Boot Flag at 0x44 set to 0x1
    [Seg Dez 8 13:04:24 2014] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [Seg Dez 8 13:04:24 2014] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x17
    [Seg Dez 8 13:04:24 2014] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x17
    [Seg Dez 8 13:04:24 2014] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x17
    [Seg Dez 8 13:04:24 2014] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x17
    [Seg Dez 8 13:04:24 2014] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [Seg Dez 8 13:04:24 2014] Scanning for low memory corruption every 60 seconds
    [Seg Dez 8 13:04:24 2014] futex hash table entries: 2048 (order: 5, 131072 bytes)
    [Seg Dez 8 13:04:24 2014] Initialise system trusted keyring
    [Seg Dez 8 13:04:24 2014] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [Seg Dez 8 13:04:24 2014] zpool: loaded
    [Seg Dez 8 13:04:24 2014] zbud: loaded
    [Seg Dez 8 13:04:24 2014] VFS: Disk quotas dquot_6.5.2
    [Seg Dez 8 13:04:24 2014] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [Seg Dez 8 13:04:24 2014] msgmni has been set to 15798
    [Seg Dez 8 13:04:24 2014] Key type big_key registered
    [Seg Dez 8 13:04:24 2014] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [Seg Dez 8 13:04:24 2014] io scheduler noop registered
    [Seg Dez 8 13:04:24 2014] io scheduler deadline registered
    [Seg Dez 8 13:04:24 2014] io scheduler cfq registered (default)
    [Seg Dez 8 13:04:24 2014] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [Seg Dez 8 13:04:24 2014] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [Seg Dez 8 13:04:24 2014] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [Seg Dez 8 13:04:24 2014] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [Seg Dez 8 13:04:24 2014] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [Seg Dez 8 13:04:24 2014] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [Seg Dez 8 13:04:24 2014] efifb: probing for efifb
    [Seg Dez 8 13:04:24 2014] efifb: framebuffer at 0xa0000000, mapped to 0xffffc90010f00000, using 22500k, total 22500k
    [Seg Dez 8 13:04:24 2014] efifb: mode is 3200x1800x32, linelength=12800, pages=1
    [Seg Dez 8 13:04:24 2014] efifb: scrolling: redraw
    [Seg Dez 8 13:04:24 2014] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [Seg Dez 8 13:04:24 2014] Console: switching to colour frame buffer device 400x112
    [Seg Dez 8 13:04:24 2014] fb0: EFI VGA frame buffer device
    [Seg Dez 8 13:04:24 2014] intel_idle: MWAIT substates: 0x11142120
    [Seg Dez 8 13:04:24 2014] intel_idle: v0.4 model 0x45
    [Seg Dez 8 13:04:24 2014] intel_idle: lapic_timer_reliable_states 0xffffffff
    [Seg Dez 8 13:04:24 2014] GHES: HEST is not enabled!
    [Seg Dez 8 13:04:24 2014] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [Seg Dez 8 13:04:24 2014] Linux agpgart interface v0.103
    [Seg Dez 8 13:04:24 2014] rtc_cmos 00:01: RTC can wake from S4
    [Seg Dez 8 13:04:24 2014] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
    [Seg Dez 8 13:04:24 2014] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
    [Seg Dez 8 13:04:24 2014] Intel P-state driver initializing.
    [Seg Dez 8 13:04:24 2014] ledtrig-cpu: registered to indicate activity on CPUs
    [Seg Dez 8 13:04:24 2014] TCP: cubic registered
    [Seg Dez 8 13:04:24 2014] NET: Registered protocol family 10
    [Seg Dez 8 13:04:24 2014] NET: Registered protocol family 17
    [Seg Dez 8 13:04:24 2014] Loading compiled-in X.509 certificates
    [Seg Dez 8 13:04:24 2014] registered taskstats version 1
    [Seg Dez 8 13:04:24 2014] Magic number: 10:740:82
    [Seg Dez 8 13:04:24 2014] rtc_cmos 00:01: setting system clock to 2014-12-08 15:04:24 UTC (1418051064)
    [Seg Dez 8 13:04:24 2014] PM: Hibernation image not present or could not be loaded.
    [Seg Dez 8 13:04:24 2014] Freeing unused kernel memory: 1136K (ffffffff818e2000 - ffffffff819fe000)
    [Seg Dez 8 13:04:24 2014] Write protecting the kernel read-only data: 8192k
    [Seg Dez 8 13:04:24 2014] Freeing unused kernel memory: 748K (ffff880001545000 - ffff880001600000)
    [Seg Dez 8 13:04:24 2014] Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    [Seg Dez 8 13:04:24 2014] random: systemd-tmpfile urandom read with 4 bits of entropy available
    [Seg Dez 8 13:04:24 2014] [drm] Initialized drm 1.1.0 20060810
    [Seg Dez 8 13:04:24 2014] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
    [Seg Dez 8 13:04:24 2014] ACPI: Lid Switch [LID0]
    [Seg Dez 8 13:04:24 2014] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    [Seg Dez 8 13:04:24 2014] ACPI: Power Button [PWRB]
    [Seg Dez 8 13:04:24 2014] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [Seg Dez 8 13:04:24 2014] ACPI: Power Button [PWRF]
    [Seg Dez 8 13:04:24 2014] [drm] Memory usable by graphics device = 2048M
    [Seg Dez 8 13:04:24 2014] checking generic (a0000000 15f9000) vs hw (a0000000 10000000)
    [Seg Dez 8 13:04:24 2014] fb: switching to inteldrmfb from EFI VGA
    [Seg Dez 8 13:04:24 2014] Console: switching to colour dummy device 80x25
    [Seg Dez 8 13:04:24 2014] [drm] Replacing VGA console driver
    [Seg Dez 8 13:04:24 2014] i915 0000:00:02.0: irq 41 for MSI/MSI-X
    [Seg Dez 8 13:04:24 2014] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [Seg Dez 8 13:04:24 2014] [drm] Driver supports precise vblank timestamp query.
    [Seg Dez 8 13:04:24 2014] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [Seg Dez 8 13:04:24 2014] [drm] VBT doesn't support DRRS
    [Seg Dez 8 13:04:24 2014] fbcon: inteldrmfb (fb0) is primary device
    [Seg Dez 8 13:04:25 2014] tsc: Refined TSC clocksource calibration: 2394.456 MHz
    [Seg Dez 8 13:04:25 2014] Console: switching to colour frame buffer device 400x112
    [Seg Dez 8 13:04:25 2014] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [Seg Dez 8 13:04:25 2014] i915 0000:00:02.0: registered panic notifier
    [Seg Dez 8 13:04:25 2014] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [Seg Dez 8 13:04:25 2014] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
    [Seg Dez 8 13:04:25 2014] [drm] Initialized i915 1.6.0 20140725 for 0000:00:02.0 on minor 0
    [Seg Dez 8 13:04:25 2014] sdhci: Secure Digital Host Controller Interface driver
    [Seg Dez 8 13:04:25 2014] sdhci: Copyright(c) Pierre Ossman
    [Seg Dez 8 13:04:25 2014] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [Seg Dez 8 13:04:25 2014] ACPI: bus type USB registered
    [Seg Dez 8 13:04:25 2014] usbcore: registered new interface driver usbfs
    [Seg Dez 8 13:04:25 2014] usbcore: registered new interface driver hub
    [Seg Dez 8 13:04:25 2014] SCSI subsystem initialized
    [Seg Dez 8 13:04:25 2014] usbcore: registered new device driver usb
    [Seg Dez 8 13:04:25 2014] serio: i8042 KBD port at 0x60,0x64 irq 1
    [Seg Dez 8 13:04:25 2014] serio: i8042 AUX port at 0x60,0x64 irq 12
    [Seg Dez 8 13:04:25 2014] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [Seg Dez 8 13:04:25 2014] ehci-pci: EHCI PCI platform driver
    [Seg Dez 8 13:04:25 2014] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [Seg Dez 8 13:04:25 2014] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
    [Seg Dez 8 13:04:25 2014] ehci-pci 0000:00:1d.0: debug port 2
    [Seg Dez 8 13:04:25 2014] libata version 3.00 loaded.
    [Seg Dez 8 13:04:25 2014] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [Seg Dez 8 13:04:25 2014] ehci-pci 0000:00:1d.0: irq 23, io mem 0xb0524000
    [Seg Dez 8 13:04:25 2014] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [Seg Dez 8 13:04:25 2014] hub 1-0:1.0: USB hub found
    [Seg Dez 8 13:04:25 2014] hub 1-0:1.0: 2 ports detected
    [Seg Dez 8 13:04:25 2014] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [Seg Dez 8 13:04:25 2014] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [Seg Dez 8 13:04:25 2014] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [Seg Dez 8 13:04:25 2014] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
    [Seg Dez 8 13:04:25 2014] hub 2-0:1.0: USB hub found
    [Seg Dez 8 13:04:25 2014] hub 2-0:1.0: 9 ports detected
    [Seg Dez 8 13:04:25 2014] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [Seg Dez 8 13:04:25 2014] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [Seg Dez 8 13:04:25 2014] hub 3-0:1.0: USB hub found
    [Seg Dez 8 13:04:25 2014] hub 3-0:1.0: 4 ports detected
    [Seg Dez 8 13:04:25 2014] ahci 0000:00:1f.2: version 3.0
    [Seg Dez 8 13:04:25 2014] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [Seg Dez 8 13:04:25 2014] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
    [Seg Dez 8 13:04:25 2014] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x2 impl SATA mode
    [Seg Dez 8 13:04:25 2014] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst
    [Seg Dez 8 13:04:25 2014] scsi host0: ahci
    [Seg Dez 8 13:04:25 2014] scsi host1: ahci
    [Seg Dez 8 13:04:25 2014] ata1: DUMMY
    [Seg Dez 8 13:04:25 2014] ata2: SATA max UDMA/133 abar m2048@0xb0523000 port 0xb0523180 irq 43
    [Seg Dez 8 13:04:26 2014] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [Seg Dez 8 13:04:26 2014] ata2.00: ACPI cmd ef/10:09:00:00:00:b0 (SET FEATURES) succeeded
    [Seg Dez 8 13:04:26 2014] ata2.00: failed to get NCQ Send/Recv Log Emask 0x1
    [Seg Dez 8 13:04:26 2014] ata2.00: ATA-9: SAMSUNG MZMTD256HAGM-000L1, DXT43L0Q, max UDMA/133
    [Seg Dez 8 13:04:26 2014] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [Seg Dez 8 13:04:26 2014] ata2.00: ACPI cmd ef/10:09:00:00:00:b0 (SET FEATURES) succeeded
    [Seg Dez 8 13:04:26 2014] ata2.00: failed to get NCQ Send/Recv Log Emask 0x1
    [Seg Dez 8 13:04:26 2014] ata2.00: configured for UDMA/133
    [Seg Dez 8 13:04:26 2014] scsi 1:0:0:0: Direct-Access ATA SAMSUNG MZMTD256 3L0Q PQ: 0 ANSI: 5
    [Seg Dez 8 13:04:26 2014] sd 1:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [Seg Dez 8 13:04:26 2014] sd 1:0:0:0: [sda] Write Protect is off
    [Seg Dez 8 13:04:26 2014] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [Seg Dez 8 13:04:26 2014] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [Seg Dez 8 13:04:26 2014] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8
    [Seg Dez 8 13:04:26 2014] sd 1:0:0:0: [sda] Attached SCSI disk
    [Seg Dez 8 13:04:26 2014] usb 2-4: new full-speed USB device number 2 using xhci_hcd
    [Seg Dez 8 13:04:26 2014] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [Seg Dez 8 13:04:26 2014] Switched to clocksource tsc
    [Seg Dez 8 13:04:26 2014] usb 2-6: new full-speed USB device number 3 using xhci_hcd
    [Seg Dez 8 13:04:26 2014] systemd[1]: systemd 217 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN )
    [Seg Dez 8 13:04:26 2014] systemd[1]: Detected architecture 'x86-64'.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Set hostname to <Beteugeuse>.
    [Seg Dez 8 13:04:26 2014] usb 2-6: ep 0x81 - rounding interval to 128 microframes, ep desc says 160 microframes
    [Seg Dez 8 13:04:26 2014] usb 2-6: ep 0x1 - rounding interval to 128 microframes, ep desc says 160 microframes
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Login Prompts.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Reached target Login Prompts.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Remote File Systems.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Reached target Remote File Systems.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Paths.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Reached target Paths.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Encrypted Volumes.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Reached target Encrypted Volumes.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Expecting device dev-sda8.device...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Expecting device dev-sda4.device...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Expecting device dev-sda6.device...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Expecting device dev-sda7.device...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Root Slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Created slice Root Slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting User and Session Slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Created slice User and Session Slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Delayed Shutdown Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on Delayed Shutdown Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Journal Socket (/dev/log).
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on Journal Socket (/dev/log).
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting LVM2 metadata daemon socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on LVM2 metadata daemon socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting udev Kernel Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on udev Kernel Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting udev Control Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on udev Control Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Journal Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Listening on Journal Socket.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting System Slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Created slice System Slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting system-getty.slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Created slice system-getty.slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting File System Check on Root Device...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Mounting Debug File System...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Setup Virtual Console...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Set Up Additional Binary Formats.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Mounting POSIX Message Queue File System...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Load Kernel Modules...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting udev Coldplug all Devices...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Mounting Huge Pages File System...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Journal Service...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Slices.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Reached target Slices.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Mounted POSIX Message Queue File System.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Mounted Debug File System.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Create list of required static device nodes for the current kernel.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Mounted Huge Pages File System.
    [Seg Dez 8 13:04:26 2014] usbip_core: USB/IP Core v1.0.0
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started udev Coldplug all Devices.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started File System Check on Root Device.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Remount Root and Kernel File Systems...
    [Seg Dez 8 13:04:26 2014] EXT4-fs (sda5): re-mounted. Opts: data=ordered,discard
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Remount Root and Kernel File Systems.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started First Boot Wizard.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Rebuild Dynamic Linker Cache.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Create System Users.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Starting Create Static Device Nodes in /dev...
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Rebuild Hardware Database.
    [Seg Dez 8 13:04:26 2014] systemd[1]: Started Journal Service.
    [Seg Dez 8 13:04:26 2014] usb 2-7: new full-speed USB device number 4 using xhci_hcd
    [Seg Dez 8 13:04:26 2014] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [Seg Dez 8 13:04:26 2014] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
    [Seg Dez 8 13:04:26 2014] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [Seg Dez 8 13:04:26 2014] snd_hda_intel 0000:00:03.0: irq 46 for MSI/MSI-X
    [Seg Dez 8 13:04:26 2014] sound hdaudioC1D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [Seg Dez 8 13:04:26 2014] sound hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [Seg Dez 8 13:04:26 2014] sound hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    [Seg Dez 8 13:04:26 2014] sound hdaudioC1D0: mono: mono_out=0x0
    [Seg Dez 8 13:04:26 2014] sound hdaudioC1D0: inputs:
    [Seg Dez 8 13:04:26 2014] sound hdaudioC1D0: Mic=0x19
    [Seg Dez 8 13:04:26 2014] sound hdaudioC1D0: Internal Mic=0x12
    [Seg Dez 8 13:04:26 2014] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input7
    [Seg Dez 8 13:04:26 2014] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input8
    [Seg Dez 8 13:04:26 2014] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
    [Seg Dez 8 13:04:26 2014] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/hdaudioC1D0/input6
    [Seg Dez 8 13:04:26 2014] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
    [Seg Dez 8 13:04:26 2014] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
    [Seg Dez 8 13:04:26 2014] ACPI: AC Adapter [ADP1] (on-line)
    [Seg Dez 8 13:04:26 2014] hidraw: raw HID events driver (C) Jiri Kosina
    [Seg Dez 8 13:04:26 2014] input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input12
    [Seg Dez 8 13:04:26 2014] ACPI Warning: SystemIO range 0x0000000000003040-0x000000000000305f conflicts with OpRegion 0x0000000000003040-0x000000000000304f (\_SB_.PCI0.SBUS.SMBI) (20140724/utaddress-258)
    [Seg Dez 8 13:04:26 2014] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [Seg Dez 8 13:04:26 2014] input: PC Speaker as /devices/platform/pcspkr/input/input13
    [Seg Dez 8 13:04:26 2014] cfg80211: Calling CRDA to update world regulatory domain
    [Seg Dez 8 13:04:26 2014] ACPI: Battery Slot [BAT1] (battery present)
    [Seg Dez 8 13:04:26 2014] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [Seg Dez 8 13:04:26 2014] Copyright(c) 2003- 2014 Intel Corporation
    [Seg Dez 8 13:04:26 2014] iwlwifi 0000:01:00.0: irq 47 for MSI/MSI-X
    [Seg Dez 8 13:04:26 2014] thermal LNXTHERM:00: registered as thermal_zone0
    [Seg Dez 8 13:04:26 2014] ACPI: Thermal Zone [TZ01] (56 C)
    [Seg Dez 8 13:04:26 2014] iwlwifi 0000:01:00.0: loaded firmware version 23.10.10.0 op_mode iwlmvm
    [Seg Dez 8 13:04:26 2014] AVX2 version of gcm_enc/dec engaged.
    [Seg Dez 8 13:04:26 2014] random: nonblocking pool is initialized
    [Seg Dez 8 13:04:26 2014] usb 2-7: ep 0x2 - rounding interval to 64 microframes, ep desc says 80 microframes
    [Seg Dez 8 13:04:26 2014] iwlwifi 0000:01:00.0: Detected Intel(R) Wireless N 7260, REV=0x144
    [Seg Dez 8 13:04:26 2014] iwlwifi 0000:01:00.0: L1 Disabled - LTR Enabled
    [Seg Dez 8 13:04:26 2014] iwlwifi 0000:01:00.0: L1 Disabled - LTR Enabled
    [Seg Dez 8 13:04:26 2014] iwlwifi 0000:01:00.0: Allocated 0x00400000 bytes (order 10) for firmware monitor.
    [Seg Dez 8 13:04:27 2014] EXT4-fs (sda4): mounting ext2 file system using the ext4 subsystem
    [Seg Dez 8 13:04:27 2014] EXT4-fs (sda4): mounted filesystem without journal. Opts: (null)
    [Seg Dez 8 13:04:27 2014] Adding 8500544k swap on /dev/sda8. Priority:-1 extents:1 across:8500544k SSFS
    [Seg Dez 8 13:04:27 2014] iTCO_vendor_support: vendor-support=0
    [Seg Dez 8 13:04:27 2014] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [Seg Dez 8 13:04:27 2014] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [Seg Dez 8 13:04:27 2014] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [Seg Dez 8 13:04:27 2014] intel_rapl: Found RAPL domain package
    [Seg Dez 8 13:04:27 2014] intel_rapl: Found RAPL domain core
    [Seg Dez 8 13:04:27 2014] intel_rapl: Found RAPL domain uncore
    [Seg Dez 8 13:04:27 2014] intel_rapl: Found RAPL domain dram
    [Seg Dez 8 13:04:27 2014] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: data=ordered,discard
    [Seg Dez 8 13:04:27 2014] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: data=ordered,discard
    [Seg Dez 8 13:04:27 2014] usb 2-8: new high-speed USB device number 5 using xhci_hcd
    [Seg Dez 8 13:04:27 2014] systemd-journald[139]: Received request to flush runtime journal from PID 1
    [Seg Dez 8 13:04:27 2014] usbcore: registered new device driver usbip-host
    [Seg Dez 8 13:04:27 2014] usbip_host: USB/IP Host Driver v1.0.0
    [Seg Dez 8 13:04:27 2014] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
    [Seg Dez 8 13:04:27 2014] iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
    [Seg Dez 8 13:04:27 2014] vboxdrv: Found 4 processor cores.
    [Seg Dez 8 13:04:27 2014] vboxdrv: fAsync=0 offMin=0xea offMax=0x156f
    [Seg Dez 8 13:04:27 2014] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [Seg Dez 8 13:04:27 2014] vboxdrv: Successfully loaded version 4.3.20_OSE (interface 0x001a0008).
    [Seg Dez 8 13:04:27 2014] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [Seg Dez 8 13:04:27 2014] Bluetooth: Core ver 2.19
    [Seg Dez 8 13:04:27 2014] NET: Registered protocol family 31
    [Seg Dez 8 13:04:27 2014] Bluetooth: HCI device and connection

  • Possible to have multiple views for one scene?

    Away3D allows multiple Views to be created for one Scene, allowing different camera positions for the same geometry.
    Can Proscenium support this? I've been banging my head against a brick wall for a while now...
    Joe

    Hi Kopaacabana,
    (I  feel like I'm in one of those post-apocalyptic scenes where the last two humans left on earth finally meet.....)
    Thanks for answering!
    Yes, I've actually got two cameras quite happily working in the scene, the problem is that I need to re-use the geometry for the scene in two windows, or at least, two separate parts of one window simultaneously. Away3D can do it very easily, where one sets up a 'View', which has a 'Scene' it views. With Proscenium it seems that the whole thing is tied up with an Instance3D, which is fine for one camera, but the scene nodes seem tied up as children of some root scene node. I've tried assigning the scene data as a child of two instances of BasicScene (hacking the stage3ds[number] to be different for each), but that causes an exception.
    Just changing the activeCamera changes the view to the new camera, where I actually need to be able to render to two windows/screen areas from one set of geometry.
    I would have hoped that the paradigm would have been 'here is some geometry, lights, etc., now do with it what you will'
    Adobe, are you there to help us out, like, anyone at all? Are we wasting our time with this?
    Joe

  • Format.dat parameters for a LaCie d2 250GB USB disk

    When attemting to format a LaCie d2 250GB USB disk on a Sparc Solaris 9 system, autoconfigure for disk type fails. Does anybody have the drive geometry for this disk that I can put in format.dat? http://www.lacie.com has info relating to only M$ or Mac systems but nothing relating to no. of cylinders/heads/sectors etc.
    Thanks much in advance
    Regards
    SK

    I have got a 1 TB LaCie d2 Quadra Hard Disk with FireWire 800 and 400, USB 2.0 and eSATA.
    You can get rid of the preinstalled software, but what I recommend you to do is to download the LaCie Firmware Updater to update the external drive firmware to the most recent version > http://www.lacie.com/us/support/drivers/driver.htm?id=10250
    Then, nothing else to do. If you are going to use your external drive only with Macs, format it in "Mac OS Extended (Journaled)", so you can use it to store files or to make backups of your files

  • LRS Geometry into a JGeometry Object

    Hello,
    How can I put an LRS Geometry for example:
    SDO_GEOMETRY(3302, 262148, NULL,
    MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),
    MDSYS.SDO_ORDINATE_ARRAY(5,10,0, 20,5,NULL, 35,10,NULL, 55,10,100))
    into a JGeometry object??
    I tried the following:
    JGeometry lo_geo = null;
    int li_gtype = 3302;
    int li_srid = 262148;
    int[] la_elementInfo = { 1,2,1 };
    double[] la_ordinates = { 5,10, 0,20,5,null,35,10,null,55,10,100 };
    lo_geo = new JGeometry( li_gtype, li_srid, la_elementInfo, la_ordinates );
    First of all I cannot compile the code because of course
    the types are incompatible. What else can I do that the JGeometry object recognizes NULL in that position?
    Thank you for your help

    Hi
    You will have to do the following:
    SDO_LRS.GET_MEASURE( SDO_LRS.PROJECT_PT(....
    see the example in the user manaual: http://download.oracle.com/docs/html/B14255_01/sdo_lrs_ref.htm#sthref1933
    This will get you the measure of the project point (even it is on the line) on the line and pass that into to split procedure.
    Luc

  • Center Points for Mapping - MOTN3

    I am sending a camera down a polka dot road to end up revealing text.
    I can keyframe the camera but i can tell that i am not on center. I have to keyframe soft rotaion as the camera is going around a curve. So i am just having a ball spending 1hr on 3 keyframes.
    So is there a way to connect the center points of the circles to form the path points. This way all i would have to do

    Preditor wrote:
    So is there a way to connect the center points of the circles to form the path points. This way all i would have to do is key the rotation.
    If I understand your question correctly, then yes. You can use the replicator to create your polka dot path.
    Use the shape tool to create an open bezier path that will serve as your polka dot road.
    Create a circle and replicate it. Use Geometry for the replicator shape and drag the shape path into the well.
    Then create your camera and apply the Motion Path behavior to it. Change the path shape to Geometry and use the same shape path for the camera animation.
    Andy

  • Arch64 RAM issues [Solved]

    So I thought everything was fine until an application told me I had 4gb of RAM which is a far cry from the installed 16gb.
    I did plenty of digging around and narrowed it down to a couple possibilities, but first my investigation:
    I started with free:
    [vuvffufg@HereAndNow-Main ~]$ free
    total used free shared buff/cache available
    Mem: 4015688 858084 115144 24832 3042460 2860360
    Swap: 16777212 22460 16754752
    As you can see it shows their is 4gb of RAM much as the application did.
    You can see I have 16gb of swap; I am aware and am not confusing swap with RAM, I damn well have 4x4gb sticks according to the memtest86+ option on boot.
    So then I thought hardware and tried dmidecode --type memory:
    [vuvffufg@HereAndNow-Main ~]$ sudo dmidecode --type memory
    [sudo] password for vuvffufg:
    # dmidecode 2.12
    SMBIOS 2.7 present.
    Handle 0x0008, DMI type 5, 24 bytes
    Memory Controller Information
    Error Detecting Method: 64-bit ECC
    Error Correcting Capabilities:
    None
    Supported Interleave: One-way Interleave
    Current Interleave: One-way Interleave
    Maximum Memory Module Size: 2048 MB
    Maximum Total Memory Size: 8192 MB
    Supported Speeds:
    70 ns
    60 ns
    Supported Memory Types:
    DIMM
    SDRAM
    Memory Module Voltage: 3.3 V
    Associated Memory Slots: 4
    0x0009
    0x000A
    0x000B
    0x000C
    Enabled Error Correcting Capabilities:
    None
    Handle 0x0009, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM0
    Bank Connections: 0 1
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x000A, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM1
    Bank Connections: 2 3
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x000B, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM2
    Bank Connections: 4 5
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x000C, DMI type 6, 12 bytes
    Memory Module Information
    Socket Designation: DIMM3
    Bank Connections: 6 7
    Current Speed: 60 ns
    Type: DIMM SDRAM
    Installed Size: 536870912 MB (Single-bank Connection)
    Enabled Size: 536870912 MB (Single-bank Connection)
    Error Status: OK
    Handle 0x002C, DMI type 16, 23 bytes
    Physical Memory Array
    Location: System Board Or Motherboard
    Use: System Memory
    Error Correction Type: None
    Maximum Capacity: 32 GB
    Error Information Handle: Not Provided
    Number Of Devices: 4
    Handle 0x002E, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm0
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: ADADB481
    Asset Tag: Dimm0_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 2
    Configured Clock Speed: 667 MHz
    Handle 0x0030, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm1
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: 00000000
    Asset Tag: Dimm1_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 1
    Configured Clock Speed: 667 MHz
    Handle 0x0032, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm2
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: ADADB473
    Asset Tag: Dimm2_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 2
    Configured Clock Speed: 667 MHz
    Handle 0x0034, DMI type 17, 34 bytes
    Memory Device
    Array Handle: 0x002C
    Error Information Handle: Not Provided
    Total Width: 64 bits
    Data Width: 64 bits
    Size: 4096 MB
    Form Factor: DIMM
    Set: None
    Locator: Node0_Dimm3
    Bank Locator: Node0_Bank0
    Type: DDR3
    Type Detail: Synchronous Unbuffered (Unregistered)
    Speed: 667 MHz
    Manufacturer: Corsair
    Serial Number: 00000000
    Asset Tag: Dimm3_AssetTag
    Part Number: CMZ8GX3M2A160
    Rank: 1
    Configured Clock Speed: 667 MHz
    Found it quite strange that the OS can obviously see the memory it just isn't being allocated, also what is with the slow clock speeds?
    I found a similar output with lshw.
    So I moved on to checking how it is actually initialized in dmesg, and honestly a lot of what was output I don't quite understand, I noticed that some memory was being reserved by the RAM map given by BIOs yet have no obvious way of disabling the BIOs RAM scheduler.
    [vuvffufg@HereAndNow-Main ~]$ dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.19.2-1-ARCH (builduser@tobias) (gcc version 4.9.2 20150304 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Mar 18 16:21:02 CET 2015
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=13722890-9f97-423a-bfec-7c95d6e8174e rw quiet splash iommu=pt
    [ 0.000000] tseg: 00bf800000
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000be857fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000be858000-0x00000000bea2ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bea30000-0x00000000bea39fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bea3a000-0x00000000bee2bfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bee2c000-0x00000000bf159fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf15a000-0x00000000bf15afff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf15b000-0x00000000bf360fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bf361000-0x00000000bf7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec20000-0x00000000fec20fff] 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 0x00000000fef00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000013effffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./990FXA-UD3, BIOS F2 07/15/2013
    [ 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 = 0x13f000 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-CEFFF write-protect
    [ 0.000000] CF000-EBFFF uncachable
    [ 0.000000] EC000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000BF800000 mask FFFFFF800000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000013f000000 aka 5104M
    [ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
    [ 0.000000] e820: update [mem 0xbf800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd810-0x000fd81f] mapped at [ffff8800000fd810]
    [ 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 0x13ee00000-0x13effffff]
    [ 0.000000] [mem 0x13ee00000-0x13effffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x120000000-0x13edfffff]
    [ 0.000000] [mem 0x120000000-0x13edfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100001000-0x11fffffff]
    [ 0.000000] [mem 0x100001000-0x1001fffff] page 4k
    [ 0.000000] [mem 0x100200000-0x11fffffff] page 2M
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbe857fff]
    [ 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-0xbe7fffff] page 2M
    [ 0.000000] [mem 0xbe800000-0xbe857fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbf15a000-0xbf15afff]
    [ 0.000000] [mem 0xbf15a000-0xbf15afff] page 4k
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbf361000-0xbf7fffff]
    [ 0.000000] [mem 0xbf361000-0xbf3fffff] page 4k
    [ 0.000000] [mem 0xbf400000-0xbf7fffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x377f0000-0x37beffff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 0x00000000BEA32070 00005C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000BEA37D20 0000F4 (v04 ALASKA A M I 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 0x00000000BEA32158 005BC1 (v02 ALASKA A M I 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 0x00000000BEE26F80 000040
    [ 0.000000] ACPI: APIC 0x00000000BEA37E18 00009E (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000BEA37EB8 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 0x00000000BEA37F00 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    [ 0.000000] ACPI: HPET 0x00000000BEA37F40 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000BEA37F78 001714 (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: IVRS 0x00000000BEA39690 0000C8 (v01 AMD RD890S 00202031 AMD 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013effffff]
    [ 0.000000] NODE_DATA(0) allocated [mem 0x13eff9000-0x13effcfff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013a600000-ffff88013e5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13effffff]
    [ 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-0xbe857fff]
    [ 0.000000] node 0: [mem 0xbf15a000-0xbf15afff]
    [ 0.000000] node 0: [mem 0xbf361000-0xbf7fffff]
    [ 0.000000] node 0: [mem 0x100001000-0x13effffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x13effffff]
    [ 0.000000] On node 0 totalpages: 1039508
    [ 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: 12148 pages used for memmap
    [ 0.000000] DMA32 zone: 777464 pages, LIFO batch:31
    [ 0.000000] Normal zone: 4032 pages used for memmap
    [ 0.000000] Normal zone: 258047 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[0x10] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x15] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x17] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec20000] gsi_base[24])
    [ 0.000000] IOAPIC[1]: apic_id 10, version 33, address 0xfec20000, GSI 24-55
    [ 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: 0x43538210 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 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 0xbe858000-0xbea2ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbea30000-0xbea39fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbea3a000-0xbee2bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbee2c000-0xbf159fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf15b000-0xbf360fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec20000-0xfec20fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec21000-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-0xfeefffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xffffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
    [ 0.000000] e820: [mem 0xbf800000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 31 pages/cpu @ffff88013ec00000 s86336 r8192 d32448 u262144
    [ 0.000000] pcpu-alloc: s86336 r8192 d32448 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1023243
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=13722890-9f97-423a-bfec-7c95d6e8174e rw quiet splash iommu=pt
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] AGP: Node 0: aperture [bus addr 0xf8000000-0xfbffffff] (64MB)
    [ 0.000000] Memory: 4009504K/4158032K available (5533K kernel code, 917K rwdata, 1744K rodata, 1164K init, 1156K bss, 148528K reserved, 0K cma-reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [ 0.000000] NR_IRQS:8448 nr_irqs:1032 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 4018.290 MHz processor
    [ 0.000023] Calibrating delay loop (skipped), value calculated using timer frequency.. 8039.43 BogoMIPS (lpj=13394300)
    [ 0.000025] pid_max: default: 32768 minimum: 301
    [ 0.000031] ACPI: Core revision 20141107
    [ 0.002553] ACPI: All ACPI Tables successfully acquired
    [ 0.002750] Security Framework initialized
    [ 0.002758] Yama: becoming mindful.
    [ 0.002999] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.004346] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.004926] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.004931] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.005146] Initializing cgroup subsys memory
    [ 0.005153] Initializing cgroup subsys devices
    [ 0.005155] Initializing cgroup subsys freezer
    [ 0.005158] Initializing cgroup subsys net_cls
    [ 0.005160] Initializing cgroup subsys blkio
    [ 0.005177] CPU: Physical Processor ID: 0
    [ 0.005178] CPU: Processor Core ID: 0
    [ 0.005180] mce: CPU supports 7 MCE banks
    [ 0.005185] LVT offset 1 assigned for vector 0xf9
    [ 0.005190] Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
    [ 0.005254] Freeing SMP alternatives memory: 20K (ffffffff81a0a000 - ffffffff81a0f000)
    [ 0.005835] ftrace: allocating 21170 entries in 83 pages
    [ 0.087004] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.120030] smpboot: CPU0: AMD FX(tm)-8350 Eight-Core Processor (fam: 15, model: 02, stepping: 00)
    [ 0.224266] Performance Events: Fam15h core perfctr, AMD PMU driver.
    [ 0.224270] ... version: 0
    [ 0.224271] ... bit width: 48
    [ 0.224272] ... generic registers: 6
    [ 0.224273] ... value mask: 0000ffffffffffff
    [ 0.224274] ... max period: 00007fffffffffff
    [ 0.224275] ... fixed-purpose events: 0
    [ 0.224276] ... event mask: 000000000000003f
    [ 0.237668] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.244346] x86: Booting SMP configuration:
    [ 0.244347] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
    [ 0.354188] x86: Booted up 1 node, 8 CPUs
    [ 0.354192] smpboot: Total of 8 processors activated (64318.50 BogoMIPS)
    [ 0.364078] devtmpfs: initialized
    [ 0.366485] PM: Registering ACPI NVS region [mem 0xbea3a000-0xbee2bfff] (4136960 bytes)
    [ 0.366531] PM: Registering ACPI NVS region [mem 0xbf15b000-0xbf360fff] (2121728 bytes)
    [ 0.366716] pinctrl core: initialized pinctrl subsystem
    [ 0.366744] RTC time: 18:28:15, date: 04/01/15
    [ 0.366834] NET: Registered protocol family 16
    [ 0.377691] cpuidle: using governor ladder
    [ 0.391032] cpuidle: using governor menu
    [ 0.391080] ACPI: bus type PCI registered
    [ 0.391082] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.391143] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.391146] PCI: not using MMCONFIG
    [ 0.391147] PCI: Using configuration type 1 for base access
    [ 0.391148] PCI: Using configuration type 1 for extended access
    [ 0.391412] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.391413] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.391413] mtrr: corrected configuration.
    [ 0.404756] ACPI: Added _OSI(Module Device)
    [ 0.404758] ACPI: Added _OSI(Processor Device)
    [ 0.404759] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.404760] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.406816] ACPI: Executed 3 blocks of module-level executable AML code
    [ 0.410092] ACPI: Interpreter enabled
    [ 0.410097] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
    [ 0.410100] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
    [ 0.410113] ACPI: (supports S0 S3 S4 S5)
    [ 0.410115] ACPI: Using IOAPIC for interrupt routing
    [ 0.410239] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.410276] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.410593] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.416283] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.416288] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.416292] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    [ 0.416712] PCI host bridge to bus 0000:00
    [ 0.416715] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.416717] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.416718] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.416720] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.416721] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.416723] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.416724] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.416726] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
    [ 0.416735] pci 0000:00:00.0: [1002:5a14] type 00 class 0x060000
    [ 0.416847] pci 0000:00:00.2: [1002:5a23] type 00 class 0x080600
    [ 0.416951] pci 0000:00:02.0: [1002:5a16] type 01 class 0x060400
    [ 0.416985] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.417032] pci 0000:00:02.0: System wakeup disabled by ACPI
    [ 0.417072] pci 0000:00:09.0: [1002:5a1c] type 01 class 0x060400
    [ 0.417104] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    [ 0.417151] pci 0000:00:09.0: System wakeup disabled by ACPI
    [ 0.417185] pci 0000:00:0a.0: [1002:5a1d] type 01 class 0x060400
    [ 0.417217] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.417263] pci 0000:00:0a.0: System wakeup disabled by ACPI
    [ 0.417308] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.417322] pci 0000:00:11.0: reg 0x10: [io 0xf090-0xf097]
    [ 0.417329] pci 0000:00:11.0: reg 0x14: [io 0xf080-0xf083]
    [ 0.417336] pci 0000:00:11.0: reg 0x18: [io 0xf070-0xf077]
    [ 0.417343] pci 0000:00:11.0: reg 0x1c: [io 0xf060-0xf063]
    [ 0.417350] pci 0000:00:11.0: reg 0x20: [io 0xf050-0xf05f]
    [ 0.417357] pci 0000:00:11.0: reg 0x24: [mem 0xfe40b000-0xfe40b3ff]
    [ 0.417461] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.417471] pci 0000:00:12.0: reg 0x10: [mem 0xfe40a000-0xfe40afff]
    [ 0.417556] pci 0000:00:12.0: System wakeup disabled by ACPI
    [ 0.417595] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.417609] pci 0000:00:12.2: reg 0x10: [mem 0xfe409000-0xfe4090ff]
    [ 0.417671] pci 0000:00:12.2: supports D1 D2
    [ 0.417672] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.417721] pci 0000:00:12.2: System wakeup disabled by ACPI
    [ 0.417760] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.417770] pci 0000:00:13.0: reg 0x10: [mem 0xfe408000-0xfe408fff]
    [ 0.417851] pci 0000:00:13.0: System wakeup disabled by ACPI
    [ 0.417891] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.417905] pci 0000:00:13.2: reg 0x10: [mem 0xfe407000-0xfe4070ff]
    [ 0.417966] pci 0000:00:13.2: supports D1 D2
    [ 0.417967] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.418015] pci 0000:00:13.2: System wakeup disabled by ACPI
    [ 0.418053] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.418166] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
    [ 0.418176] pci 0000:00:14.1: reg 0x10: [io 0xf040-0xf047]
    [ 0.418183] pci 0000:00:14.1: reg 0x14: [io 0xf030-0xf033]
    [ 0.418190] pci 0000:00:14.1: reg 0x18: [io 0xf020-0xf027]
    [ 0.418197] pci 0000:00:14.1: reg 0x1c: [io 0xf010-0xf013]
    [ 0.418204] pci 0000:00:14.1: reg 0x20: [io 0xf000-0xf00f]
    [ 0.418219] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    [ 0.418220] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
    [ 0.418221] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    [ 0.418222] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
    [ 0.418300] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.418316] pci 0000:00:14.2: reg 0x10: [mem 0xfe400000-0xfe403fff 64bit]
    [ 0.418365] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.418410] pci 0000:00:14.2: System wakeup disabled by ACPI
    [ 0.418445] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.418561] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.418627] pci 0000:00:14.4: System wakeup disabled by ACPI
    [ 0.418661] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.418671] pci 0000:00:14.5: reg 0x10: [mem 0xfe406000-0xfe406fff]
    [ 0.418754] pci 0000:00:14.5: System wakeup disabled by ACPI
    [ 0.418790] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    [ 0.418800] pci 0000:00:16.0: reg 0x10: [mem 0xfe405000-0xfe405fff]
    [ 0.418883] pci 0000:00:16.0: System wakeup disabled by ACPI
    [ 0.418922] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    [ 0.418936] pci 0000:00:16.2: reg 0x10: [mem 0xfe404000-0xfe4040ff]
    [ 0.418998] pci 0000:00:16.2: supports D1 D2
    [ 0.418999] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    [ 0.419045] pci 0000:00:16.2: System wakeup disabled by ACPI
    [ 0.419083] pci 0000:00:18.0: [1022:1600] type 00 class 0x060000
    [ 0.419160] pci 0000:00:18.1: [1022:1601] type 00 class 0x060000
    [ 0.419231] pci 0000:00:18.2: [1022:1602] type 00 class 0x060000
    [ 0.419304] pci 0000:00:18.3: [1022:1603] type 00 class 0x060000
    [ 0.419379] pci 0000:00:18.4: [1022:1604] type 00 class 0x060000
    [ 0.419451] pci 0000:00:18.5: [1022:1605] type 00 class 0x060000
    [ 0.419570] pci 0000:01:00.0: [10de:0fc1] type 00 class 0x030000
    [ 0.419581] pci 0000:01:00.0: reg 0x10: [mem 0xfd000000-0xfdffffff]
    [ 0.419591] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.419600] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.419607] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.419614] pci 0000:01:00.0: reg 0x30: [mem 0xfe000000-0xfe07ffff pref]
    [ 0.419708] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
    [ 0.419718] pci 0000:01:00.1: reg 0x10: [mem 0xfe080000-0xfe083fff]
    [ 0.424396] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.424400] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.424402] pci 0000:00:02.0: bridge window [mem 0xfd000000-0xfe0fffff]
    [ 0.424406] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.424450] pci 0000:02:00.0: [1106:3483] type 00 class 0x0c0330
    [ 0.424463] pci 0000:02:00.0: reg 0x10: [mem 0xfe300000-0xfe300fff 64bit]
    [ 0.424519] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.431063] pci 0000:00:09.0: PCI bridge to [bus 02]
    [ 0.431067] pci 0000:00:09.0: bridge window [mem 0xfe300000-0xfe3fffff]
    [ 0.431115] pci 0000:03:00.0: [1b4b:9172] type 00 class 0x010601
    [ 0.431125] pci 0000:03:00.0: reg 0x10: [io 0xd040-0xd047]
    [ 0.431131] pci 0000:03:00.0: reg 0x14: [io 0xd030-0xd033]
    [ 0.431137] pci 0000:03:00.0: reg 0x18: [io 0xd020-0xd027]
    [ 0.431143] pci 0000:03:00.0: reg 0x1c: [io 0xd010-0xd013]
    [ 0.431149] pci 0000:03:00.0: reg 0x20: [io 0xd000-0xd00f]
    [ 0.431155] pci 0000:03:00.0: reg 0x24: [mem 0xfe210000-0xfe2101ff]
    [ 0.431161] pci 0000:03:00.0: reg 0x30: [mem 0xfe200000-0xfe20ffff pref]
    [ 0.431194] pci 0000:03:00.0: PME# supported from D3hot
    [ 0.437733] pci 0000:00:0a.0: PCI bridge to [bus 03]
    [ 0.437737] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.437739] pci 0000:00:0a.0: bridge window [mem 0xfe200000-0xfe2fffff]
    [ 0.437784] pci 0000:04:06.0: [10ec:8169] type 00 class 0x020000
    [ 0.437802] pci 0000:04:06.0: reg 0x10: [io 0xc000-0xc0ff]
    [ 0.437812] pci 0000:04:06.0: reg 0x14: [mem 0xfe121000-0xfe1210ff]
    [ 0.437855] pci 0000:04:06.0: reg 0x30: [mem 0xfe100000-0xfe11ffff pref]
    [ 0.437888] pci 0000:04:06.0: supports D1 D2
    [ 0.437889] pci 0000:04:06.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.437947] pci 0000:04:0e.0: [1106:3044] type 00 class 0x0c0010
    [ 0.437965] pci 0000:04:0e.0: reg 0x10: [mem 0xfe120000-0xfe1207ff]
    [ 0.437975] pci 0000:04:0e.0: reg 0x14: [io 0xc100-0xc17f]
    [ 0.438055] pci 0000:04:0e.0: supports D2
    [ 0.438056] pci 0000:04:0e.0: PME# supported from D2 D3hot D3cold
    [ 0.438114] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
    [ 0.438117] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.438120] pci 0000:00:14.4: bridge window [mem 0xfe100000-0xfe1fffff]
    [ 0.438123] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.438125] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.438126] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.438128] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.438129] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.438131] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.438132] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 0.438151] pci_bus 0000:00: on NUMA node 0
    [ 0.438559] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    [ 0.438620] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    [ 0.438682] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    [ 0.438744] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 11 14 15) *0
    [ 0.438794] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 10 11 14 15) *0
    [ 0.438856] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 14 15) *0
    [ 0.438896] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 11 14 15) *0
    [ 0.438935] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 14 15) *0
    [ 0.439110] vgaarb: setting as boot device: PCI:0000:01:00.0
    [ 0.439112] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.439114] vgaarb: loaded
    [ 0.439115] vgaarb: bridge control possible 0000:01:00.0
    [ 0.439189] PCI: Using ACPI for IRQ routing
    [ 0.445486] PCI: pci_cache_line_size set to 64 bytes
    [ 0.445539] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    [ 0.445541] e820: reserve RAM buffer [mem 0xbe858000-0xbfffffff]
    [ 0.445542] e820: reserve RAM buffer [mem 0xbf15b000-0xbfffffff]
    [ 0.445543] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
    [ 0.445544] e820: reserve RAM buffer [mem 0x13f000000-0x13fffffff]
    [ 0.445636] NetLabel: Initializing
    [ 0.445637] NetLabel: domain hash size = 128
    [ 0.445638] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.445647] NetLabel: unlabeled traffic allowed by default
    [ 0.445664] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.445666] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.447711] Switched to clocksource hpet
    [ 0.453281] pnp: PnP ACPI init
    [ 0.453370] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.453373] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.453631] system 00:01: [io 0x040b] has been reserved
    [ 0.453633] system 00:01: [io 0x04d6] has been reserved
    [ 0.453634] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.453636] system 00:01: [io 0x0c14] has been reserved
    [ 0.453638] system 00:01: [io 0x0c50-0x0c51] has been reserved
    [ 0.453639] system 00:01: [io 0x0c52] has been reserved
    [ 0.453641] system 00:01: [io 0x0c6c] has been reserved
    [ 0.453642] system 00:01: [io 0x0c6f] has been reserved
    [ 0.453644] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.453646] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.453647] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.453649] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.453650] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.453652] system 00:01: [io 0x0800-0x089f] could not be reserved
    [ 0.453654] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    [ 0.453655] system 00:01: [io 0x0900-0x090f] has been reserved
    [ 0.453657] system 00:01: [io 0x0910-0x091f] has been reserved
    [ 0.453659] system 00:01: [io 0xfe00-0xfefe] has been reserved
    [ 0.453661] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.453663] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.453665] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.453667] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.453669] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.453671] system 00:01: [mem 0xfed00000-0xfed00fff] could not be reserved
    [ 0.453673] system 00:01: [mem 0xffc00000-0xffffffff] has been reserved
    [ 0.453675] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.453821] system 00:02: [io 0x0220-0x0227] has been reserved
    [ 0.453823] system 00:02: [io 0x0228-0x0237] has been reserved
    [ 0.453825] system 00:02: [io 0x0a20-0x0a2f] has been reserved
    [ 0.453827] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454077] pnp 00:03: [dma 0 disabled]
    [ 0.454116] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.454146] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.454202] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.454205] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454242] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454375] system 00:07: [mem 0xfeb20000-0xfeb23fff] could not be reserved
    [ 0.454377] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454493] system 00:08: [mem 0xfec20000-0xfec200ff] could not be reserved
    [ 0.454495] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.454597] pnp: PnP ACPI: found 9 devices
    [ 0.461181] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.461184] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.461186] pci 0000:00:02.0: bridge window [mem 0xfd000000-0xfe0fffff]
    [ 0.461189] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.461192] pci 0000:00:09.0: PCI bridge to [bus 02]
    [ 0.461194] pci 0000:00:09.0: bridge window [mem 0xfe300000-0xfe3fffff]
    [ 0.461198] pci 0000:00:0a.0: PCI bridge to [bus 03]
    [ 0.461199] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.461202] pci 0000:00:0a.0: bridge window [mem 0xfe200000-0xfe2fffff]
    [ 0.461205] pci 0000:00:14.4: PCI bridge to [bus 04]
    [ 0.461207] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 0.461211] pci 0000:00:14.4: bridge window [mem 0xfe100000-0xfe1fffff]
    [ 0.461217] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.461219] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.461221] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.461222] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.461224] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.461225] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.461227] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.461228] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.461230] pci_bus 0000:01: resource 1 [mem 0xfd000000-0xfe0fffff]
    [ 0.461231] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.461233] pci_bus 0000:02: resource 1 [mem 0xfe300000-0xfe3fffff]
    [ 0.461234] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    [ 0.461236] pci_bus 0000:03: resource 1 [mem 0xfe200000-0xfe2fffff]
    [ 0.461237] pci_bus 0000:04: resource 0 [io 0xc000-0xcfff]
    [ 0.461239] pci_bus 0000:04: resource 1 [mem 0xfe100000-0xfe1fffff]
    [ 0.461240] pci_bus 0000:04: resource 4 [io 0x0000-0x03af]
    [ 0.461241] pci_bus 0000:04: resource 5 [io 0x03e0-0x0cf7]
    [ 0.461243] pci_bus 0000:04: resource 6 [io 0x03b0-0x03df]
    [ 0.461244] pci_bus 0000:04: resource 7 [io 0x0d00-0xffff]
    [ 0.461246] pci_bus 0000:04: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.461247] pci_bus 0000:04: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.461248] pci_bus 0000:04: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.461266] NET: Registered protocol family 2
    [ 0.461445] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.461541] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.461669] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.461704] TCP: reno registered
    [ 0.461711] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.461735] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.461786] NET: Registered protocol family 1
    [ 0.771487] pci 0000:01:00.0: Video device with shadowed ROM
    [ 0.771739] PCI: CLS 64 bytes, default 64
    [ 0.771777] Unpacking initramfs...
    [ 0.818296] Freeing initrd memory: 4096K (ffff8800377f0000 - ffff880037bf0000)
    [ 0.818928] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
    [ 0.818930] AMD-Vi: Interrupt remapping enabled
    [ 0.819044] AMD-Vi: Initialized for Passthrough Mode
    [ 0.894098] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.894100] software IO TLB [mem 0xba858000-0xbe858000] (64MB) mapped at [ffff8800ba858000-ffff8800be857fff]
    [ 0.894417] perf: AMD NB counters detected
    [ 0.894473] microcode: CPU0: patch_level=0x06000822
    [ 0.894480] microcode: CPU1: patch_level=0x06000822
    [ 0.894489] microcode: CPU2: patch_level=0x06000822
    [ 0.894497] microcode: CPU3: patch_level=0x06000822
    [ 0.894505] microcode: CPU4: patch_level=0x06000822
    [ 0.894512] microcode: CPU5: patch_level=0x06000822
    [ 0.894520] microcode: CPU6: patch_level=0x06000822
    [ 0.894528] microcode: CPU7: patch_level=0x06000822
    [ 0.894571] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.894574] LVT offset 0 assigned for vector 0x400
    [ 0.894593] perf: AMD IBS detected (0x000000ff)
    [ 0.894612] Scanning for low memory corruption every 60 seconds
    [ 0.894922] futex hash table entries: 2048 (order: 5, 131072 bytes)
    [ 0.894967] Initialise system trusted keyring
    [ 0.895290] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.896718] zpool: loaded
    [ 0.896720] zbud: loaded
    [ 0.896855] VFS: Disk quotas dquot_6.5.2
    [ 0.896887] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.897041] Key type big_key registered
    [ 0.897219] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.897278] io scheduler noop registered
    [ 0.897280] io scheduler deadline registered
    [ 0.897311] io scheduler cfq registered (default)
    [ 0.897582] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.897597] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.897611] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    [ 0.897612] vesafb: scrolling: redraw
    [ 0.897613] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.897630] vesafb: framebuffer at 0xd1000000, mapped to 0xffffc90010780000, using 5120k, total 5120k
    [ 0.908558] Console: switching to colour frame buffer device 160x64
    [ 0.919363] fb0: VESA VGA frame buffer device
    [ 0.919406] GHES: HEST is not enabled!
    [ 0.919477] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.939995] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.940350] Linux agpgart interface v0.103
    [ 0.940412] rtc_cmos 00:04: RTC can wake from S4
    [ 0.940505] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.940526] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.940538] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.940741] TCP: cubic registered
    [ 0.940831] NET: Registered protocol family 10
    [ 0.941040] NET: Registered protocol family 17
    [ 0.941657] Loading compiled-in X.509 certificates
    [ 0.941667] registered taskstats version 1
    [ 0.942038] Magic number: 11:895:492
    [ 0.942102] rtc_cmos 00:04: setting system clock to 2015-04-01 18:28:16 UTC (1427912896)
    [ 0.942169] PM: Hibernation image not present or could not be loaded.
    [ 0.942657] Freeing unused kernel memory: 1164K (ffffffff818e7000 - ffffffff81a0a000)
    [ 0.942658] Write protecting the kernel read-only data: 8192k
    [ 0.943029] Freeing unused kernel memory: 600K (ffff88000156a000 - ffff880001600000)
    [ 0.943194] Freeing unused kernel memory: 304K (ffff8800017b4000 - ffff880001800000)
    [ 0.948897] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.960384] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.960767] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.960819] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.965753] ACPI: bus type USB registered
    [ 0.965786] usbcore: registered new interface driver usbfs
    [ 0.965799] usbcore: registered new interface driver hub
    [ 0.965834] SCSI subsystem initialized
    [ 0.965866] usbcore: registered new device driver usb
    [ 0.966937] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.967199] QUIRK: Enable AMD PLL fix
    [ 0.967214] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 0.967216] ehci-pci: EHCI PCI platform driver
    [ 0.967220] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
    [ 0.967486] hub 1-0:1.0: USB hub found
    [ 0.967493] hub 1-0:1.0: 1 port detected
    [ 0.967607] xhci_hcd 0000:02:00.0: xHCI Host Controller
    [ 0.967610] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
    [ 0.967627] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 0.967789] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.967791] libata version 3.00 loaded.
    [ 0.967804] hub 2-0:1.0: USB hub found
    [ 0.967816] hub 2-0:1.0: 4 ports detected
    [ 0.967981] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 3
    [ 0.967988] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.967999] ehci-pci 0000:00:12.2: debug port 1
    [ 0.968051] ehci-pci 0000:00:12.2: irq 17, io mem 0xfe409000
    [ 0.968187] ohci-pci: OHCI PCI platform driver
    [ 0.978101] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.978260] hub 3-0:1.0: USB hub found
    [ 0.978266] hub 3-0:1.0: 5 ports detected
    [ 0.978471] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 0.978476] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 4
    [ 0.978478] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.978487] ehci-pci 0000:00:13.2: debug port 1
    [ 0.978508] ehci-pci 0000:00:13.2: irq 17, io mem 0xfe407000
    [ 0.988131] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.988272] hub 4-0:1.0: USB hub found
    [ 0.988277] hub 4-0:1.0: 5 ports detected
    [ 0.988478] ehci-pci 0000:00:16.2: EHCI Host Controller
    [ 0.988483] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 5
    [ 0.988485] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.988493] ehci-pci 0000:00:16.2: debug port 1
    [ 0.988514] ehci-pci 0000:00:16.2: irq 17, io mem 0xfe404000
    [ 0.998136] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
    [ 0.998291] hub 5-0:1.0: USB hub found
    [ 0.998297] hub 5-0:1.0: 4 ports detected
    [ 0.998517] ohci-pci 0000:00:12.0: OHCI PCI host controller
    [ 0.998523] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 6
    [ 0.998580] ohci-pci 0000:00:12.0: irq 18, io mem 0xfe40a000
    [ 1.028176] firewire_ohci 0000:04:0e.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
    [ 1.055675] hub 6-0:1.0: USB hub found
    [ 1.055685] hub 6-0:1.0: 5 ports detected
    [ 1.055891] ohci-pci 0000:00:13.0: OHCI PCI host controller
    [ 1.055896] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 7
    [ 1.055912] ohci-pci 0000:00:13.0: irq 18, io mem 0xfe408000
    [ 1.112371] hub 7-0:1.0: USB hub found
    [ 1.112380] hub 7-0:1.0: 5 ports detected
    [ 1.112585] ohci-pci 0000:00:14.5: OHCI PCI host controller
    [ 1.112589] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 8
    [ 1.112604] ohci-pci 0000:00:14.5: irq 18, io mem 0xfe406000
    [ 1.169060] hub 8-0:1.0: USB hub found
    [ 1.169069] hub 8-0:1.0: 2 ports detected
    [ 1.169230] ohci-pci 0000:00:16.0: OHCI PCI host controller
    [ 1.169234] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 9
    [ 1.169248] ohci-pci 0000:00:16.0: irq 18, io mem 0xfe405000
    [ 1.225793] hub 9-0:1.0: USB hub found
    [ 1.225802] hub 9-0:1.0: 4 ports detected
    [ 1.226758] scsi host0: pata_atiixp
    [ 1.226866] scsi host1: pata_atiixp
    [ 1.226908] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
    [ 1.226910] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
    [ 1.226935] ahci 0000:00:11.0: version 3.0
    [ 1.227077] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 4 ports 6 Gbps 0xf impl SATA mode
    [ 1.227079] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 1.227581] scsi host2: ahci
    [ 1.227687] scsi host3: ahci
    [ 1.227790] scsi host4: ahci
    [ 1.227894] scsi host5: ahci
    [ 1.227941] ata3: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b100 irq 19
    [ 1.227943] ata4: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b180 irq 19
    [ 1.227945] ata5: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b200 irq 19
    [ 1.227947] ata6: SATA max UDMA/133 abar m1024@0xfe40b000 port 0xfe40b280 irq 19
    [ 1.228069] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    [ 1.228071] ahci 0000:03:00.0: flags: 64bit ncq sntf led only pmp fbs pio slum part sxs
    [ 1.228368] scsi host6: ahci
    [ 1.228467] scsi host7: ahci
    [ 1.228518] ata7: SATA max UDMA/133 abar m512@0xfe210000 port 0xfe210100 irq 32
    [ 1.228520] ata8: SATA max UDMA/133 abar m512@0xfe210000 port 0xfe210180 irq 32
    [ 1.271654] usb 1-1: new high-speed USB device number 2 using xhci_hcd
    [ 1.389601] ata1.00: supports DRM functions and may not be fully accessible
    [ 1.389604] ata1.00: ATA-9: Samsung SSD 850 EVO 500GB, EMT01B6Q, max UDMA/133
    [ 1.389606] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 0/32)
    [ 1.390019] ata1.00: limited to UDMA/33 due to 40-wire cable
    [ 1.395403] ata1.00: supports DRM functions and may not be fully accessible
    [ 1.395767] ata1.00: configured for UDMA/33
    [ 1.395882] scsi 0:0:0:0: Direct-Access ATA Samsung SSD 850 1B6Q PQ: 0 ANSI: 5
    [ 1.403230] hub 1-1:1.0: USB hub found
    [ 1.403326] hub 1-1:1.0: 4 ports detected
    [ 1.528533] firewire_core 0000:04:0e.0: created device fw0: GUID 0049e550700d0d00, S400
    [ 1.531822] usb 6-2: new full-speed USB device number 2 using ohci-pci
    [ 1.541816] ata7: SATA link down (SStatus 0 SControl 300)
    [ 1.541830] usb 7-4: new full-speed USB device number 2 using ohci-pci
    [ 1.548468] ata8: SATA link down (SStatus 0 SControl 300)
    [ 1.700539] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.705803] usbcore: registered new interface driver usbhid
    [ 1.705804] usbhid: USB HID core driver
    [ 1.707736] input: Turtle Beach Turtle Beach PX21 Headset as /devices/pci0000:00/0000:00:12.0/usb6/6-2/6-2:1.3/0003:10F5:0235.0001/input/input2
    [ 1.711930] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.711950] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.711968] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.711986] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.714459] ata5.00: ATAPI: ATAPI iHAS424 B, GL14, max UDMA/100
    [ 1.715245] ata5.00: configured for UDMA/100
    [ 1.724780] ata6.00: ATAPI: ATAPI DVD A DH16A3L, 8H1F, max UDMA/100
    [ 1.727806] logitech-djreceiver 0003:046D:C52B.0004: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:13.0-4/input2
    [ 1.738060] ata6.00: configured for UDMA/100
    [ 1.738990] ata4.00: ATA-8: ST3750528AS, CC44, max UDMA/133
    [ 1.738992] ata4.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.752852] ata3.00: ATA-7: ST3250620AS, 3.AAE, max UDMA/133
    [ 1.752855] ata3.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.758678] hid-generic 0003:10F5:0235.0001: input,hidraw1: USB HID v1.00 Device [Turtle Beach Turtle Beach PX21 Headset] on usb-0000:00:12.0-2/input3
    [ 1.778584] ata4.00: configured for UDMA/133
    [ 1.811234] ata3.00: configured for UDMA/133
    [ 1.811298] scsi 2:0:0:0: Direct-Access ATA ST3250620AS E PQ: 0 ANSI: 5
    [ 1.811508] scsi 3:0:0:0: Direct-Access ATA ST3750528AS CC44 PQ: 0 ANSI: 5
    [ 1.815331] scsi 4:0:0:0: CD-ROM ATAPI iHAS424 B GL14 PQ: 0 ANSI: 5
    [ 1.827195] scsi 5:0:0:0: CD-ROM ATAPI DVD A DH16A3L 8H1F PQ: 0 ANSI: 5
    [ 1.838181] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.838236] sd 2:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 1.838264] sd 2:0:0:0: [sdb] Write Protect is off
    [ 1.838266] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.838275] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.838279] sd 3:0:0:0: [sdc] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
    [ 1.838281] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.838285] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.838307] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.838310] sd 3:0:0:0: [sdc] Write Protect is off
    [ 1.838312] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 1.838324] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.840319] sda: sda1 sda2
    [ 1.840687] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.851264] sr 4:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.851267] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.851394] sr 4:0:0:0: Attached scsi CD-ROM sr0
    [ 1.853588] sdc: sdc1 sdc2 sdc3 sdc4
    [ 1.853870] sd 3:0:0:0: [sdc] Attached SCSI disk
    [ 1.859267] sdb: sdb1 sdb2
    [ 1.859479] sd 2:0:0:0: [sdb] Attached SCSI disk
    [ 1.864173] sr 5:0:0:0: [sr1] scsi3-mmc drive: 40x/12x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.864316] sr 5:0:0:0: Attached scsi CD-ROM sr1
    [ 1.895367] tsc: Refined TSC clocksource calibration: 4018.371 MHz
    [ 1.972095] usb 7-5: new full-speed USB device number 3 using ohci-pci
    [ 2.143199] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0006/input/input3
    [ 2.143245] hid-generic 0003:1532:0016.0006: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 2.345643] EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.564353] random: nonblocking pool is initialized
    [ 2.896115] Switched to clocksource tsc
    [ 2.989972] systemd[1]: RTC configured in localtime, applying delta of -420 minutes to system time.
    [ 4.146364] EXT4-fs (sdc2): re-mounted. Opts: data=ordered
    [ 5.242062] systemd-journald[198]: Received request to flush runtime journal from PID 1
    [ 5.820530] ACPI: acpi_idle registered with cpuidle
    [ 5.827968] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 6.088745] MCE: In-kernel MCE decoding enabled.
    [ 6.088830] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
    [ 6.088835] ACPI: Power Button [PWRB]
    [ 6.088901] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 6.088903] ACPI: Power Button [PWRF]
    [ 6.090720] wmi: Mapper loaded
    [ 6.183901] EDAC MC: Ver: 3.0.0
    [ 6.185457] AMD64 EDAC driver v3.4.0
    [ 6.185490] EDAC amd64: DRAM ECC disabled.
    [ 6.185502] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    (Note that use of the override may cause unknown side effects.)
    [ 6.196328] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 6.252091] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 6.252149] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
    [ 6.309452] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 6.309546] r8169 0000:04:06.0 (unnamed net_device) (uninitialized): not PCI Express
    [ 6.309823] r8169 0000:04:06.0 eth0: RTL8169sb/8110sb at 0xffffc90000648000, d8:eb:97:81:7b:88, XID 10000000 IRQ 20
    [ 6.309826] r8169 0000:04:06.0 eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
    [ 6.316117] [drm] Initialized drm 1.1.0 20060810
    [ 6.322842] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
    [ 6.322904] sp5100_tco: PCI Revision ID: 0x42
    [ 6.322936] sp5100_tco: Using 0xfed80b00 for watchdog MMIO address
    [ 6.322947] sp5100_tco: Last reboot was not triggered by watchdog.
    [ 6.322994] sp5100_tco: initialized (0xffffc9000064ab00). heartbeat=60 sec (nowayout=0)
    [ 6.370784] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 6.405509] r8169 0000:04:06.0 enp4s6: renamed from eth0
    [ 6.666521] snd_hda_intel 0000:01:00.1: Disabling MSI
    [ 6.666531] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 6.728492] sound hdaudioC0D0: autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
    [ 6.728504] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 6.728512] sound hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
    [ 6.728518] sound hdaudioC0D0: mono: mono_out=0x0
    [ 6.728523] sound hdaudioC0D0: dig-out=0x11/0x1e
    [ 6.728528] sound hdaudioC0D0: inputs:
    [ 6.728534] sound hdaudioC0D0: Front Mic=0x19
    [ 6.728540] sound hdaudioC0D0: Rear Mic=0x18
    [ 6.728545] sound hdaudioC0D0: Line=0x1a
    [ 6.732452] AVX version of gcm_enc/dec engaged.
    [ 6.732455] AES CTR mode by8 optimization enabled
    [ 6.751090] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
    [ 6.751373] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
    [ 6.751805] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    [ 6.752652] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
    [ 6.752768] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
    [ 6.752834] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
    [ 6.752899] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
    [ 6.752956] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input14
    [ 7.043010] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input15
    [ 7.043204] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input16
    [ 7.043899] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input17
    [ 7.094444] Adding 16777212k swap on /dev/sdc3. Priority:-1 extents:1 across:16777212k FS
    [ 7.117737] usbcore: registered new interface driver snd-usb-audio
    [ 7.126713] nvidia: module license 'NVIDIA' taints kernel.
    [ 7.126718] Disabling lock debugging due to kernel taint
    [ 7.138096] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 7.138428] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:01:00.0 on minor 0
    [ 7.138435] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 346.47 Thu Feb 19 18:56:03 PST 2015
    [ 7.485021] input: Logitech K400 as /devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.2/0003:046D:C52B.0004/0003:046D:4024.0005/input/input18
    [ 7.485233] logitech-hidpp-device 0003:046D:4024.0005: input,hidraw3: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:00:13.0-4:1
    [ 7.540890] mousedev: PS/2 mouse device common for all mice
    [ 7.683577] kvm: Nested Virtualization enabled
    [ 7.683587] kvm: Nested Paging enabled
    [ 8.915498] EXT4-fs (sdc4): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 8.970005] microcode: CPU0: new patch_level=0x06000832
    [ 8.988739] microcode: CPU2: new patch_level=0x06000832
    [ 8.994855] microcode: CPU4: new patch_level=0x06000832
    [ 9.013677] microcode: CPU6: new patch_level=0x06000832
    [ 9.123268] it87: Found IT8728F chip at 0x228, revision 1
    [ 9.123288] it87: Beeping is supported
    [ 10.039941] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0007/input/input19
    [ 10.040305] hid-generic 0003:1532:0016.0007: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 10.361662] r8169 0000:04:06.0 enp4s6: link down
    [ 10.361761] r8169 0000:04:06.0 enp4s6: link down
    [ 10.701964] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 11.041655] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0008/input/input20
    [ 11.042019] hid-generic 0003:1532:0016.0008: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 12.042896] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1532:0016.0009/input/input21
    [ 12.043111] hid-generic 0003:1532:0016.0009: input,hidraw2: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:13.0-5/input0
    [ 13.308991] NVRM: Your system is not currently configured to drive a VGA console
    [ 13.308995] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 13.308996] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 13.308998] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 13.308999] NVRM: corruption and stability problems, and is not supported.
    [ 13.823977] r8169 0000:04:06.0 enp4s6: link up
    I figure there is plenty of unnecessary info in the dmesg and I apologize, but I want to find the problem of this illusive RAM.
    My system specs:
    AMD FX-8350
    4x4gb CMZ8GX3M2A160 Corsair RAM
    Gigabyte GA-990FXA-UD3
    NVidia GT 640
    Please can someone guide me to the answer of the missing RAM?
    Last edited by vuvffufg (2015-04-02 18:37:31)

    Yes it is 64bit:
    [vuvffufg@HereAndNow-Main ~]$ uname -a
    Linux HereAndNow-Main 3.19.2-1-ARCH #1 SMP PREEMPT Wed Mar 18 16:21:02 CET 2015 x86_64 GNU/Linux

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

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

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

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

  • Console does not comes back to life after screen blanking

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

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

Maybe you are looking for

  • E6 - belle update problems - WIFI

    Hi Just updated my E6 to belle, I waited for update to be available in Slovenia. Now I have nice phone, not a smart phone. I did reset the phone several times. Now I have problems: 1. connecting to WIFI, my phone finds my wifi network, I can connect

  • Report ing Hours in CATS

    Hi, We´ve encountered the following need. We are using CATS to register presences and absences. Supposing that there is a week where wednesday is a holiday, we want the system to set by default that day as a holiday. We want to achieve that the emplo

  • From Binary Dataset to Attachment.

    open dataset fullpath for input in BINARY mode. do. READ DATASET fullpath INTO PDFDATA. if sy-subrc NE 0. exit. endif. *Append lt_pdfdata to gt_pdfdata. APPEND PDFDATA. enddo. close dataset fullpath. loop at PDFDATA. MOVE PDFDATA to IT_ATTACHMENT. Ap

  • Wireless Downstream of a Proxy Server (AllegroSurf)

    Anyone know how I should go about setting up a wireless setup downstream of my AllegroSurf Proxy Server. Not sure how to get started. Have a new Linksys Router and having difficulty. Thx, Chuck

  • AVCHD footage lags on Playback

    I am editing footage on shot on a Panasonic AVCHD HDC HS300p. We log and transfer the footage to a LaCie 2TB external drive and run FW 800 to an Intel I-MAC. My footage lags and freezes when I put it on the timeline for playback. Is there any solutio