Generics - re-writed version

Hello all. I am building a small app that requires a persistence manager to save objects in an xml repository file.
I am trying to use generics to see if I can avoid casting objects from a general super class to concrete class. Lets say Entity and Person.
For a store method. I wrote this:
     public <E extends Entity> void store(E entity);Lets say that inside store method I delegate the translation from the entity Person or whatever to a Node element. Somewhere you would have to cast the E type (from generics) to Person. right? like:
persistence manager code:
private void save(Person person){
    ..transform the object to xml and save it
public <E extends Entity> void store(E entity){
     this.save((Person)entity);
} client code:
Person person = new Person("Jon", "Stewart");
myStorage.store(person);May be the GET statement would be easier to understand. My get looks something like this:
persistence manager code:
    public <E extends Entity> E getEntity(int id) {
        return null;
    } client side code:
   Person person = myStorage.get(32);I avoid casting from the client side by using generics here.
How can I best avoid casting?
You see, I am trying to avoid Casting as much as I can.
I have to translate an entity to an xml node, then append the node to a parent node, thus persisting it to the original document.
I created some XmlTranslators. and a subclass for each different type of entity. I don't think this is such a good aproach. But I didn't had any better Idea at the time (would be great to hear sugestions).
I have a Switch statement that evaluates the entity.entityType (an enumerator type) and as I showed before in the example I cast to the subclass type (Person).
Am I doing this the right way? or just the complicated way.
My goal is to reduce code in store methods and avoid as much casting as I can.
May be by trying to do it all I got a little lost. If some one could share his/her views on the matter and maybe show me a better practice, I would appreciate it very much.

To make use of generics, you must have knowledge about the types at compile time. If the instance you call getEntity on does not have this information, there is no real use to provide a method implicitly casting to your type (as this may fail any time). If the instance knows about it, you can implement something like follows:public interface EntityProvider<E extends Entity> {
    public E getEntity(int id);
    public void store(int id, E entity);
public class PersonProvider implements EntityProvider<Person> {
    public Person getEntity(int id) { ... }
    public void store(int id, Person person) { ... }
}Alternatively a generic Provider class, operating on E that will be instantiated with the concrete Entity-type as generic parameter.

Similar Messages

  • Implementing generic and regular version of same interface

    I wanted to create a class that extends AbstractMap<Integer,Integer> and implements org.apache.commons.collections.BidiMap. BidiMap extends java.util.Map (not generic). I've gotten completely confused on how Java handles classes that implement multiple versions of an interface. Seems like you're not allowed to do it unless you introduce a layer of indirection. Even this is not really consistent
    public class A {
      public interface B<T> {public T a();}
      public interface C extends B {}
      public class D implements B<Integer> {public Integer a() {return 0;}}
      // Illegal
      public class E implements B<Integer>, C {public Integer a() {return 0;}}
      // why is this allowed?
      public class F extends D implements C {public Integer a() {return 0;}}
      public interface G<T> {public void a(T pArg);}
      public interface H extends G {public Object b();}
      public class I implements G<Integer> {public void a(Integer pInt) {}}
      // Illegal.  Huh?
      public class J extends I implements G {public Integer a() {return 0;}}
    }Anyone care to enlighten me on how this works? Is there any way to accomplish the original goal (extending AbstractMap<Integer,Integer> and implementing BidiMap)?

    I've gotten completely confused on how Java handles classes
    that implement multiple versions of an interface.It doesn't handle classes that implement multiple versions of an interface.
    why is this allowed?On my machine, it isn't.A.java:9: A.B cannot be inherited with different arguments: <> and <java.lang.Integer>
      public class F extends D implements C {public Integer a() {return 0;}}

  • Generic Error 3 VI could not Open

    Solution for VI could not Open because of Generic Error 3

    What version of LV are you working in? There is a known problem in 2011. NI can fix the VI easily,call and get a service request number, or you can go back to your last back up -- you do have a backup right?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Since kernel version 3.19.x-x my ultrabook cannot reboot nor shutdown

    Hello,
    Can somebody help me out? With kernel version 3.18xxx everything works fine... Does that mean that i have to downgrade my kernel???

    Yes, here again.
    -- Logs begin at So 2013-12-01 00:41:03 CET, end at Sa 2015-04-11 21:13:40 CEST. --
    Apr 11 20:59:04 coco-lap systemd-journal[154]: Runtime journal is using 8.0M (max allowed 188.8M, trying to leave 283.3M free of 1.8G available → current limit 188.8M).
    Apr 11 20:59:05 coco-lap systemd-journal[154]: Permanent journal is using 2.1G (max allowed 4.0G, trying to leave 4.0G free of 187.5G available → current limit 4.0G).
    Apr 11 20:59:06 coco-lap systemd-journal[154]: Time spent on flushing to /var is 731.179ms for 2 entries.
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys cpuset
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys cpu
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys cpuacct
    Apr 11 20:59:06 coco-lap kernel: Linux version 3.19.3-3-ARCH (builduser@tobias) (gcc version 4.9.2 20150304 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Apr 8 14:10:00 CEST 2015
    Apr 11 20:59:06 coco-lap kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=400f7053-9f5d-4381-92e5-856214a0b1bb rw quiet rcutree.rcu_idle_gp_delay=1
    Apr 11 20:59:06 coco-lap kernel: e820: BIOS-provided physical RAM map:
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d3ff] usable
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000040005000-0x0000000090daffff] usable
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000090db0000-0x00000000921affff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000921b0000-0x0000000096abefff] usable
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000096abf000-0x0000000096ebefff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000096ebf000-0x0000000096fbefff] ACPI NVS
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000096fbf000-0x0000000096ffefff] ACPI data
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000096fff000-0x0000000096ffffff] usable
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000097000000-0x000000009f9fffff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    Apr 11 20:59:06 coco-lap kernel: BIOS-e820: [mem 0x0000000100000000-0x000000015f5fffff] usable
    Apr 11 20:59:06 coco-lap kernel: NX (Execute Disable) protection: active
    Apr 11 20:59:06 coco-lap kernel: SMBIOS 2.7 present.
    Apr 11 20:59:06 coco-lap kernel: DMI: Acer Aspire M5-481TG/MA40_HX, BIOS V2.02 08/15/2012
    Apr 11 20:59:06 coco-lap kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Apr 11 20:59:06 coco-lap kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Apr 11 20:59:06 coco-lap kernel: AGP: No AGP bridge found
    Apr 11 20:59:06 coco-lap kernel: e820: last_pfn = 0x15f600 max_arch_pfn = 0x400000000
    Apr 11 20:59:06 coco-lap kernel: MTRR default type: uncachable
    Apr 11 20:59:06 coco-lap kernel: MTRR fixed ranges enabled:
    Apr 11 20:59:06 coco-lap kernel: 00000-9FFFF write-back
    Apr 11 20:59:06 coco-lap kernel: A0000-BFFFF uncachable
    Apr 11 20:59:06 coco-lap kernel: C0000-E7FFF write-protect
    Apr 11 20:59:06 coco-lap kernel: E8000-EFFFF write-combining
    Apr 11 20:59:06 coco-lap kernel: F0000-FFFFF write-protect
    Apr 11 20:59:06 coco-lap kernel: MTRR variable ranges enabled:
    Apr 11 20:59:06 coco-lap kernel: 0 base 000000000 mask F80000000 write-back
    Apr 11 20:59:06 coco-lap kernel: 1 base 080000000 mask FE0000000 write-back
    Apr 11 20:59:06 coco-lap kernel: 2 base 097000000 mask FFF000000 uncachable
    Apr 11 20:59:06 coco-lap kernel: 3 base 098000000 mask FF8000000 uncachable
    Apr 11 20:59:06 coco-lap kernel: 4 base 0FFC00000 mask FFFC00000 write-protect
    Apr 11 20:59:06 coco-lap kernel: 5 base 100000000 mask F80000000 write-back
    Apr 11 20:59:06 coco-lap kernel: 6 base 15F600000 mask FFFE00000 uncachable
    Apr 11 20:59:06 coco-lap kernel: 7 base 15F800000 mask FFF800000 uncachable
    Apr 11 20:59:06 coco-lap kernel: 8 base 160000000 mask FE0000000 uncachable
    Apr 11 20:59:06 coco-lap kernel: 9 disabled
    Apr 11 20:59:06 coco-lap kernel: PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
    Apr 11 20:59:06 coco-lap kernel: e820: last_pfn = 0x97000 max_arch_pfn = 0x400000000
    Apr 11 20:59:06 coco-lap kernel: found SMP MP-table at [mem 0x000fe1b0-0x000fe1bf] mapped at [ffff8800000fe1b0]
    Apr 11 20:59:06 coco-lap kernel: Scanning 1 areas for low memory corruption
    Apr 11 20:59:06 coco-lap kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x00000000-0x000fffff] page 4k
    Apr 11 20:59:06 coco-lap kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    Apr 11 20:59:06 coco-lap kernel: BRK [0x01b33000, 0x01b33fff] PGTABLE
    Apr 11 20:59:06 coco-lap kernel: BRK [0x01b34000, 0x01b34fff] PGTABLE
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x15f400000-0x15f5fffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x15f400000-0x15f5fffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: BRK [0x01b35000, 0x01b35fff] PGTABLE
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x140000000-0x15f3fffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x140000000-0x15f3fffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x120000000-0x13fffffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x120000000-0x13fffffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: BRK [0x01b36000, 0x01b36fff] PGTABLE
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x00100000-0x1fffffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x00100000-0x001fffff] page 4k
    Apr 11 20:59:06 coco-lap kernel: [mem 0x00200000-0x1fffffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x20200000-0x40003fff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x20200000-0x3fffffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: [mem 0x40000000-0x40003fff] page 4k
    Apr 11 20:59:06 coco-lap kernel: BRK [0x01b37000, 0x01b37fff] PGTABLE
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x40005000-0x90daffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x40005000-0x401fffff] page 4k
    Apr 11 20:59:06 coco-lap kernel: [mem 0x40200000-0x90bfffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: [mem 0x90c00000-0x90daffff] page 4k
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x921b0000-0x96abefff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x921b0000-0x921fffff] page 4k
    Apr 11 20:59:06 coco-lap kernel: [mem 0x92200000-0x969fffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: [mem 0x96a00000-0x96abefff] page 4k
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x96fff000-0x96ffffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x96fff000-0x96ffffff] page 4k
    Apr 11 20:59:06 coco-lap kernel: init_memory_mapping: [mem 0x100000000-0x11fffffff]
    Apr 11 20:59:06 coco-lap kernel: [mem 0x100000000-0x11fffffff] page 2M
    Apr 11 20:59:06 coco-lap kernel: RAMDISK: [mem 0x36f38000-0x37793fff]
    Apr 11 20:59:06 coco-lap kernel: ACPI: Early table checksum verification disabled
    Apr 11 20:59:06 coco-lap kernel: ACPI: RSDP 0x00000000000FE020 000024 (v02 ACRSYS)
    Apr 11 20:59:06 coco-lap kernel: ACPI: XSDT 0x0000000096FFE210 0000AC (v01 ACRSYS ACRPRDCT 00000001 01000013)
    Apr 11 20:59:06 coco-lap kernel: ACPI: FACP 0x0000000096FFB000 00010C (v05 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: DSDT 0x0000000096FEC000 00B054 (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: FACS 0x0000000096FBA000 000040
    Apr 11 20:59:06 coco-lap kernel: ACPI: UEFI 0x0000000096FFD000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: ASF! 0x0000000096FFC000 0000A5 (v32 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: HPET 0x0000000096FFA000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: APIC 0x0000000096FF9000 00008C (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: MCFG 0x0000000096FF8000 00003C (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: SLIC 0x0000000096FEB000 000176 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: WDAT 0x0000000096FEA000 000224 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: SSDT 0x0000000096FE8000 001068 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: BOOT 0x0000000096FE6000 000028 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: ASPT 0x0000000096FE1000 000034 (v07 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: FPDT 0x0000000096FDF000 000044 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: MSDM 0x0000000096FDE000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: SSDT 0x0000000096FDD000 0008A2 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: SSDT 0x0000000096FDC000 000A92 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: DMAR 0x0000000096FDB000 0000B8 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: SSDT 0x0000000096FD8000 002A05 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Local APIC address 0xfee00000
    Apr 11 20:59:06 coco-lap kernel: No NUMA configuration found
    Apr 11 20:59:06 coco-lap kernel: Faking a node at [mem 0x0000000000000000-0x000000015f5fffff]
    Apr 11 20:59:06 coco-lap kernel: NODE_DATA(0) allocated [mem 0x15f5f6000-0x15f5f9fff]
    Apr 11 20:59:06 coco-lap kernel: [ffffea0000000000-ffffea00057fffff] PMD -> [ffff88015ae00000-ffff88015ebfffff] on node 0
    Apr 11 20:59:06 coco-lap kernel: Zone ranges:
    Apr 11 20:59:06 coco-lap kernel: DMA [mem 0x00001000-0x00ffffff]
    Apr 11 20:59:06 coco-lap kernel: DMA32 [mem 0x01000000-0xffffffff]
    Apr 11 20:59:06 coco-lap kernel: Normal [mem 0x100000000-0x15f5fffff]
    Apr 11 20:59:06 coco-lap kernel: Movable zone start for each node
    Apr 11 20:59:06 coco-lap kernel: Early memory node ranges
    Apr 11 20:59:06 coco-lap kernel: node 0: [mem 0x00001000-0x0009cfff]
    Apr 11 20:59:06 coco-lap kernel: node 0: [mem 0x00100000-0x1fffffff]
    Apr 11 20:59:06 coco-lap kernel: node 0: [mem 0x20200000-0x40003fff]
    Apr 11 20:59:06 coco-lap kernel: node 0: [mem 0x40005000-0x90daffff]
    Apr 11 20:59:06 coco-lap kernel: node 0: [mem 0x921b0000-0x96abefff]
    Apr 11 20:59:06 coco-lap kernel: node 0: [mem 0x96fff000-0x96ffffff]
    Apr 11 20:59:06 coco-lap kernel: node 0: [mem 0x100000000-0x15f5fffff]
    Apr 11 20:59:06 coco-lap kernel: Initmem setup node 0 [mem 0x00001000-0x15f5fffff]
    Apr 11 20:59:06 coco-lap kernel: On node 0 totalpages: 1002075
    Apr 11 20:59:06 coco-lap kernel: DMA zone: 64 pages used for memmap
    Apr 11 20:59:06 coco-lap kernel: DMA zone: 21 pages reserved
    Apr 11 20:59:06 coco-lap kernel: DMA zone: 3996 pages, LIFO batch:0
    Apr 11 20:59:06 coco-lap kernel: DMA32 zone: 9491 pages used for memmap
    Apr 11 20:59:06 coco-lap kernel: DMA32 zone: 607423 pages, LIFO batch:31
    Apr 11 20:59:06 coco-lap kernel: Normal zone: 6104 pages used for memmap
    Apr 11 20:59:06 coco-lap kernel: Normal zone: 390656 pages, LIFO batch:31
    Apr 11 20:59:06 coco-lap kernel: Reserving Intel graphics stolen memory at 0x97a00000-0x9f9fffff
    Apr 11 20:59:06 coco-lap kernel: ACPI: PM-Timer IO Port: 0x408
    Apr 11 20:59:06 coco-lap kernel: ACPI: Local APIC address 0xfee00000
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    Apr 11 20:59:06 coco-lap kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    Apr 11 20:59:06 coco-lap kernel: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    Apr 11 20:59:06 coco-lap kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Apr 11 20:59:06 coco-lap kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Apr 11 20:59:06 coco-lap kernel: ACPI: IRQ0 used by override.
    Apr 11 20:59:06 coco-lap kernel: ACPI: IRQ9 used by override.
    Apr 11 20:59:06 coco-lap kernel: Using ACPI (MADT) for SMP configuration information
    Apr 11 20:59:06 coco-lap kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Apr 11 20:59:06 coco-lap kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x90db0000-0x921affff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x96abf000-0x96ebefff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x96ebf000-0x96fbefff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x96fbf000-0x96ffefff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x97000000-0x9f9fffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfeafffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    Apr 11 20:59:06 coco-lap kernel: PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    Apr 11 20:59:06 coco-lap kernel: e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
    Apr 11 20:59:06 coco-lap kernel: Booting paravirtualized kernel on bare hardware
    Apr 11 20:59:06 coco-lap kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Apr 11 20:59:06 coco-lap kernel: PERCPU: Embedded 31 pages/cpu @ffff88015f200000 s86336 r8192 d32448 u262144
    Apr 11 20:59:06 coco-lap kernel: pcpu-alloc: s86336 r8192 d32448 u262144 alloc=1*2097152
    Apr 11 20:59:06 coco-lap kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Apr 11 20:59:06 coco-lap kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 986395
    Apr 11 20:59:06 coco-lap kernel: Policy zone: Normal
    Apr 11 20:59:06 coco-lap kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=400f7053-9f5d-4381-92e5-856214a0b1bb rw quiet rcutree.rcu_idle_gp_delay=1
    Apr 11 20:59:06 coco-lap kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Apr 11 20:59:06 coco-lap kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    Apr 11 20:59:06 coco-lap kernel: AGP: Checking aperture...
    Apr 11 20:59:06 coco-lap kernel: AGP: No AGP bridge found
    Apr 11 20:59:06 coco-lap kernel: Calgary: detecting Calgary via BIOS EBDA area
    Apr 11 20:59:06 coco-lap kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Apr 11 20:59:06 coco-lap kernel: Memory: 3857344K/4008300K available (5534K kernel code, 917K rwdata, 1744K rodata, 1164K init, 1156K bss, 150956K reserved, 0K cma-reserved)
    Apr 11 20:59:06 coco-lap kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Apr 11 20:59:06 coco-lap kernel: Preemptible hierarchical RCU implementation.
    Apr 11 20:59:06 coco-lap kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Apr 11 20:59:06 coco-lap kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    Apr 11 20:59:06 coco-lap kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    Apr 11 20:59:06 coco-lap kernel: NR_IRQS:8448 nr_irqs:488 16
    Apr 11 20:59:06 coco-lap kernel: Console: colour dummy device 80x25
    Apr 11 20:59:06 coco-lap kernel: console [tty0] enabled
    Apr 11 20:59:06 coco-lap kernel: hpet clockevent registered
    Apr 11 20:59:06 coco-lap kernel: tsc: Fast TSC calibration using PIT
    Apr 11 20:59:06 coco-lap kernel: tsc: Detected 1696.112 MHz processor
    Apr 11 20:59:06 coco-lap kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3393.56 BogoMIPS (lpj=5653706)
    Apr 11 20:59:06 coco-lap kernel: pid_max: default: 32768 minimum: 301
    Apr 11 20:59:06 coco-lap kernel: ACPI: Core revision 20141107
    Apr 11 20:59:06 coco-lap kernel: ACPI: All ACPI Tables successfully acquired
    Apr 11 20:59:06 coco-lap kernel: Security Framework initialized
    Apr 11 20:59:06 coco-lap kernel: Yama: becoming mindful.
    Apr 11 20:59:06 coco-lap kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Apr 11 20:59:06 coco-lap kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Apr 11 20:59:06 coco-lap kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Apr 11 20:59:06 coco-lap kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys memory
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys devices
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys freezer
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys net_cls
    Apr 11 20:59:06 coco-lap kernel: Initializing cgroup subsys blkio
    Apr 11 20:59:06 coco-lap kernel: CPU: Physical Processor ID: 0
    Apr 11 20:59:06 coco-lap kernel: CPU: Processor Core ID: 0
    Apr 11 20:59:06 coco-lap kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    Apr 11 20:59:06 coco-lap kernel: mce: CPU supports 7 MCE banks
    Apr 11 20:59:06 coco-lap kernel: CPU0: Thermal monitoring enabled (TM1)
    Apr 11 20:59:06 coco-lap kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    Apr 11 20:59:06 coco-lap kernel: Freeing SMP alternatives memory: 20K (ffffffff81a0a000 - ffffffff81a0f000)
    Apr 11 20:59:06 coco-lap kernel: ftrace: allocating 21171 entries in 83 pages
    Apr 11 20:59:06 coco-lap kernel: dmar: Host address width 36
    Apr 11 20:59:06 coco-lap kernel: dmar: DRHD base: 0x000000fed90000 flags: 0x0
    Apr 11 20:59:06 coco-lap kernel: dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
    Apr 11 20:59:06 coco-lap kernel: dmar: DRHD base: 0x000000fed91000 flags: 0x1
    Apr 11 20:59:06 coco-lap kernel: dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
    Apr 11 20:59:06 coco-lap kernel: dmar: RMRR base: 0x00000096e8c000 end: 0x00000096eabfff
    Apr 11 20:59:06 coco-lap kernel: dmar: RMRR base: 0x00000097800000 end: 0x0000009f9fffff
    Apr 11 20:59:06 coco-lap kernel: IOAPIC id 0 under DRHD base 0xfed91000 IOMMU 1
    Apr 11 20:59:06 coco-lap kernel: HPET id 0 under DRHD base 0xfed91000
    Apr 11 20:59:06 coco-lap kernel: Queued invalidation will be enabled to support x2apic and Intr-remapping.
    Apr 11 20:59:06 coco-lap kernel: Enabled IRQ remapping in x2apic mode
    Apr 11 20:59:06 coco-lap kernel: Enabling x2apic
    Apr 11 20:59:06 coco-lap kernel: Enabled x2apic
    Apr 11 20:59:06 coco-lap kernel: Switched APIC routing to cluster x2apic.
    Apr 11 20:59:06 coco-lap kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Apr 11 20:59:06 coco-lap kernel: smpboot: CPU0: Intel(R) Core(TM) i5-3317U CPU @ 1.70GHz (fam: 06, model: 3a, stepping: 09)
    Apr 11 20:59:06 coco-lap kernel: TSC deadline timer enabled
    Apr 11 20:59:06 coco-lap kernel: Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    Apr 11 20:59:06 coco-lap kernel: ... version: 3
    Apr 11 20:59:06 coco-lap kernel: ... bit width: 48
    Apr 11 20:59:06 coco-lap kernel: ... generic registers: 4
    Apr 11 20:59:06 coco-lap kernel: ... value mask: 0000ffffffffffff
    Apr 11 20:59:06 coco-lap kernel: ... max period: 0000ffffffffffff
    Apr 11 20:59:06 coco-lap kernel: ... fixed-purpose events: 3
    Apr 11 20:59:06 coco-lap kernel: ... event mask: 000000070000000f
    Apr 11 20:59:06 coco-lap kernel: x86: Booting SMP configuration:
    Apr 11 20:59:06 coco-lap kernel: .... node #0, CPUs: #1
    Apr 11 20:59:06 coco-lap kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Apr 11 20:59:06 coco-lap kernel: #2 #3
    Apr 11 20:59:06 coco-lap kernel: x86: Booted up 1 node, 4 CPUs
    Apr 11 20:59:06 coco-lap kernel: smpboot: Total of 4 processors activated (13574.26 BogoMIPS)
    Apr 11 20:59:06 coco-lap kernel: devtmpfs: initialized
    Apr 11 20:59:06 coco-lap kernel: PM: Registering ACPI NVS region [mem 0x96ebf000-0x96fbefff] (1048576 bytes)
    Apr 11 20:59:06 coco-lap kernel: pinctrl core: initialized pinctrl subsystem
    Apr 11 20:59:06 coco-lap kernel: RTC time: 18:58:58, date: 04/11/15
    Apr 11 20:59:06 coco-lap kernel: NET: Registered protocol family 16
    Apr 11 20:59:06 coco-lap kernel: cpuidle: using governor ladder
    Apr 11 20:59:06 coco-lap kernel: cpuidle: using governor menu
    Apr 11 20:59:06 coco-lap kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Apr 11 20:59:06 coco-lap kernel: ACPI: bus type PCI registered
    Apr 11 20:59:06 coco-lap kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Apr 11 20:59:06 coco-lap kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Apr 11 20:59:06 coco-lap kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Apr 11 20:59:06 coco-lap kernel: PCI: Using configuration type 1 for base access
    Apr 11 20:59:06 coco-lap kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Apr 11 20:59:06 coco-lap kernel: mtrr: probably your BIOS does not setup all CPUs.
    Apr 11 20:59:06 coco-lap kernel: mtrr: corrected configuration.
    Apr 11 20:59:06 coco-lap kernel: ACPI: Added _OSI(Module Device)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Added _OSI(Processor Device)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Apr 11 20:59:06 coco-lap kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Apr 11 20:59:06 coco-lap kernel: ACPI: Dynamic OEM Table Load:
    Apr 11 20:59:06 coco-lap kernel: ACPI: SSDT 0xFFFF880159944000 00083B (v01 PmRef Cpu0Cst 00003001 INTL 20111123)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Dynamic OEM Table Load:
    Apr 11 20:59:06 coco-lap kernel: ACPI: SSDT 0xFFFF880159951000 000303 (v01 PmRef ApIst 00003000 INTL 20111123)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Dynamic OEM Table Load:
    Apr 11 20:59:06 coco-lap kernel: ACPI: SSDT 0xFFFF880159862800 000119 (v01 PmRef ApCst 00003000 INTL 20111123)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Interpreter enabled
    Apr 11 20:59:06 coco-lap kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
    Apr 11 20:59:06 coco-lap kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
    Apr 11 20:59:06 coco-lap kernel: ACPI: (supports S0 S3 S4 S5)
    Apr 11 20:59:06 coco-lap kernel: ACPI: Using IOAPIC for interrupt routing
    Apr 11 20:59:06 coco-lap kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Apr 11 20:59:06 coco-lap kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    Apr 11 20:59:06 coco-lap kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Apr 11 20:59:06 coco-lap kernel: \_SB_.PCI0:_OSC invalid UUID
    Apr 11 20:59:06 coco-lap kernel: _OSC request data:1 1f 0
    Apr 11 20:59:06 coco-lap kernel: acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    Apr 11 20:59:06 coco-lap kernel: PCI host bridge to bus 0000:00
    Apr 11 20:59:06 coco-lap kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
    Apr 11 20:59:06 coco-lap kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Apr 11 20:59:06 coco-lap kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Apr 11 20:59:06 coco-lap kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Apr 11 20:59:06 coco-lap kernel: pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:02.0: reg 0x10: [mem 0xd3000000-0xd33fffff 64bit]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:14.0: reg 0x10: [mem 0xd3600000-0xd360ffff 64bit]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:16.0: reg 0x10: [mem 0xd3614000-0xd361400f 64bit]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xd3619000-0xd36193ff]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xd3610000-0xd3613fff 64bit]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.7: [8086:1e1e] type 01 class 0x060400
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1c.7: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xd3618000-0xd36183ff]
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Apr 11 20:59:06 coco-lap kernel: pci 0000:00:1f.0: [8086:1e57] type 00 class 0x060100
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: reg 0x10: [io 0x4088-0x408f]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: reg 0x14: [io 0x4094-0x4097]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: reg 0x18: [io 0x4080-0x4087]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x4090-0x4093]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: reg 0x20: [io 0x4060-0x407f]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xd3617000-0xd36177ff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xd3615000-0xd36150ff 64bit]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1f.3: reg 0x20: [io 0x4040-0x405f]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: [10de:0fd3] type 00 class 0x030000
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd2000000-0xd2ffffff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: reg 0x14: [mem 0xa0000000-0xafffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xb0000000-0xb1ffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: reg 0x24: [io 0x3000-0x307f]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd2ffffff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: bridge window [mem 0xa0000000-0xbfffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.0: [10ec:5209] type 00 class 0xff0000
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.0: supports D1 D2
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.0: PME# supported from D1 D2 D3hot
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.0: System wakeup disabled by ACPI
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.1: [10ec:5209] type 00 class 0x080500
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.1: reg 0x10: [mem 0x00000000-0x000000ff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.1: supports D1 D2
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.1: PME# supported from D1 D2 D3hot
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: bridge window [mem 0xd1000000-0xd1ffffff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:04:00.0: [14e4:1692] type 00 class 0x020000
    Apr 11 20:59:07 coco-lap kernel: pci 0000:04:00.0: reg 0x10: [mem 0xd3500000-0xd350ffff 64bit]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:04:00.0: PME# supported from D3hot D3cold
    Apr 11 20:59:07 coco-lap kernel: pci 0000:04:00.0: System wakeup disabled by ACPI
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.2: bridge window [mem 0xd3500000-0xd35fffff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: [168c:0034] type 00 class 0x028000
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: reg 0x10: [mem 0xd3400000-0xd347ffff 64bit]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: supports D1 D2
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: System wakeup disabled by ACPI
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.7: PCI bridge to [bus 09]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.7: bridge window [mem 0xd3400000-0xd34fffff]
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Apr 11 20:59:07 coco-lap kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    Apr 11 20:59:07 coco-lap kernel: ACPI: Enabled 4 GPEs in block 00 to 3F
    Apr 11 20:59:07 coco-lap kernel: ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Apr 11 20:59:07 coco-lap kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
    Apr 11 20:59:07 coco-lap kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Apr 11 20:59:07 coco-lap kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Apr 11 20:59:07 coco-lap kernel: vgaarb: loaded
    Apr 11 20:59:07 coco-lap kernel: vgaarb: bridge control possible 0000:01:00.0
    Apr 11 20:59:07 coco-lap kernel: vgaarb: no bridge control possible 0000:00:02.0
    Apr 11 20:59:07 coco-lap kernel: PCI: Using ACPI for IRQ routing
    Apr 11 20:59:07 coco-lap kernel: PCI: pci_cache_line_size set to 64 bytes
    Apr 11 20:59:07 coco-lap kernel: e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
    Apr 11 20:59:07 coco-lap kernel: e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    Apr 11 20:59:07 coco-lap kernel: e820: reserve RAM buffer [mem 0x90db0000-0x93ffffff]
    Apr 11 20:59:07 coco-lap kernel: e820: reserve RAM buffer [mem 0x96abf000-0x97ffffff]
    Apr 11 20:59:07 coco-lap kernel: e820: reserve RAM buffer [mem 0x97000000-0x97ffffff]
    Apr 11 20:59:07 coco-lap kernel: e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
    Apr 11 20:59:07 coco-lap kernel: NetLabel: Initializing
    Apr 11 20:59:07 coco-lap kernel: NetLabel: domain hash size = 128
    Apr 11 20:59:07 coco-lap kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Apr 11 20:59:07 coco-lap kernel: NetLabel: unlabeled traffic allowed by default
    Apr 11 20:59:07 coco-lap kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Apr 11 20:59:07 coco-lap kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Apr 11 20:59:07 coco-lap kernel: Switched to clocksource hpet
    Apr 11 20:59:07 coco-lap kernel: pnp: PnP ACPI init
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0x0680-0x069f] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0x1100-0x110f] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0xffff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0xffff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0x0400-0x0453] could not be reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0x0458-0x047f] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0x0500-0x057f] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: [io 0x164e-0x164f] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Apr 11 20:59:07 coco-lap kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
    Apr 11 20:59:07 coco-lap kernel: system 00:02: [io 0x0454-0x0457] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    Apr 11 20:59:07 coco-lap kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    Apr 11 20:59:07 coco-lap kernel: pnp 00:04: Plug and Play ACPI device, IDs ETD0508 PNP0f13 (active)
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: [mem 0x9fa00000-0x9fa00fff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Apr 11 20:59:07 coco-lap kernel: system 00:06: [mem 0x20000000-0x201fffff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:06: [mem 0x40004000-0x40004fff] has been reserved
    Apr 11 20:59:07 coco-lap kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
    Apr 11 20:59:07 coco-lap kernel: pnp: PnP ACPI: found 7 devices
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
    Apr 11 20:59:07 coco-lap kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xb2000000-0xb207ffff pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd2ffffff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:01.0: bridge window [mem 0xa0000000-0xbfffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.0: BAR 0: assigned [mem 0xd1000000-0xd1000fff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:03:00.1: BAR 0: assigned [mem 0xd1001000-0xd10010ff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: bridge window [mem 0xd1000000-0xd1ffffff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.1: bridge window [mem 0xd0000000-0xd0ffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.2: bridge window [mem 0xd3500000-0xd35fffff]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:09:00.0: BAR 6: assigned [mem 0xd3480000-0xd348ffff pref]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.7: PCI bridge to [bus 09]
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:1c.7: bridge window [mem 0xd3400000-0xd34fffff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:00: resource 7 [mem 0x9fa00000-0xfeafffff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:01: resource 2 [mem 0xa0000000-0xbfffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:03: resource 1 [mem 0xd1000000-0xd1ffffff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:03: resource 2 [mem 0xd0000000-0xd0ffffff 64bit pref]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:04: resource 1 [mem 0xd3500000-0xd35fffff]
    Apr 11 20:59:07 coco-lap kernel: pci_bus 0000:09: resource 1 [mem 0xd3400000-0xd34fffff]
    Apr 11 20:59:07 coco-lap kernel: NET: Registered protocol family 2
    Apr 11 20:59:07 coco-lap kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    Apr 11 20:59:07 coco-lap kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    Apr 11 20:59:07 coco-lap kernel: TCP: Hash tables configured (established 32768 bind 32768)
    Apr 11 20:59:07 coco-lap kernel: TCP: reno registered
    Apr 11 20:59:07 coco-lap kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Apr 11 20:59:07 coco-lap kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Apr 11 20:59:07 coco-lap kernel: NET: Registered protocol family 1
    Apr 11 20:59:07 coco-lap kernel: pci 0000:00:02.0: Video device with shadowed ROM
    Apr 11 20:59:07 coco-lap kernel: PCI: CLS 64 bytes, default 64
    Apr 11 20:59:07 coco-lap kernel: Unpacking initramfs...
    Apr 11 20:59:07 coco-lap kernel: Freeing initrd memory: 8560K (ffff880036f38000 - ffff880037794000)
    Apr 11 20:59:07 coco-lap kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Apr 11 20:59:07 coco-lap kernel: software IO TLB [mem 0x92abf000-0x96abf000] (64MB) mapped at [ffff880092abf000-ffff880096abefff]
    Apr 11 20:59:07 coco-lap kernel: Simple Boot Flag at 0x44 set to 0x1
    Apr 11 20:59:07 coco-lap kernel: RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
    Apr 11 20:59:07 coco-lap kernel: microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x12
    Apr 11 20:59:07 coco-lap kernel: microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x12
    Apr 11 20:59:07 coco-lap kernel: microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x12
    Apr 11 20:59:07 coco-lap kernel: microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x12
    Apr 11 20:59:07 coco-lap kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Apr 11 20:59:07 coco-lap kernel: Scanning for low memory corruption every 60 seconds
    Apr 11 20:59:07 coco-lap kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
    Apr 11 20:59:07 coco-lap kernel: Initialise system trusted keyring
    Apr 11 20:59:07 coco-lap kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Apr 11 20:59:07 coco-lap kernel: zpool: loaded
    Apr 11 20:59:07 coco-lap kernel: zbud: loaded
    Apr 11 20:59:07 coco-lap kernel: VFS: Disk quotas dquot_6.5.2
    Apr 11 20:59:07 coco-lap kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Apr 11 20:59:07 coco-lap kernel: Key type big_key registered
    Apr 11 20:59:07 coco-lap kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Apr 11 20:59:07 coco-lap kernel: io scheduler noop registered
    Apr 11 20:59:07 coco-lap kernel: io scheduler deadline registered
    Apr 11 20:59:07 coco-lap kernel: io scheduler cfq registered (default)
    Apr 11 20:59:07 coco-lap kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Apr 11 20:59:07 coco-lap kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Apr 11 20:59:07 coco-lap kernel: vesafb: mode is 1366x768x32, linelength=5504, pages=0
    Apr 11 20:59:07 coco-lap kernel: vesafb: scrolling: redraw
    Apr 11 20:59:07 coco-lap kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Apr 11 20:59:07 coco-lap kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010800000, using 4160k, total 4160k
    Apr 11 20:59:07 coco-lap kernel: Console: switching to colour frame buffer device 170x48
    Apr 11 20:59:07 coco-lap kernel: fb0: VESA VGA frame buffer device
    Apr 11 20:59:07 coco-lap kernel: intel_idle: MWAIT substates: 0x21120
    Apr 11 20:59:07 coco-lap kernel: intel_idle: v0.4 model 0x3A
    Apr 11 20:59:07 coco-lap kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Apr 11 20:59:07 coco-lap kernel: GHES: HEST is not enabled!
    Apr 11 20:59:07 coco-lap kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Apr 11 20:59:07 coco-lap kernel: Linux agpgart interface v0.103
    Apr 11 20:59:07 coco-lap kernel: rtc_cmos 00:01: RTC can wake from S4
    Apr 11 20:59:07 coco-lap kernel: rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
    Apr 11 20:59:07 coco-lap kernel: rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
    Apr 11 20:59:07 coco-lap kernel: Intel P-state driver initializing.
    Apr 11 20:59:07 coco-lap kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Apr 11 20:59:07 coco-lap kernel: TCP: cubic registered
    Apr 11 20:59:07 coco-lap kernel: NET: Registered protocol family 10
    Apr 11 20:59:07 coco-lap kernel: NET: Registered protocol family 17
    Apr 11 20:59:07 coco-lap kernel: Loading compiled-in X.509 certificates
    Apr 11 20:59:07 coco-lap kernel: registered taskstats version 1
    Apr 11 20:59:07 coco-lap kernel: Magic number: 11:166:999
    Apr 11 20:59:07 coco-lap kernel: rtc_cmos 00:01: hash matches
    Apr 11 20:59:07 coco-lap kernel: pnp0: hash matches
    Apr 11 20:59:07 coco-lap kernel: rtc_cmos 00:01: setting system clock to 2015-04-11 18:58:58 UTC (1428778738)
    Apr 11 20:59:07 coco-lap kernel: PM: Hibernation image not present or could not be loaded.
    Apr 11 20:59:07 coco-lap kernel: Freeing unused kernel memory: 1164K (ffffffff818e7000 - ffffffff81a0a000)
    Apr 11 20:59:07 coco-lap kernel: Write protecting the kernel read-only data: 8192k
    Apr 11 20:59:07 coco-lap kernel: Freeing unused kernel memory: 600K (ffff88000156a000 - ffff880001600000)
    Apr 11 20:59:07 coco-lap kernel: Freeing unused kernel memory: 304K (ffff8800017b4000 - ffff880001800000)
    Apr 11 20:59:07 coco-lap kernel: random: systemd-tmpfile urandom read with 3 bits of entropy available
    Apr 11 20:59:07 coco-lap kernel: SCSI subsystem initialized
    Apr 11 20:59:07 coco-lap kernel: libata version 3.00 loaded.
    Apr 11 20:59:07 coco-lap kernel: ahci 0000:00:1f.2: version 3.0
    Apr 11 20:59:07 coco-lap kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x23 impl SATA mode
    Apr 11 20:59:07 coco-lap kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
    Apr 11 20:59:07 coco-lap kernel: scsi host0: ahci
    Apr 11 20:59:07 coco-lap kernel: scsi host1: ahci
    Apr 11 20:59:07 coco-lap kernel: scsi host2: ahci
    Apr 11 20:59:07 coco-lap kernel: scsi host3: ahci
    Apr 11 20:59:07 coco-lap kernel: scsi host4: ahci
    Apr 11 20:59:07 coco-lap kernel: scsi host5: ahci
    Apr 11 20:59:07 coco-lap kernel: ata1: SATA max UDMA/133 abar m2048@0xd3617000 port 0xd3617100 irq 27
    Apr 11 20:59:07 coco-lap kernel: ata2: SATA max UDMA/133 abar m2048@0xd3617000 port 0xd3617180 irq 27
    Apr 11 20:59:07 coco-lap kernel: ata3: DUMMY
    Apr 11 20:59:07 coco-lap kernel: ata4: DUMMY
    Apr 11 20:59:07 coco-lap kernel: ata5: DUMMY
    Apr 11 20:59:07 coco-lap kernel: ata6: SATA max UDMA/133 abar m2048@0xd3617000 port 0xd3617380 irq 27
    Apr 11 20:59:07 coco-lap kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Apr 11 20:59:07 coco-lap kernel: ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Apr 11 20:59:07 coco-lap kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Apr 11 20:59:07 coco-lap kernel: ata2.00: ATA-8: SATA SSD, S5FAM018, max UDMA/100
    Apr 11 20:59:07 coco-lap kernel: ata2.00: 39091248 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Apr 11 20:59:07 coco-lap kernel: ata2.00: configured for UDMA/100
    Apr 11 20:59:07 coco-lap kernel: ata6.00: ATAPI: HL-DT-ST DVDRAM GU61N, 2.00, max UDMA/133
    Apr 11 20:59:07 coco-lap kernel: ata6.00: configured for UDMA/133
    Apr 11 20:59:07 coco-lap kernel: ata1.00: ATA-8: ST500LT012-9WS142, 0001SDM1, max UDMA/133
    Apr 11 20:59:07 coco-lap kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Apr 11 20:59:07 coco-lap kernel: ata1.00: configured for UDMA/133
    Apr 11 20:59:07 coco-lap kernel: scsi 0:0:0:0: Direct-Access ATA ST500LT012-9WS14 SDM1 PQ: 0 ANSI: 5
    Apr 11 20:59:07 coco-lap kernel: scsi 1:0:0:0: Direct-Access ATA SATA SSD M018 PQ: 0 ANSI: 5
    Apr 11 20:59:07 coco-lap kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Apr 11 20:59:07 coco-lap kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
    Apr 11 20:59:07 coco-lap kernel: sd 1:0:0:0: [sdb] 39091248 512-byte logical blocks: (20.0 GB/18.6 GiB)
    Apr 11 20:59:07 coco-lap kernel: sd 0:0:0:0: [sda] Write Protect is off
    Apr 11 20:59:07 coco-lap kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Apr 11 20:59:07 coco-lap kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Apr 11 20:59:07 coco-lap kernel: sd 1:0:0:0: [sdb] Write Protect is off
    Apr 11 20:59:07 coco-lap kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    Apr 11 20:59:07 coco-lap kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Apr 11 20:59:07 coco-lap kernel: sdb: unknown partition table
    Apr 11 20:59:07 coco-lap kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
    Apr 11 20:59:07 coco-lap kernel: scsi 5:0:0:0: CD-ROM HL-DT-ST DVDRAM GU61N 2.00 PQ: 0 ANSI: 5
    Apr 11 20:59:07 coco-lap kernel: sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/8x writer dvd-ram cd/rw xa/form2 cdda tray
    Apr 11 20:59:07 coco-lap kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Apr 11 20:59:07 coco-lap kernel: sr 5:0:0:0: Attached scsi CD-ROM sr0
    Apr 11 20:59:07 coco-lap kernel: sda: sda1 sda2 sda3 sda4
    Apr 11 20:59:07 coco-lap kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Apr 11 20:59:07 coco-lap kernel: [drm] Initialized drm 1.1.0 20060810
    Apr 11 20:59:07 coco-lap kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
    Apr 11 20:59:07 coco-lap kernel: ACPI: Power Button [PWRB]
    Apr 11 20:59:07 coco-lap kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
    Apr 11 20:59:07 coco-lap kernel: ACPI: Sleep Button [SLPB]
    Apr 11 20:59:07 coco-lap kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    Apr 11 20:59:07 coco-lap kernel: ACPI: Lid Switch [LID]
    Apr 11 20:59:07 coco-lap kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Apr 11 20:59:07 coco-lap kernel: ACPI: Power Button [PWRF]
    Apr 11 20:59:07 coco-lap kernel: [drm] Memory usable by graphics device = 2048M
    Apr 11 20:59:07 coco-lap kernel: checking generic (c0000000 410000) vs hw (c0000000 10000000)
    Apr 11 20:59:07 coco-lap kernel: fb: switching to inteldrmfb from VESA VGA
    Apr 11 20:59:07 coco-lap kernel: Console: switching to colour dummy device 80x25
    Apr 11 20:59:07 coco-lap kernel: [drm] Replacing VGA console driver
    Apr 11 20:59:07 coco-lap kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Apr 11 20:59:07 coco-lap kernel: [drm] Driver supports precise vblank timestamp query.
    Apr 11 20:59:07 coco-lap kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
    Apr 11 20:59:07 coco-lap kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    Apr 11 20:59:07 coco-lap kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    Apr 11 20:59:07 coco-lap kernel: ACPI Error: [\_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20141107/psargs-359)
    Apr 11 20:59:07 coco-lap kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD02._BCL] (Node ffff88015a8c9730), AE_NOT_FOUND (20141107/psparse-536)
    Apr 11 20:59:07 coco-lap kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:36/LNXVIDEO:00/input/input4
    Apr 11 20:59:07 coco-lap kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    Apr 11 20:59:07 coco-lap kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5
    Apr 11 20:59:07 coco-lap kernel: [drm] Initialized i915 1.6.0 20141121 for 0000:00:02.0 on minor 0
    Apr 11 20:59:07 coco-lap kernel: [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
    Apr 11 20:59:07 coco-lap kernel: fbcon: inteldrmfb (fb0) is primary device
    Apr 11 20:59:07 coco-lap kernel: tsc: Refined TSC clocksource calibration: 1696.146 MHz
    Apr 11 20:59:07 coco-lap kernel: Console: switching to colour frame buffer device 170x48
    Apr 11 20:59:07 coco-lap kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    Apr 11 20:59:07 coco-lap kernel: i915 0000:00:02.0: registered panic notifier
    Apr 11 20:59:07 coco-lap kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Apr 11 20:59:07 coco-lap kernel: i8042: Detected active multiplexing controller, rev 1.1
    Apr 11 20:59:07 coco-lap kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Apr 11 20:59:07 coco-lap kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Apr 11 20:59:07 coco-lap kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Apr 11 20:59:07 coco-lap kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Apr 11 20:59:07 coco-lap kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Apr 11 20:59:07 coco-lap kernel: rtsx_pci 0000:03:00.0: enabling device (0000 -> 0002)
    Apr 11 20:59:07 coco-lap kernel: rtsx_pci 0000:03:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 29
    Apr 11 20:59:07 coco-lap kernel: ACPI: bus type USB registered
    Apr 11 20:59:07 coco-lap kernel: usbcore: registered new interface driver usbfs
    Apr 11 20:59:07 coco-lap kernel: usbcore: registered new interface driver hub
    Apr 11 20:59:07 coco-lap kernel: usbcore: registered new device driver usb
    Apr 11 20:59:07 coco-lap kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Apr 11 20:59:07 coco-lap kernel: ehci-pci: EHCI PCI platform driver
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1a.0: debug port 2
    Apr 11 20:59:07 coco-lap kernel: sdhci: Secure Digital Host Controller Interface driver
    Apr 11 20:59:07 coco-lap kernel: sdhci: Copyright(c) Pierre Ossman
    Apr 11 20:59:07 coco-lap kernel: sdhci-pci 0000:03:00.1: SDHCI controller found [10ec:5209] (rev 1)
    Apr 11 20:59:07 coco-lap kernel: sdhci-pci 0000:03:00.1: enabling device (0000 -> 0002)
    Apr 11 20:59:07 coco-lap kernel: sdhci-pci 0000:03:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 11 20:59:07 coco-lap kernel: sdhci-pci 0000:03:00.1: No vmmc regulator found
    Apr 11 20:59:07 coco-lap kernel: sdhci-pci 0000:03:00.1: No vqmmc regulator found
    Apr 11 20:59:07 coco-lap kernel: sdhci-pci 0000:03:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 11 20:59:07 coco-lap kernel: sdhci-pci 0000:03:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xd3619000
    Apr 11 20:59:07 coco-lap kernel: mmc0: SDHCI controller on PCI [0000:03:00.1] using DMA
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    Apr 11 20:59:07 coco-lap kernel: hub 1-0:1.0: USB hub found
    Apr 11 20:59:07 coco-lap kernel: hub 1-0:1.0: 2 ports detected
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1d.0: debug port 2
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xd3618000
    Apr 11 20:59:07 coco-lap kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    Apr 11 20:59:07 coco-lap kernel: hub 2-0:1.0: USB hub found
    Apr 11 20:59:07 coco-lap kernel: hub 2-0:1.0: 2 ports detected
    Apr 11 20:59:07 coco-lap kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    Apr 11 20:59:07 coco-lap kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    Apr 11 20:59:07 coco-lap kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    Apr 11 20:59:07 coco-lap kernel: hub 3-0:1.0: USB hub found
    Apr 11 20:59:07 coco-lap kernel: hub 3-0:1.0: 4 ports detected
    Apr 11 20:59:07 coco-lap kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    Apr 11 20:59:07 coco-lap kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    Apr 11 20:59:07 coco-lap kernel: hub 4-0:1.0: USB hub found
    Apr 11 20:59:07 coco-lap kernel: hub 4-0:1.0: 4 ports detected
    Apr 11 20:59:07 coco-lap kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input6
    Apr 11 20:59:07 coco-lap kernel: Switched to clocksource tsc
    Apr 11 20:59:07 coco-lap kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
    Apr 11 20:59:07 coco-lap kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
    Apr 11 20:59:07 coco-lap kernel: random: nonblocking pool is initialized
    Apr 11 20:59:07 coco-lap kernel: hub 1-1:1.0: USB hub found
    Apr 11 20:59:07 coco-lap kernel: hub 1-1:1.0: 6 ports detected
    Apr 11 20:59:07 coco-lap kernel: hub 2-1:1.0: USB hub found
    Apr 11 20:59:07 coco-lap kernel: hub 2-1:1.0: 8 ports detected
    Apr 11 20:59:07 coco-lap kernel: usb 1-1.1: new high-speed USB device number 3 using ehci-pci
    Apr 11 20:59:07 coco-lap kernel: EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    Apr 11 20:59:07 coco-lap kernel: usb 1-1.3: new full-speed USB device number 4 using ehci-pci
    Apr 11 20:59:07 coco-lap systemd[1]: Cannot add dependency job for unit cups.socket, ignoring: Unit cups.socket failed to load: No such file or directory.
    Apr 11 20:59:07 coco-lap systemd[1]: Cannot add dependency job for unit acpid.socket, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Apr 11 20:59:07 coco-lap systemd[1]: Cannot add dependency job for unit cups.path, ignoring: Unit cups.path failed to load: No such file or directory.
    Apr 11 20:59:07 coco-lap kernel: EXT4-fs (sda3): re-mounted. Opts: data=ordered
    Apr 11 20:59:07 coco-lap systemd-journal[154]: Journal started
    Apr 11 20:59:06 coco-lap systemd-udevd[186]: starting version 218
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000055f (\_SB_.PCI0.PEG0.PEGP.GPIO) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000055f (\_SB_.PCI0.PEG0.PEGP.GPIO) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000055f (\_SB_.PCI0.PEG0.PEGP.GPIO) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 11 20:59:14 coco-lap kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Apr 11 20:59:14 coco-lap kernel: wmi: Mapper loaded
    Apr 11 20:59:14 coco-lap kernel: ACPI: Battery Slot [BAT1] (battery present)
    Apr 11 20:59:14 coco-lap kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Apr 11 20:59:14 coco-lap kernel: ACPI Warning: SystemIO range 0x0000000000004040-0x000000000000405f conflicts with OpRegion 0x0000000000004040-0x000000000000404f (\_SB_.PCI0.SBUS.SMBI) (20141107/utaddress-258)
    Apr 11 20:59:14 coco-lap kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Apr 11 20:59:14 coco-lap kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Apr 11 20:59:14 coco-lap kernel: ACPI: Thermal Zone [THRM] (32 C)
    Apr 11 20:59:14 coco-lap kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
    Apr 11 20:59:14 coco-lap kernel: ACPI: AC Adapter [ACAD] (on-line)
    Apr 11 20:59:14 coco-lap kernel: cfg80211: Calling CRDA to update world regulatory domain
    Apr 11 20:59:14 coco-lap kernel: pps_core: LinuxPPS API ver. 1 registered
    Apr 11 20:59:14 coco-lap kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    Apr 11 20:59:14 coco-lap kernel: PTP clock support registered
    Apr 11 20:59:14 coco-lap kernel: tg3.c:v3.137 (May 11, 2014)
    Apr 11 20:59:14 coco-lap kernel: psmouse serio2: elantech: assuming hardware version 4 (with firmware version 0x461f08)
    Apr 11 20:59:14 coco-lap kernel: psmouse serio2: elantech: Synaptics capabilities query result 0x10, 0x15, 0x0e.
    Apr 11 20:59:14 coco-lap kernel: input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio2/input/input12
    Apr 11 20:59:14 coco-lap kernel: libphy: tg3 mdio bus: probed
    Apr 11 20:59:14 coco-lap kernel: ath: phy0: ASPM enabled: 0x42
    Apr 11 20:59:14 coco-lap kernel: ath: EEPROM regdomain: 0x6c
    Apr 11 20:59:14 coco-lap kernel: ath: EEPROM indicates we should expect a direct regpair map
    Apr 11 20:59:14 coco-lap kernel: ath: Country alpha2 being used: 00
    Apr 11 20:59:14 coco-lap kernel: ath: Regpair used: 0x6c
    Apr 11 20:59:14 coco-lap kernel: ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    Apr 11 20:59:14 coco-lap kernel: ieee80211 phy0: Atheros AR9462 Rev:2 mem=0xffffc90010880000, irq=19
    Apr 11 20:59:14 coco-lap kernel: sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    Apr 11 20:59:14 coco-lap kernel: sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    Apr 11 20:59:14 coco-lap kernel: sound hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    Apr 11 20:59:14 coco-lap kernel: sound hdaudioC0D0: mono: mono_out=0x0
    Apr 11 20:59:14 coco-lap kernel: sound hdaudioC0D0: i

  • Generic method invocations with explicit type parameters

    If I interpret the JSR14 public draft spec (June 23, 2003) section 5.6 correctly the following method invocations with explicit type parameters should compile: package generics;
    public class G121 {
      void f() {
        this.<String>f2();
        <String>f2(); // compilation error
        <String>f3(); // compilation error
      <T> void f2() {
      static <T> void f3() {
    }but the class does not compile: jc -J-showversion generics\G121.javajava version "1.5.0-beta"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta-b32c)
    Java HotSpot(TM) Client VM (build 1.5.0-beta-b32c, mixed mode)
    generics\G121.java:6: illegal start of expression
        <String>f2(); // compilation error
                ^
    generics\G121.java:8: illegal start of expression
        <String>f3(); // compilation error
                ^
    2 errors
    >A bug or do I miss something?

    I get this error:
    LineCount.java:104: cannot find symbol
    symbol : method <java.io.File>sort(java.util.List<java.io.File>)
    location: class java.util.Collections
    Collections.<File>sort( list );
    ^
    1 errorYou don't need the explicit type argument there, but anyway...
    If you look at the docs for Collections.sort(List<T> list) you'll see it is declared as:
    static <T extends Comparable<? super T>> void Collections.sort(List<T> list) Unfortunately, although File implements Comparable, it doesn't actually implement Comparable<File> or even Comparable<Object>, so I guess it can't satisfy the bound.
    You can get it to compile by removing the explicit type argument and casting to the raw type List, but that's not very nice.
    This seems like an oversight to me - File already has both int compareTo(Object o) and int compareTo(File pathname) so I don't see why it can't implement Comparable<File>. This isn't the only such case in the API though, so maybe I'm missing something.
    Mark

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

  • [Solved]After upgrade: Random system stalls, invisible text. drm/i915?

    Hi,
    Short version: I think I have a problem with drm and my graphic card drivers after an update, but I'm not quite sure what to do about it.
    Longer version: ever since an update 2 days ago, I have a range of system problems.
    Most notably, the system stalls or hangs for between 2 and 10 seconds every few minutes. This may happen during any kind of activity - viewing pdfs (zathura or acroread), working in the terminal (lilyterm), web browsing (firefox) or reading/writing email (thunderbird). It also very often stalls during change of awesome's tags, but not every time (only every third or so).
    Then, similar to this recently necromanced thread ( https://bbs.archlinux.org/viewtopic.php?id=135259 ), I have random letters disappearing in thunderbird, but also random paragraphs disappearing in firefox, see screenshot here: http://imgur.com/RhOhL3a
    With the help of dmesg I discovered errors like
    [15170.335247] [drm] stuck on render ring
    [15170.335310] [drm:i915_set_reset_status] *ERROR* render ring hung inside bo (0xebf0000 ctx 0) at 0xec0a050
    popping up a lot, and google-found a few related threads or bug reports ( https://bugs.archlinux.org/task/34611 ,  https://bbs.archlinux.org/viewtopic.php?id=160186 ,  https://bbs.archlinux.org/viewtopic.php?pid=1251547 ). But then my troubles start, because I don't know just exactly what to do with this information. Some seem to speak of downgrading, but downgrade what exactly? Some say this is fixed/solved, but in what sense (reported upstream, fixed upstream, fixed in arch) and then what does is mean that I still get such errors? Should I re-report them, or what should I do to fix? Some system info below.
    Thanks for any pointers!
    $ uname -a
    Linux hostname 3.12.9-1-ARCH #1 SMP PREEMPT Sun Jan 26 09:01:37 CET 2014 x86_64 GNU/Linux
    $ Xorg -version
    X.Org X Server 1.15.0
    $lspci
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:03.0 Communication controller: Intel Corporation Mobile 4 Series Chipset MEI Controller (rev 07)
    00:03.2 IDE interface: Intel Corporation Mobile 4 Series Chipset PT IDER Controller (rev 07)
    00:03.3 Serial controller: Intel Corporation Mobile 4 Series Chipset AMT SOL Redirection (rev 07)
    00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03)
    00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    03:00.0 Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection
    15:00.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev ba)
    15:00.2 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 21)
    15:00.4 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 11)
    15:00.5 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 11)
    $ dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.12.9-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.2 20131219 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Jan 26 09:01:37 CET 2014
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=37e98755-f4db-4377-8615-60068771034d rw quiet
    [ 0.000000] Disabled fast string operations
    [ 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-0x00000000bd6a0fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd6a1000-0x00000000bd6a6fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd6a7000-0x00000000bd7b6fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd7b7000-0x00000000bd80efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd80f000-0x00000000bd8c6fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8c7000-0x00000000bd8d1fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8d2000-0x00000000bd8d4fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8d5000-0x00000000bd8d8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8d9000-0x00000000bd8dcfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8dd000-0x00000000bd8dffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bd8e0000-0x00000000bd906fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bd907000-0x00000000bd907fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bd908000-0x00000000bdb0efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bdb0f000-0x00000000bdb9efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bdb9f000-0x00000000bdbfefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bdbff000-0x00000000bdbfffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bdc00000-0x00000000bfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013bffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: LENOVO 2767WSD/2767WSD, BIOS 7UET70WW (3.00 ) 04/17/2009
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x13c000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-D3FFF write-protect
    [ 0.000000] D4000-DBFFF uncachable
    [ 0.000000] DC000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 13C000000 mask FFC000000 uncachable
    [ 0.000000] 1 base 0BE000000 mask FFE000000 uncachable
    [ 0.000000] 2 base 000000000 mask F80000000 write-back
    [ 0.000000] 3 base 080000000 mask FC0000000 write-back
    [ 0.000000] 4 base 100000000 mask FC0000000 write-back
    [ 0.000000] 5 base 0BDE00000 mask FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xbde00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbdc00 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000f64d0-0x000f64df] mapped at [ffff8800000f64d0]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 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 0x13be00000-0x13bffffff]
    [ 0.000000] [mem 0x13be00000-0x13bffffff] page 2M
    [ 0.000000] BRK [0x01b35000, 0x01b35fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x138000000-0x13bdfffff]
    [ 0.000000] [mem 0x138000000-0x13bdfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x137ffffff]
    [ 0.000000] [mem 0x100000000-0x137ffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbd6a0fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0xbd5fffff] page 2M
    [ 0.000000] [mem 0xbd600000-0xbd6a0fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbd6a7000-0xbd7b6fff]
    [ 0.000000] [mem 0xbd6a7000-0xbd7b6fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbd80f000-0xbd8c6fff]
    [ 0.000000] [mem 0xbd80f000-0xbd8c6fff] page 4k
    [ 0.000000] BRK [0x01b36000, 0x01b36fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbdbff000-0xbdbfffff]
    [ 0.000000] [mem 0xbdbff000-0xbdbfffff] page 4k
    [ 0.000000] BRK [0x01b37000, 0x01b37fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x37998000-0x37cc3fff]
    [ 0.000000] ACPI: RSDP 00000000000f6490 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000bdb4a35d 0008C (v01 LENOVO TP-7U 00003000 LTP 00000000)
    [ 0.000000] ACPI: FACP 00000000bdb4a500 000F4 (v03 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: DSDT 00000000bdb4a8db 0F48F (v01 LENOVO TP-7U 00003000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 00000000bdb8e000 00040
    [ 0.000000] ACPI: SSDT 00000000bdb4a6b4 00227 (v01 LENOVO TP-7U 00003000 MSFT 03000000)
    [ 0.000000] ACPI: ECDT 00000000bdb59d6a 00052 (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: APIC 00000000bdb59dbc 00078 (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: MCFG 00000000bdb59e34 0003C (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: HPET 00000000bdb59e70 00038 (v01 LENOVO TP-7U 00003000 LNVO 00000001)
    [ 0.000000] ACPI: BOOT 00000000bdb59f38 00028 (v01 LENOVO TP-7U 00003000 LTP 00000001)
    [ 0.000000] ACPI: ASF! 00000000bdb59f60 000A0 (v16 LENOVO TP-7U 00003000 PTL 00000001)
    [ 0.000000] ACPI: SSDT 00000000bdb8d213 0054F (v01 LENOVO TP-7U 00003000 INTL 20050513)
    [ 0.000000] ACPI: TCPA 00000000bd907000 00032 (v00 00000000 00000000)
    [ 0.000000] ACPI: SSDT 00000000bd8d4000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 00000000bd8d3000 00274 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 00000000bd8d2000 00242 (v01 PmRef ApTst 00003000 INTL 20050624)
    [ 0.000000] ACPI: DMI detected: Lenovo ThinkPad T400
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013bffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x13bffffff]
    [ 0.000000] NODE_DATA [mem 0x13bff8000-0x13bffcfff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff880137600000-ffff88013b5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13bffffff]
    [ 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-0xbd6a0fff]
    [ 0.000000] node 0: [mem 0xbd6a7000-0xbd7b6fff]
    [ 0.000000] node 0: [mem 0xbd80f000-0xbd8c6fff]
    [ 0.000000] node 0: [mem 0xbdbff000-0xbdbfffff]
    [ 0.000000] node 0: [mem 0x100000000-0x13bffffff]
    [ 0.000000] On node 0 totalpages: 1021959
    [ 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: 12066 pages used for memmap
    [ 0.000000] DMA32 zone: 772202 pages, LIFO batch:31
    [ 0.000000] Normal zone: 3840 pages used for memmap
    [ 0.000000] Normal zone: 245760 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd6a1000-0xbd6a6fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd7b7000-0xbd80efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8c7000-0xbd8d1fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8d2000-0xbd8d4fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8d5000-0xbd8d8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8d9000-0xbd8dcfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8dd000-0xbd8dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd8e0000-0xbd906fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd907000-0xbd907fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd908000-0xbdb0efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdb0f000-0xbdb9efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdb9f000-0xbdbfefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdc00000-0xbfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-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-0xfec0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed8ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
    [ 0.000000] e820: [mem 0xc0000000-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 29 pages/cpu @ffff88013bc00000 s86464 r8192 d24128 u524288
    [ 0.000000] pcpu-alloc: s86464 r8192 d24128 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: 1005968
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=37e98755-f4db-4377-8615-60068771034d rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3940680K/4087836K available (5119K kernel code, 807K rwdata, 1628K rodata, 1144K init, 1288K bss, 147156K 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] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:8448 nr_irqs:712 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2527.053 MHz processor
    [ 0.003338] Calibrating delay loop (skipped), value calculated using timer frequency.. 5056.69 BogoMIPS (lpj=8423510)
    [ 0.003341] pid_max: default: 32768 minimum: 301
    [ 0.003375] Security Framework initialized
    [ 0.003387] AppArmor: AppArmor disabled by boot time parameter
    [ 0.003388] Yama: becoming mindful.
    [ 0.003735] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.007112] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.008042] Mount-cache hash table entries: 256
    [ 0.008292] Initializing cgroup subsys memory
    [ 0.008312] Initializing cgroup subsys devices
    [ 0.008315] Initializing cgroup subsys freezer
    [ 0.008317] Initializing cgroup subsys net_cls
    [ 0.008319] Initializing cgroup subsys blkio
    [ 0.008341] Disabled fast string operations
    [ 0.008346] CPU: Physical Processor ID: 0
    [ 0.008347] CPU: Processor Core ID: 0
    [ 0.008349] mce: CPU supports 6 MCE banks
    [ 0.008357] CPU0: Thermal monitoring enabled (TM2)
    [ 0.008365] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    [ 0.008437] Freeing SMP alternatives memory: 20K (ffffffff819e9000 - ffffffff819ee000)
    [ 0.009258] ACPI: Core revision 20130725
    [ 0.015569] ACPI: All ACPI Tables successfully acquired
    [ 0.016678] ftrace: allocating 20320 entries in 80 pages
    [ 0.027168] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.061017] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz (fam: 06, model: 17, stepping: 0a)
    [ 0.063333] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.063333] ... version: 2
    [ 0.063333] ... bit width: 40
    [ 0.063333] ... generic registers: 2
    [ 0.063333] ... value mask: 000000ffffffffff
    [ 0.063333] ... max period: 000000007fffffff
    [ 0.063333] ... fixed-purpose events: 3
    [ 0.063333] ... event mask: 0000000700000003
    [ 0.083392] smpboot: Booting Node 0, Processors # 1 OK
    [ 0.006666] Disabled fast string operations
    [ 0.096626] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.096639] Brought up 2 CPUs
    [ 0.096642] smpboot: Total of 2 processors activated (10112.38 BogoMIPS)
    [ 0.098382] devtmpfs: initialized
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbd8c7000-0xbd8d1fff] (45056 bytes)
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbd8d9000-0xbd8dcfff] (16384 bytes)
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbd8e0000-0xbd906fff] (159744 bytes)
    [ 0.105175] PM: Registering ACPI NVS region [mem 0xbdb0f000-0xbdb9efff] (589824 bytes)
    [ 0.105175] RTC time: 9:58:53, date: 01/27/14
    [ 0.105175] NET: Registered protocol family 16
    [ 0.105175] cpuidle: using governor ladder
    [ 0.105175] cpuidle: using governor menu
    [ 0.105175] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.105175] ACPI: bus type PCI registered
    [ 0.105175] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.105175] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    [ 0.105175] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
    [ 0.110884] PCI: Using configuration type 1 for base access
    [ 0.111004] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.111005] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.111006] mtrr: corrected configuration.
    [ 0.113386] bio: create slab <bio-0> at 0
    [ 0.113399] ACPI: Added _OSI(Module Device)
    [ 0.113399] ACPI: Added _OSI(Processor Device)
    [ 0.113399] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.113399] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.113399] ACPI: Added _OSI(Linux)
    [ 0.114883] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.120617] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via DMI
    [ 0.136948] ACPI: SSDT 00000000bd8d7c20 002C8 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.137309] ACPI: Dynamic OEM Table Load:
    [ 0.137311] ACPI: SSDT (null) 002C8 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    [ 0.137428] ACPI: SSDT 00000000bd8d5020 0087A (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.137809] ACPI: Dynamic OEM Table Load:
    [ 0.137811] ACPI: SSDT (null) 0087A (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.156862] ACPI: SSDT 00000000bd8d6ca0 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.157236] ACPI: Dynamic OEM Table Load:
    [ 0.157238] ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    [ 0.163404] ACPI: SSDT 00000000bd8d6f20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.166956] ACPI: Dynamic OEM Table Load:
    [ 0.166958] ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    [ 0.176786] ACPI: Interpreter enabled
    [ 0.176792] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130725/hwxface-571)
    [ 0.176796] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130725/hwxface-571)
    [ 0.176808] ACPI: (supports S0 S3 S4 S5)
    [ 0.176810] ACPI: Using IOAPIC for interrupt routing
    [ 0.176832] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.180490] ACPI: ACPI Dock Station Driver: 3 docks/bays found
    [ 0.200183] ACPI: Power Resource [PUBS] (on)
    [ 0.204053] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204145] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204234] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204323] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204413] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204501] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204593] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204682] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
    [ 0.204732] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.204914] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.205251] acpi PNP0A08:00: ACPI _OSC control (0x1d) granted
    [ 0.205280] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.205450] PCI host bridge to bus 0000:00
    [ 0.205453] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.205455] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.205457] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.205459] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.205461] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.205462] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.205464] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.205466] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff]
    [ 0.205474] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
    [ 0.205493] DMAR: Forcing write-buffer flush capability
    [ 0.205494] DMAR: Disabling IOMMU for graphics on this chipset
    [ 0.205570] pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
    [ 0.205582] pci 0000:00:02.0: reg 0x10: [mem 0xfa000000-0xfa3fffff 64bit]
    [ 0.205589] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.205594] pci 0000:00:02.0: reg 0x20: [io 0x1800-0x1807]
    [ 0.205673] pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
    [ 0.205683] pci 0000:00:02.1: reg 0x10: [mem 0xf4100000-0xf41fffff 64bit]
    [ 0.205773] pci 0000:00:03.0: [8086:2a44] type 00 class 0x078000
    [ 0.205788] pci 0000:00:03.0: reg 0x10: [mem 0xfa626800-0xfa62680f 64bit]
    [ 0.205837] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
    [ 0.205906] pci 0000:00:03.2: [8086:2a46] type 00 class 0x010185
    [ 0.205919] pci 0000:00:03.2: reg 0x10: [io 0x1828-0x182f]
    [ 0.205926] pci 0000:00:03.2: reg 0x14: [io 0x180c-0x180f]
    [ 0.205932] pci 0000:00:03.2: reg 0x18: [io 0x1820-0x1827]
    [ 0.205939] pci 0000:00:03.2: reg 0x1c: [io 0x1808-0x180b]
    [ 0.205945] pci 0000:00:03.2: reg 0x20: [io 0x1810-0x181f]
    [ 0.206039] pci 0000:00:03.3: [8086:2a47] type 00 class 0x070002
    [ 0.206052] pci 0000:00:03.3: reg 0x10: [io 0x1830-0x1837]
    [ 0.206059] pci 0000:00:03.3: reg 0x14: [mem 0xfa424000-0xfa424fff]
    [ 0.206206] pci 0000:00:19.0: [8086:10f5] type 00 class 0x020000
    [ 0.206230] pci 0000:00:19.0: reg 0x10: [mem 0xfa400000-0xfa41ffff]
    [ 0.206241] pci 0000:00:19.0: reg 0x14: [mem 0xfa425000-0xfa425fff]
    [ 0.206252] pci 0000:00:19.0: reg 0x18: [io 0x1840-0x185f]
    [ 0.206338] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.206385] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.206423] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    [ 0.206478] pci 0000:00:1a.0: reg 0x20: [io 0x1860-0x187f]
    [ 0.206577] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.206692] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    [ 0.206747] pci 0000:00:1a.1: reg 0x20: [io 0x1880-0x189f]
    [ 0.206860] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    [ 0.206915] pci 0000:00:1a.2: reg 0x20: [io 0x18a0-0x18bf]
    [ 0.207011] pci 0000:00:1a.2: System wakeup disabled by ACPI
    [ 0.207061] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    [ 0.207086] pci 0000:00:1a.7: reg 0x10: [mem 0xfa626c00-0xfa626fff]
    [ 0.207194] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.207238] pci 0000:00:1a.7: System wakeup disabled by ACPI
    [ 0.207283] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
    [ 0.207303] pci 0000:00:1b.0: reg 0x10: [mem 0xfa420000-0xfa423fff 64bit]
    [ 0.207398] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.207451] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.207492] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    [ 0.207592] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.207640] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.207679] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
    [ 0.207778] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.207826] pci 0000:00:1c.1: System wakeup disabled by ACPI
    [ 0.207874] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    [ 0.207929] pci 0000:00:1d.0: reg 0x20: [io 0x18c0-0x18df]
    [ 0.208024] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.208063] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    [ 0.208118] pci 0000:00:1d.1: reg 0x20: [io 0x18e0-0x18ff]
    [ 0.208231] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    [ 0.208286] pci 0000:00:1d.2: reg 0x20: [io 0x1c00-0x1c1f]
    [ 0.208410] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    [ 0.208436] pci 0000:00:1d.7: reg 0x10: [mem 0xfa627000-0xfa6273ff]
    [ 0.208543] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.208588] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.208629] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.208735] pci 0000:00:1e.0: System wakeup disabled by ACPI
    [ 0.208776] pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
    [ 0.208987] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
    [ 0.209014] pci 0000:00:1f.2: reg 0x10: [io 0x1c48-0x1c4f]
    [ 0.209025] pci 0000:00:1f.2: reg 0x14: [io 0x183c-0x183f]
    [ 0.209036] pci 0000:00:1f.2: reg 0x18: [io 0x1c40-0x1c47]
    [ 0.209047] pci 0000:00:1f.2: reg 0x1c: [io 0x1838-0x183b]
    [ 0.209057] pci 0000:00:1f.2: reg 0x20: [io 0x1c20-0x1c3f]
    [ 0.209068] pci 0000:00:1f.2: reg 0x24: [mem 0xfa626000-0xfa6267ff]
    [ 0.209136] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.209212] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
    [ 0.209233] pci 0000:00:1f.3: reg 0x10: [mem 0xfa627400-0xfa6274ff 64bit]
    [ 0.209262] pci 0000:00:1f.3: reg 0x20: [io 0x1c60-0x1c7f]
    [ 0.209416] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.209529] pci 0000:03:00.0: [8086:4237] type 00 class 0x028000
    [ 0.209568] pci 0000:03:00.0: reg 0x10: [mem 0xf4200000-0xf4201fff 64bit]
    [ 0.209761] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.216689] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.216696] pci 0000:00:1c.1: bridge window [mem 0xf4200000-0xf42fffff]
    [ 0.216780] pci 0000:15:00.0: [1180:0476] type 02 class 0x060700
    [ 0.216803] pci 0000:15:00.0: proprietary Ricoh MMC controller disabled (via cardbus function)
    [ 0.216805] pci 0000:15:00.0: MMC cards are now supported by standard SDHCI controller
    [ 0.216823] pci 0000:15:00.0: reg 0x10: [mem 0xf4300000-0xf4300fff]
    [ 0.216864] pci 0000:15:00.0: supports D1 D2
    [ 0.216866] pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.216927] pci 0000:15:00.2: [1180:0822] type 00 class 0x080500
    [ 0.216953] pci 0000:15:00.2: reg 0x10: [mem 0xf4301000-0xf43010ff]
    [ 0.217066] pci 0000:15:00.2: supports D1 D2
    [ 0.217068] pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.217125] pci 0000:15:00.4: [1180:0592] type 00 class 0x088000
    [ 0.217150] pci 0000:15:00.4: reg 0x10: [mem 0xf4301800-0xf43018ff]
    [ 0.217263] pci 0000:15:00.4: supports D1 D2
    [ 0.217265] pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.217322] pci 0000:15:00.5: [1180:0852] type 00 class 0x088000
    [ 0.217347] pci 0000:15:00.5: reg 0x10: [mem 0xf4301c00-0xf4301cff]
    [ 0.217460] pci 0000:15:00.5: supports D1 D2
    [ 0.217462] pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.217564] pci 0000:00:1e.0: PCI bridge to [bus 15-18] (subtractive decode)
    [ 0.217569] pci 0000:00:1e.0: bridge window [io 0x3000-0x6fff]
    [ 0.217574] pci 0000:00:1e.0: bridge window [mem 0xf4300000-0xf7ffffff]
    [ 0.217581] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 0.217583] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.217585] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.217586] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.217588] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.217590] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.217592] pci 0000:00:1e.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.217593] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    [ 0.217653] pci_bus 0000:16: busn_res: can not insert [bus 16-ff] under [bus 15-18] (conflicts with (null) [bus 15-18])
    [ 0.217657] pci_bus 0000:16: busn_res: [bus 16-ff] end is updated to 17
    [ 0.217685] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.223809] ACPI: Enabled 3 GPEs in block 00 to 3F
    [ 0.223820] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.223857] Found 1 acpi root devices
    [ 0.223922] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 0.223986] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.223986] vgaarb: loaded
    [ 0.223986] vgaarb: bridge control possible 0000:00:02.0
    [ 0.223986] PCI: Using ACPI for IRQ routing
    [ 0.227502] PCI: pci_cache_line_size set to 64 bytes
    [ 0.227586] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.227588] e820: reserve RAM buffer [mem 0xbd6a1000-0xbfffffff]
    [ 0.227590] e820: reserve RAM buffer [mem 0xbd7b7000-0xbfffffff]
    [ 0.227592] e820: reserve RAM buffer [mem 0xbd8c7000-0xbfffffff]
    [ 0.227594] e820: reserve RAM buffer [mem 0xbdc00000-0xbfffffff]
    [ 0.227685] NetLabel: Initializing
    [ 0.227687] NetLabel: domain hash size = 128
    [ 0.227688] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.227700] NetLabel: unlabeled traffic allowed by default
    [ 0.227715] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.227720] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.227724] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.229742] Switched to clocksource hpet
    [ 0.232362] pnp: PnP ACPI init
    [ 0.232379] ACPI: bus type PNP registered
    [ 0.252696] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.252699] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    [ 0.252701] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    [ 0.252703] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
    [ 0.252705] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
    [ 0.252707] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
    [ 0.252709] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    [ 0.252711] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    [ 0.252713] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    [ 0.252715] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    [ 0.252716] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.252718] system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
    [ 0.252721] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 0.252723] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [ 0.252727] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.272659] system 00:01: [io 0x1000-0x107f] could not be reserved
    [ 0.272661] system 00:01: [io 0x1180-0x11ff] has been reserved
    [ 0.272664] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 0.272666] system 00:01: [io 0x15e0-0x15ef] has been reserved
    [ 0.272667] system 00:01: [io 0x1600-0x167f] has been reserved
    [ 0.272669] system 00:01: [io 0x1680-0x169f] has been reserved
    [ 0.272672] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.272674] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.272676] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
    [ 0.272678] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.272680] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.272682] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 0.272684] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.272739] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.272748] pnp 00:03: [dma 4]
    [ 0.272766] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.272792] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.272830] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.272861] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.272892] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.272921] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
    [ 0.292844] pnp 00:09: Plug and Play ACPI device, IDs PNP0c31 (active)
    [ 0.293234] pnp: PnP ACPI: found 10 devices
    [ 0.293236] ACPI: bus type PNP unregistered
    [ 0.300009] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
    [ 0.300014] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    [ 0.300016] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
    [ 0.300026] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 0.300029] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 0.300052] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.300054] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.300056] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.300058] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.300060] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.300065] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
    [ 0.300068] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.300071] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.300074] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.300076] pci 0000:00:1c.1: BAR 13: assigned [io 0x7000-0x7fff]
    [ 0.300079] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.300083] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.300088] pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff]
    [ 0.300093] pci 0000:00:1c.0: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.300100] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.300103] pci 0000:00:1c.1: bridge window [io 0x7000-0x7fff]
    [ 0.300108] pci 0000:00:1c.1: bridge window [mem 0xf4200000-0xf42fffff]
    [ 0.300112] pci 0000:00:1c.1: bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.300121] pci 0000:15:00.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
    [ 0.300123] pci 0000:15:00.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
    [ 0.300125] pci 0000:15:00.0: res[13]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.300127] pci 0000:15:00.0: res[14]=[io 0x0100-0x00ff] get_res_add_size add_size 100
    [ 0.300129] pci 0000:15:00.0: BAR 15: assigned [mem 0xf0000000-0xf3ffffff pref]
    [ 0.300133] pci 0000:15:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
    [ 0.300135] pci 0000:15:00.0: BAR 13: assigned [io 0x3000-0x30ff]
    [ 0.300137] pci 0000:15:00.0: BAR 14: assigned [io 0x3400-0x34ff]
    [ 0.300139] pci 0000:15:00.0: CardBus bridge to [bus 16-17]
    [ 0.300140] pci 0000:15:00.0: bridge window [io 0x3000-0x30ff]
    [ 0.300146] pci 0000:15:00.0: bridge window [io 0x3400-0x34ff]
    [ 0.300151] pci 0000:15:00.0: bridge window [mem 0xf0000000-0xf3ffffff pref]
    [ 0.300156] pci 0000:15:00.0: bridge window [mem 0xc4000000-0xc7ffffff]
    [ 0.300162] pci 0000:00:1e.0: PCI bridge to [bus 15-18]
    [ 0.300165] pci 0000:00:1e.0: bridge window [io 0x3000-0x6fff]
    [ 0.300170] pci 0000:00:1e.0: bridge window [mem 0xf4300000-0xf7ffffff]
    [ 0.300174] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 0.300182] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.300184] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.300186] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.300187] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.300189] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.300191] pci_bus 0000:00: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.300192] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfebfffff]
    [ 0.300195] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 0.300196] pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
    [ 0.300198] pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    [ 0.300200] pci_bus 0000:03: resource 0 [io 0x7000-0x7fff]
    [ 0.300202] pci_bus 0000:03: resource 1 [mem 0xf4200000-0xf42fffff]
    [ 0.300203] pci_bus 0000:03: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
    [ 0.300205] pci_bus 0000:15: resource 0 [io 0x3000-0x6fff]
    [ 0.300207] pci_bus 0000:15: resource 1 [mem 0xf4300000-0xf7ffffff]
    [ 0.300209] pci_bus 0000:15: resource 2 [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 0.300211] pci_bus 0000:15: resource 4 [io 0x0000-0x0cf7]
    [ 0.300212] pci_bus 0000:15: resource 5 [io 0x0d00-0xffff]
    [ 0.300214] pci_bus 0000:15: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.300216] pci_bus 0000:15: resource 7 [mem 0x000d4000-0x000d7fff]
    [ 0.300217] pci_bus 0000:15: resource 8 [mem 0x000d8000-0x000dbfff]
    [ 0.300219] pci_bus 0000:15: resource 9 [mem 0x000dc000-0x000dffff]
    [ 0.300221] pci_bus 0000:15: resource 10 [mem 0xc0000000-0xfebfffff]
    [ 0.300223] pci_bus 0000:16: resource 0 [io 0x3000-0x30ff]
    [ 0.300224] pci_bus 0000:16: resource 1 [io 0x3400-0x34ff]
    [ 0.300226] pci_bus 0000:16: resource 2 [mem 0xf0000000-0xf3ffffff pref]
    [ 0.300228] pci_bus 0000:16: resource 3 [mem 0xc4000000-0xc7ffffff]
    [ 0.300265] NET: Registered protocol family 2
    [ 0.300457] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.300690] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.300878] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.300932] TCP: reno registered
    [ 0.300940] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.300970] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.301053] NET: Registered protocol family 1
    [ 0.301066] pci 0000:00:02.0: Boot video device
    [ 0.301991] PCI: CLS 64 bytes, default 64
    [ 0.302031] Unpacking initramfs...
    [ 0.363199] Freeing initrd memory: 3248K (ffff880037998000 - ffff880037cc4000)
    [ 0.363208] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.363210] software IO TLB [mem 0xb96a1000-0xbd6a1000] (64MB) mapped at [ffff8800b96a1000-ffff8800bd6a0fff]
    [ 0.363238] Simple Boot Flag at 0x35 set to 0x1
    [ 0.363417] Scanning for low memory corruption every 60 seconds
    [ 0.363745] audit: initializing netlink socket (disabled)
    [ 0.363761] type=2000 audit(1390816732.363:1): initialized
    [ 0.376055] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.377555] zbud: loaded
    [ 0.377716] VFS: Disk quotas dquot_6.5.2
    [ 0.377758] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.377933] msgmni has been set to 7703
    [ 0.378225] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.378261] io scheduler noop registered
    [ 0.378263] io scheduler deadline registered
    [ 0.378292] io scheduler cfq registered (default)
    [ 0.378503] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.378668] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.378786] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.378791] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.378813] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
    [ 0.378816] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.378820] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
    [ 0.378834] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.378869] pciehp 0000:00:1c.0:pcie04: HPC vendor_id 8086 device_id 2940 ss_vid 17aa ss_did 20f3
    [ 0.378898] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
    [ 0.378910] pciehp 0000:00:1c.1:pcie04: HPC vendor_id 8086 device_id 2942 ss_vid 17aa ss_did 20f3
    [ 0.378934] pciehp 0000:00:1c.1:pcie04: service driver pciehp loaded
    [ 0.378939] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.378995] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.378997] vesafb: scrolling: redraw
    [ 0.378999] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.379450] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004800000, using 3072k, total 3072k
    [ 0.403394] Console: switching to colour frame buffer device 128x48
    [ 0.427226] fb0: VESA VGA frame buffer device
    [ 0.427238] intel_idle: does not run on family 6 model 23
    [ 0.427277] GHES: HEST is not enabled!
    [ 0.427334] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.448019] 0000:00:03.3: ttyS0 at I/O 0x1830 (irq = 17, base_baud = 115200) is a 16550A
    [ 0.448162] Linux agpgart interface v0.103
    [ 0.448228] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 0.456045] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.456072] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.456170] mousedev: PS/2 mouse device common for all mice
    [ 0.456238] rtc_cmos 00:06: RTC can wake from S4
    [ 0.456379] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.456408] rtc_cmos 00:06: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.456472] drop_monitor: Initializing network drop monitor service
    [ 0.456534] TCP: cubic registered
    [ 0.456631] NET: Registered protocol family 10
    [ 0.456816] NET: Registered protocol family 17
    [ 0.456828] Key type dns_resolver registered
    [ 0.457049] registered taskstats version 1
    [ 0.457713] Magic number: 14:393:981
    [ 0.457799] rtc_cmos 00:06: setting system clock to 2014-01-27 09:58:53 UTC (1390816733)
    [ 0.457879] PM: Hibernation image not present or could not be loaded.
    [ 0.459170] Freeing unused kernel memory: 1144K (ffffffff818cb000 - ffffffff819e9000)
    [ 0.459172] Write protecting the kernel read-only data: 8192k
    [ 0.461316] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.462040] Freeing unused kernel memory: 1012K (ffff880001503000 - ffff880001600000)
    [ 0.463192] Freeing unused kernel memory: 420K (ffff880001797000 - ffff880001800000)
    [ 0.472217] systemd-udevd[47]: starting version 208
    [ 0.495432] ACPI: bus type USB registered
    [ 0.495458] usbcore: registered new interface driver usbfs
    [ 0.495469] usbcore: registered new interface driver hub
    [ 0.495512] usbcore: registered new device driver usb
    [ 0.495844] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.496041] uhci_hcd: USB Universal Host Controller Interface driver
    [ 0.496152] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 0.496156] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 0.496161] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.496201] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001860
    [ 0.496371] hub 1-0:1.0: USB hub found
    [ 0.496380] hub 1-0:1.0: 2 ports detected
    [ 0.496558] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 0.496562] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 0.496567] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    [ 0.496602] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001880
    [ 0.496771] hub 2-0:1.0: USB hub found
    [ 0.496779] hub 2-0:1.0: 2 ports detected
    [ 0.496929] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 0.496932] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 0.496947] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
    [ 0.496967] SCSI subsystem initialized
    [ 0.496986] uhci_hcd 0000:00:1a.2: irq 22, io base 0x000018a0
    [ 0.497128] hub 3-0:1.0: USB hub found
    [ 0.497136] hub 3-0:1.0: 2 ports detected
    [ 0.497306] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 0.497310] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 0.497315] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 0.497350] uhci_hcd 0000:00:1d.0: irq 16, io base 0x000018c0
    [ 0.497482] hub 4-0:1.0: USB hub found
    [ 0.497488] hub 4-0:1.0: 2 ports detected
    [ 0.497640] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 0.497643] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 0.497648] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
    [ 0.497684] uhci_hcd 0000:00:1d.1: irq 17, io base 0x000018e0
    [ 0.497810] hub 5-0:1.0: USB hub found
    [ 0.497817] hub 5-0:1.0: 2 ports detected
    [ 0.497957] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 0.497960] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 0.497965] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
    [ 0.498003] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001c00
    [ 0.498556] hub 6-0:1.0: USB hub found
    [ 0.498564] hub 6-0:1.0: 2 ports detected
    [ 0.498723] libata version 3.00 loaded.
    [ 0.499070] pata_acpi 0000:00:03.2: setting latency timer to 64
    [ 0.499364] ata_generic 0000:00:03.2: setting latency timer to 64
    [ 0.499867] ehci-pci: EHCI PCI platform driver
    [ 0.500825] scsi0 : ata_generic
    [ 0.500976] scsi1 : ata_generic
    [ 0.501017] ata1: PATA max UDMA/100 cmd 0x1828 ctl 0x180c bmdma 0x1810 irq 18
    [ 0.501019] ata2: PATA max UDMA/100 cmd 0x1820 ctl 0x1808 bmdma 0x1818 irq 18
    [ 0.501120] ehci-pci 0000:00:1a.7: setting latency timer to 64
    [ 0.501420] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 0.501427] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 7
    [ 0.501441] ehci-pci 0000:00:1a.7: debug port 1
    [ 0.505335] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 0.505357] ehci-pci 0000:00:1a.7: irq 23, io mem 0xfa626c00
    [ 0.505888] sdhci: Secure Digital Host Controller Interface driver
    [ 0.505890] sdhci: Copyright(c) Pierre Ossman
    [ 0.506101] sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
    [ 0.506120] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.507472] sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 0.508483] sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
    [ 0.508545] mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
    [ 0.513357] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 0.513540] hub 7-0:1.0: USB hub found
    [ 0.513548] hub 7-0:1.0: 6 ports detected
    [ 0.536738] hub 1-0:1.0: USB hub found
    [ 0.536747] hub 1-0:1.0: 2 ports detected
    [ 0.560057] hub 2-0:1.0: USB hub found
    [ 0.560064] hub 2-0:1.0: 2 ports detected
    [ 0.583392] hub 3-0:1.0: USB hub found
    [ 0.583400] hub 3-0:1.0: 2 ports detected
    [ 0.583584] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 0.583900] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 0.583907] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
    [ 0.583922] ehci-pci 0000:00:1d.7: debug port 1
    [ 0.587822] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 0.587841] ehci-pci 0000:00:1d.7: irq 19, io mem 0xfa627000
    [ 0.596687] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 0.596823] hub 8-0:1.0: USB hub found
    [ 0.596830] hub 8-0:1.0: 6 ports detected
    [ 0.620052] hub 4-0:1.0: USB hub found
    [ 0.620059] hub 4-0:1.0: 2 ports detected
    [ 0.643388] hub 5-0:1.0: USB hub found
    [ 0.643395] hub 5-0:1.0: 2 ports detected
    [ 0.666727] hub 6-0:1.0: USB hub found
    [ 0.666736] hub 6-0:1.0: 2 ports detected
    [ 0.666812] ahci 0000:00:1f.2: version 3.0
    [ 0.666915] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 0.666955] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.666976] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x1 impl SATA mode
    [ 0.666979] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc sxs
    [ 0.666984] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.667519] scsi2 : ahci
    [ 0.667582] scsi3 : ahci
    [ 0.667641] scsi4 : ahci
    [ 0.667699] scsi5 : ahci
    [ 0.667742] ata3: SATA max UDMA/133 abar m2048@0xfa626000 port 0xfa626100 irq 42
    [ 0.667743] ata4: DUMMY
    [ 0.667745] ata5: DUMMY
    [ 0.667746] ata6: DUMMY
    [ 0.986695] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 0.987559] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 0.987562] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 0.987564] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 0.988382] ata3.00: ATA-8: HGST HTS725050A7E630, GH2ZB550, max UDMA/133
    [ 0.988384] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.989285] ata3.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 0.989287] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 0.989289] ata3.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 0.990098] ata3.00: configured for UDMA/133
    [ 0.990208] scsi 2:0:0:0: Direct-Access ATA HGST HTS725050A7 GH2Z PQ: 0 ANSI: 5
    [ 0.992941] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 0.992944] sd 2:0:0:0: [sda] 4096-byte physical blocks
    [ 0.992998] sd 2:0:0:0: [sda] Write Protect is off
    [ 0.993001] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.993036] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.076699] usb 7-6: new high-speed USB device number 3 using ehci-pci
    [ 1.077234] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
    [ 1.077733] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.363358] tsc: Refined TSC clocksource calibration: 2526.999 MHz
    [ 1.436698] usb 2-2: new full-speed USB device number 2 using uhci_hcd
    [ 1.826147] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.363390] Switched to clocksource tsc
    [ 2.384837] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 2.385108] systemd[1]: Set hostname to <hostname>.
    [ 3.020950] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.021003] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.021015] systemd[1]: Starting Remote File Systems.
    [ 3.021026] systemd[1]: Reached target Remote File Systems.
    [ 3.021034] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.021061] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.021070] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.021093] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.021102] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.021121] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.021129] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.021153] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.021165] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.021196] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.021205] systemd[1]: Starting Journal Socket.
    [ 3.021245] systemd[1]: Listening on Journal Socket.
    [ 3.021449] systemd[1]: Starting Apply Kernel Variables...
    [ 3.021979] systemd[1]: Starting Journal Service...
    [ 3.022329] systemd[1]: Started Journal Service.
    [ 3.527540] thinkpad_ec: thinkpad_ec 0.41 loaded.
    [ 3.548541] tp_smapi 0.41 loading...
    [ 3.548630] tp_smapi successfully loaded (smapi_port=0xb2).
    [ 3.692910] systemd-journald[104]: Vacuuming done, freed 0 bytes
    [ 4.052057] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [ 4.275058] systemd-udevd[135]: starting version 208
    [ 5.539050] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    [ 5.539194] ACPI: Lid Switch [LID]
    [ 5.539249] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 5.539253] ACPI: Sleep Button [SLPB]
    [ 5.539316] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 5.539319] ACPI: Power Button [PWRF]
    [ 5.558409] ACPI: Requesting acpi_cpufreq
    [ 5.576148] Monitor-Mwait will be used to enter C-1 state
    [ 5.576156] Monitor-Mwait will be used to enter C-2 state
    [ 5.576160] Monitor-Mwait will be used to enter C-3 state
    [ 5.576163] tsc: Marking TSC unstable due to TSC halts in idle
    [ 5.576179] ACPI: acpi_idle registered with cpuidle
    [ 5.576205] Switched to clocksource hpet
    [ 5.612079] agpgart-intel 0000:00:00.0: Intel GM45 Chipset
    [ 5.612185] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 5.613189] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [ 5.613498] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 5.624658] wmi: Mapper loaded
    [ 5.686902] [drm] Initialized drm 1.1.0 20060810
    [ 5.759536] Bluetooth: Core ver 2.16
    [ 5.759560] NET: Registered protocol family 31
    [ 5.759562] Bluetooth: HCI device and connection manager initialized
    [ 5.759578] Bluetooth: HCI socket layer initialized
    [ 5.759580] Bluetooth: L2CAP socket layer initialized
    [ 5.759587] Bluetooth: SCO socket layer initialized
    [ 5.775533] [drm] Memory usable by graphics device = 2048M
    [ 5.775538] checking generic (d0000000 300000) vs hw (d0000000 10000000)
    [ 5.775540] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 5.775561] Console: switching to colour dummy device 80x25
    [ 5.775662] i915 0000:00:02.0: setting latency timer to 64
    [ 5.813939] i915 0000:00:02.0: irq 43 for MSI/MSI-X
    [ 5.813948] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 5.813949] [drm] Driver supports precise vblank timestamp query.
    [ 5.813994] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 5.815326] pps_core: LinuxPPS API ver. 1 registered
    [ 5.815328] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 5.815860] PTP clock support registered
    [ 5.868929] ACPI: AC Adapter [AC] (on-line)
    [ 5.908828] fbcon: inteldrmfb (fb0) is primary device
    [ 5.973459] tpm_tis 00:09: 1.2 TPM (device-id 0x1020, rev-id 6)
    [ 5.973460] tpm_tis 00:09: Intel iTPM workaround enabled
    [ 5.993930] ACPI: Battery Slot [BAT0] (battery present)
    [ 5.995201] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.995202] ACPI: Thermal Zone [THM0] (18 C)
    [ 5.996577] thermal LNXTHERM:01: registered as thermal_zone1
    [ 5.996578] ACPI: Thermal Zone [THM1] (17 C)
    [ 6.007966] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 6.007967] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 6.040594] usbcore: registered new interface driver btusb
    [ 6.054550] Non-volatile memory driver v1.3
    [ 6.078033] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 6.078034] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 6.078035] thinkpad_acpi: ThinkPad BIOS 7UET70WW (3.00 ), EC 7VHT14WW-1.03
    [ 6.078035] thinkpad_acpi: Lenovo ThinkPad T400, model 2767WSD
    [ 6.097896] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 6.098029] thinkpad_acpi: radio switch found; radios are enabled
    [ 6.098111] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 6.098111] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 6.100039] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [ 6.102704] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 6.102770] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 6.103685] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
    [ 6.116703] tpm_tis 00:09: TPM is disabled/deactivated (0x6)
    [ 6.151185] media: Linux media interface: v0.10
    [ 6.188125] Linux video capture interface: v2.00
    [ 6.448191] yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
    [ 6.459562] uvcvideo: Found UVC 1.00 device Integrated Camera (17ef:1004)
    [ 6.464806] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.7/usb7/7-6/7-6:1.0/input/input6
    [ 6.464847] usbcore: registered new interface driver uvcvideo
    [ 6.464848] USB Video Class driver (1.1.1)
    [ 6.486718] Console: switching to colour frame buffer device 180x56
    [ 6.489860] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 6.489862] i915 0000:00:02.0: registered panic notifier
    [ 6.495027] acpi device:02: registered as cooling_device2
    [ 6.495078] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    [ 6.495118] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7
    [ 6.495167] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 6.495243] mei_me 0000:00:03.0: setting latency timer to 64
    [ 6.495270] mei_me 0000:00:03.0: irq 44 for MSI/MSI-X
    [ 6.501432] e1000e 0000:00:19.0: setting latency timer to 64
    [ 6.501513] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 6.501534] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 6.574169] yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
    [ 6.574173] yenta_cardbus 0000:15:00.0: Socket status: 30000006
    [ 6.574179] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [io 0x3000-0x6fff]
    [ 6.574181] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf4300000-0xf7ffffff]
    [ 6.574184] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4300000-0xf7ffffff:
    [ 6.574188] excluding 0xf4300000-0xf46cffff
    [ 6.574196] yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf3ffffff 64bit pref]
    [ 6.574198] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf3ffffff:
    [ 6.574207] excluding 0xf0000000-0xf3ffffff
    [ 6.576532] r592: driver successfully loaded
    [ 6.695857] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:24:7e:6a:db:bf
    [ 6.695861] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 6.695887] e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
    [ 6.695952] ACPI Warning: 0x0000000000001028-0x000000000000102f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20130725/utaddress-251)
    [ 6.695957] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.695961] ACPI Warning: 0x00000000000011b0-0x00000000000011bf SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 6.695964] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.695966] ACPI Warning: 0x0000000000001180-0x00000000000011af SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20130725/utaddress-251)
    [ 6.695968] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.695969] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 6.695997] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 6.696201] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 6.715445] input: PC Speaker as /devices/platform/pcspkr/input/input9
    [ 6.781879] cfg80211: Calling CRDA to update world regulatory domain
    [ 6.810601] microcode: CPU0 sig=0x1067a, pf=

    I have the same problem, but only with firefox, because is the only program that i use (also watch videos with VLC, but this have no problem).
    I think we should report, but i'm not sure where.
    A screenshot: http://imgur.com/QKrisQa
    $lspci
    00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03)
    00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio Controller (rev 01)
    00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 (rev 01)
    00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 (rev 01)
    00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #1 (rev 01)
    00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #2 (rev 01)
    00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #3 (rev 01)
    00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #4 (rev 01)
    00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI Controller (rev 01)
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
    00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
    00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller [IDE mode] (rev 01)
    00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
    03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 03)
    04:01.0 Multimedia controller: Philips Semiconductors SAA7134/SAA7135HL Video Broadcast Decoder (rev 01)
    PD: Sorry for my bad grammar.

  • [Lenovo IdeaPad S10-3t] Waking up from suspend not working properly

    Hi,
    I'm having some issues with getting suspend to work on my S10-3t. I tried pm-utils and the s2ram script (with about any combination of options as my machine is not on the whitelist) and always get the same behaviour: Suspending seems to succeed but waking up takes about 5 minutes.
    I tried using pm-suspend under ubuntu 10.10, works flawlessly out of the box, so it *can* be done.. somehow.
    Apparently this was a kernel related issue in older versions of ubuntu too, I couldn't quite figure out how they fixed it though (https://bugs.launchpad.net/ubuntu/+sour … bug/598664).
    I tailed the pm-suspend.log and kernel.log through one suspend/wake up cycle, here's the output:
    pm-suspend.log:
    bash-4.1$ date;sudo tail -f /var/log/pm-suspend.log
    Sun Oct 24 20:27:47 CEST 2010
    Password:
    Running hook /usr/lib/pm-utils/sleep.d/01grub resume suspend:
    /usr/lib/pm-utils/sleep.d/01grub resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave resume suspend:
    /usr/lib/pm-utils/sleep.d/00powersave resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00logging resume suspend:
    /usr/lib/pm-utils/sleep.d/00logging resume suspend: success.
    Sun Oct 24 20:25:36 CEST 2010: Finished.
    tail: /var/log/pm-suspend.log: file truncated
    Initial commandline parameters:
    Sun Oct 24 20:29:08 CEST 2010: Running hooks for suspend.
    Running hook /usr/lib/pm-utils/sleep.d/00logging suspend suspend:
    Linux netarch.haselwarter.org 2.6.35-ARCH #1 SMP PREEMPT Wed Sep 29 07:17:20 UTC 2010 i686 Intel(R) Atom(TM) CPU N470 @ 1.83GHz GenuineIntel GNU/Linux
    Module Size Used by
    cpufreq_ondemand 6971 2
    btusb 9745 0
    hid_cando 2611 0
    bluetooth 44753 1 btusb
    rfkill 12854 1 bluetooth
    usbhid 33564 0
    hid 60400 2 hid_cando,usbhid
    uvcvideo 53488 0
    videodev 39124 1 uvcvideo
    v4l1_compat 13562 2 uvcvideo,videodev
    joydev 7503 0
    snd_seq_dummy 1079 0
    snd_seq_oss 25072 0
    snd_seq_midi_event 4496 1 snd_seq_oss
    snd_seq 41752 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device 4369 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_hda_codec_conexant 26292 1
    snd_pcm_oss 33662 0
    i915 267072 2
    snd_mixer_oss 14686 1 snd_pcm_oss
    snd_hda_intel 19020 0
    snd_hda_codec 67274 2 snd_hda_codec_conexant,snd_hda_intel
    drm_kms_helper 22043 1 i915
    drm 134132 3 i915,drm_kms_helper
    snd_hwdep 4764 1 snd_hda_codec
    snd_pcm 58308 3 snd_pcm_oss,snd_hda_intel,snd_hda_codec
    lib80211_crypt_tkip 7521 0
    uhci_hcd 19251 0
    snd_timer 15423 2 snd_seq,snd_pcm
    broadcom 5201 0
    i2c_algo_bit 4407 1 i915
    ehci_hcd 32860 0
    snd 43283 11 snd_seq_oss,snd_seq,snd_seq_device,snd_hda_codec_conexant,snd_pcm_oss,snd_mixer_oss,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
    soundcore 5025 1 snd
    video 15889 1 i915
    wl 1943997 0
    tg3 115656 0
    usbcore 121737 6 btusb,usbhid,uvcvideo,uhci_hcd,ehci_hcd
    output 1448 1 video
    snd_page_alloc 5981 2 snd_hda_intel,snd_pcm
    intel_agp 24510 2 i915
    wmi 5962 0
    battery 7879 0
    i2c_i801 7426 0
    ac 2329 0
    i2c_core 15599 6 videodev,i915,drm_kms_helper,drm,i2c_algo_bit,i2c_i801
    psmouse 51529 0
    evdev 6820 9
    libphy 14543 2 broadcom,tg3
    lib80211 3158 2 lib80211_crypt_tkip,wl
    agpgart 23520 2 drm,intel_agp
    sg 20932 0
    thermal 9786 0
    coretemp 4665 0
    button 3746 1 i915
    serio_raw 3566 0
    acpi_cpufreq 5157 1
    freq_table 1999 2 cpufreq_ondemand,acpi_cpufreq
    processor 25126 3 acpi_cpufreq
    mperf 979 1 acpi_cpufreq
    rtc_cmos 7746 0
    rtc_core 11831 1 rtc_cmos
    rtc_lib 1494 1 rtc_core
    ext4 282610 1
    mbcache 4290 1 ext4
    jbd2 58396 1 ext4
    crc16 1053 1 ext4
    sd_mod 26768 3
    ahci 17813 0
    libahci 16174 3 ahci
    libata 140771 2 ahci,libahci
    scsi_mod 105888 3 sg,sd_mod,libata
    total used free shared buffers cached
    Mem: 2053592 233156 1820436 0 24724 102332
    -/+ buffers/cache: 106100 1947492
    Swap: 1952764 0 1952764
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave suspend suspend:
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub suspend suspend:
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01laptop-mode suspend suspend:
    /usr/lib/pm-utils/sleep.d/01laptop-mode suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend:
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend:
    Having NetworkManager put all interaces to sleep...Done.
    /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/75modules suspend suspend:
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/90clock suspend suspend:
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/91wicd suspend suspend:
    Unable to connect to wicd daemon - is it running?
    /usr/lib/pm-utils/sleep.d/91wicd suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/95led suspend suspend:
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:
    Kernel modesetting video driver detected, not using quirks.
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/99video suspend suspend:
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: success.
    Sun Oct 24 20:29:10 CEST 2010: performing suspend
    Switching from vt7 to vt1
    fbcon fb0 state 1
    fbcon fb0 state 0
    switching back to vt7
    Sun Oct 24 20:34:40 CEST 2010: Awake.
    Sun Oct 24 20:34:40 CEST 2010: Running hooks for resume
    Running hook /usr/lib/pm-utils/sleep.d/99video resume suspend:
    /usr/lib/pm-utils/sleep.d/99video resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler resume suspend:
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/95led resume suspend:
    /usr/lib/pm-utils/sleep.d/95led resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/94cpufreq resume suspend:
    /usr/lib/pm-utils/sleep.d/94cpufreq resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/91wicd resume suspend:
    Unable to connect to wicd daemon - is it running?
    /usr/lib/pm-utils/sleep.d/91wicd resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/90clock resume suspend:
    /usr/lib/pm-utils/sleep.d/90clock resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/75modules resume suspend:
    Reloaded unloaded modules.
    /usr/lib/pm-utils/sleep.d/75modules resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend:
    Having NetworkManager wake interfaces back up...Done.
    /usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/49bluetooth resume suspend:
    /usr/lib/pm-utils/sleep.d/49bluetooth resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/11netcfg resume suspend:
    /usr/lib/pm-utils/sleep.d/11netcfg resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01laptop-mode resume suspend:
    tail: /var/log/pm-suspend.log: file truncated
    Laptop mode
    tail: /var/log/pm-suspend.log: file truncated
    enabled, not active
    Error for wireless request "Set Power Management" (8B2C) :
    SET failed on device eth0 ; Operation not supported.
    tail: /var/log/pm-suspend.log: file truncated
    Failed.
    /usr/lib/pm-utils/sleep.d/01laptop-mode resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub resume suspend:
    /usr/lib/pm-utils/sleep.d/01grub resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave resume suspend:
    /usr/lib/pm-utils/sleep.d/00powersave resume suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00logging resume suspend:
    /usr/lib/pm-utils/sleep.d/00logging resume suspend: success.
    Sun Oct 24 20:34:44 CEST 2010: Finished.
    kernel.log:
    bash-4.1$ sudo tail -f /var/log/kernel.log
    Password:
    Oct 24 20:27:15 netarch kernel: input: Cando Corporation Cando 10.1 Multi Touch Panel with Controller as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input9
    Oct 24 20:27:15 netarch kernel: cando-touch 0003:2087:0A01.0001: input,hidraw0: USB HID v1.11 Device [Cando Corporation Cando 10.1 Multi Touch Panel with Controller] on usb-0000:00:1d.1-1/input0
    Oct 24 20:27:15 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    Oct 24 20:27:15 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    Oct 24 20:27:15 netarch kernel: Adding 1952764k swap on /dev/sda2. Priority:-1 extents:1 across:1952764k
    Oct 24 20:27:16 netarch kernel: tg3 0000:05:00.0: irq 45 for MSI/MSI-X
    Oct 24 20:27:16 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:27:17 netarch kernel: CPUFREQ: Per core ondemand sysfs interface is deprecated - ignore_nice_load
    Oct 24 20:27:18 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:27:19 netarch kernel: WARNING! power/level is deprecated; use power/control instead
    Oct 24 20:29:08 netarch kernel: CE: hpet increased min_delta_ns to 7500 nsec
    Oct 24 20:29:08 netarch kernel: ata1.00: configured for UDMA/100
    Oct 24 20:29:08 netarch kernel: ata1: EH complete
    Oct 24 20:29:08 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
    Oct 24 20:34:40 netarch kernel: PM: Syncing filesystems ... done.
    Oct 24 20:34:40 netarch kernel: PM: Preparing system for mem sleep
    Oct 24 20:34:40 netarch kernel: Freezing user space processes ... (elapsed 0.01 seconds) done.
    Oct 24 20:34:40 netarch kernel: Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Oct 24 20:34:40 netarch kernel: PM: Entering mem sleep
    Oct 24 20:34:40 netarch kernel: Suspending console(s) (use no_console_suspend to debug)
    Oct 24 20:34:40 netarch kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Oct 24 20:34:40 netarch kernel: sd 0:0:0:0: [sda] Stopping disk
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: PCI INT D disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: PCI INT C disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: PCI INT B disabled
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: PME# enabled
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: wake-up capability enabled by ACPI
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: PCI INT A disabled
    Oct 24 20:34:40 netarch kernel: ACPI handle has no context!
    Oct 24 20:34:40 netarch kernel: PM: suspend of devices complete after 429.517 msecs
    Oct 24 20:34:40 netarch kernel: PM: late suspend of devices complete after 13.649 msecs
    Oct 24 20:34:40 netarch kernel: ACPI: Preparing to enter system sleep state S3
    Oct 24 20:34:40 netarch kernel: PM: Saving platform NVS memory
    Oct 24 20:34:40 netarch kernel: Disabling non-boot CPUs ...
    Oct 24 20:34:40 netarch kernel: CPU 1 is now offline
    Oct 24 20:34:40 netarch kernel: SMP alternatives: switching to UP code
    Oct 24 20:34:40 netarch kernel: Extended CMOS year: 2000
    Oct 24 20:34:40 netarch kernel: Back to C!
    Oct 24 20:34:40 netarch kernel: PM: Restoring platform NVS memory
    Oct 24 20:34:40 netarch kernel: CPU0: Thermal monitoring handled by SMI
    Oct 24 20:34:40 netarch kernel: Extended CMOS year: 2000
    Oct 24 20:34:40 netarch kernel: Enabling non-boot CPUs ...
    Oct 24 20:34:40 netarch kernel: SMP alternatives: switching to SMP code
    Oct 24 20:34:40 netarch kernel: Booting Node 0 Processor 1 APIC 0x1
    Oct 24 20:34:40 netarch kernel: Initializing CPU#1
    Oct 24 20:34:40 netarch kernel: CPU1 is up
    Oct 24 20:34:40 netarch kernel: ACPI: Waking up from system sleep state S3
    Oct 24 20:34:40 netarch kernel: ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100428/evregion-474)
    Oct 24 20:34:40 netarch kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_.DSLD] (Node f7025600), AE_TIME
    Oct 24 20:34:40 netarch kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_WAK] (Node f7024768), AE_TIME
    Oct 24 20:34:40 netarch kernel: ACPI Exception: AE_TIME, During Method _WAK (20100428/hwsleep-601)
    Oct 24 20:34:40 netarch kernel: i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100102)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x40100, writing 0x4010b)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x80118001)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xf010f010)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x2020)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x40200, writing 0x40207)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x80318021)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xf020f020)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x3030)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900106, writing 0x2900102)
    Oct 24 20:34:40 netarch kernel: pci 0000:00:1e.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
    Oct 24 20:34:40 netarch kernel: pci 0000:00:1e.0: restoring config space at offset 0x8 (was 0x0, writing 0xfff0)
    Oct 24 20:34:40 netarch kernel: ahci 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20a)
    Oct 24 20:34:40 netarch kernel: ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x40100506)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xf0200004)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100106)
    Oct 24 20:34:40 netarch kernel: PM: early resume of devices complete after 2.675 msecs
    Oct 24 20:34:40 netarch kernel: i915 0000:00:02.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb2: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb3: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb4: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    Oct 24 20:34:40 netarch kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: usb usb5: root hub lost power or was reset
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Oct 24 20:34:40 netarch kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: pci 0000:00:1e.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: pcieport 0000:00:1c.0: wake-up capability disabled by ACPI
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: PME# disabled
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Oct 24 20:34:40 netarch kernel: wl 0000:07:00.0: setting latency timer to 64
    Oct 24 20:34:40 netarch kernel: sd 0:0:0:0: [sda] Starting disk
    Oct 24 20:34:40 netarch kernel: ata2: SATA link down (SStatus 0 SControl 300)
    Oct 24 20:34:40 netarch kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Oct 24 20:34:40 netarch kernel: usb 3-2: reset full speed USB device using uhci_hcd and address 3
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: btusb 3-2:1.0: no reset_resume for driver btusb?
    Oct 24 20:34:40 netarch kernel: btusb 3-2:1.1: no reset_resume for driver btusb?
    Oct 24 20:34:40 netarch kernel: usb 1-8: reset high speed USB device using ehci_hcd and address 4
    Oct 24 20:34:40 netarch kernel: ata1.00: configured for UDMA/100
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: usb 3-1: reset full speed USB device using uhci_hcd and address 2
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: PM: resume of devices complete after 996.313 msecs
    Oct 24 20:34:40 netarch kernel: PM: Finishing wakeup.
    Oct 24 20:34:40 netarch kernel: Restarting tasks ...
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: done.
    Oct 24 20:34:40 netarch kernel: video LNXVIDEO:00: Restoring backlight state
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    Oct 24 20:34:40 netarch kernel: atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Oct 24 20:34:40 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:34:41 netarch kernel: tg3 0000:05:00.0: eth0: Link is down
    Oct 24 20:34:43 netarch kernel: ata1.00: configured for UDMA/100
    Oct 24 20:34:43 netarch kernel: ata1: EH complete
    Oct 24 20:34:44 netarch kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
    dmesg:
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.35-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Wed Sep 29 07:17:20 UTC 2010
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
    BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
    BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
    BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000007f5d0000 (usable)
    BIOS-e820: 000000007f5d0000 - 000000007f5e0000 (ACPI data)
    BIOS-e820: 000000007f5e0000 - 000000007f5e3000 (ACPI NVS)
    BIOS-e820: 000000007f5e3000 - 0000000080000000 (reserved)
    BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    DMI 2.5 present.
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    last_pfn = 0x7f5d0 max_arch_pfn = 0x100000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-D3FFF write-protect
    D4000-DFFFF uncachable
    E0000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask 080000000 write-back
    1 base 07F600000 mask 0FFE00000 uncachable
    2 base 07F800000 mask 0FF800000 uncachable
    3 disabled
    4 disabled
    5 disabled
    6 disabled
    7 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
    Scanning 1 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000001000 (reserved)
    modified: 0000000000001000 - 0000000000002000 (usable)
    modified: 0000000000002000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009dc00 (usable)
    modified: 000000000009dc00 - 00000000000a0000 (reserved)
    modified: 00000000000d2000 - 00000000000d4000 (reserved)
    modified: 00000000000dc000 - 00000000000e0000 (reserved)
    modified: 00000000000e4000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 000000007f5d0000 (usable)
    modified: 000000007f5d0000 - 000000007f5e0000 (ACPI data)
    modified: 000000007f5e0000 - 000000007f5e3000 (ACPI NVS)
    modified: 000000007f5e3000 - 0000000080000000 (reserved)
    modified: 00000000e0000000 - 00000000f0000000 (reserved)
    modified: 00000000fec00000 - 00000000fec10000 (reserved)
    modified: 00000000fee00000 - 00000000fee01000 (reserved)
    modified: 00000000ff000000 - 0000000100000000 (reserved)
    initial memory mapped : 0 - 01800000
    found SMP MP-table at [c00f7cb0] f7cb0
    init_memory_mapping: 0000000000000000-00000000377fe000
    0000000000 - 0000400000 page 4k
    0000400000 - 0037400000 page 2M
    0037400000 - 00377fe000 page 4k
    kernel direct mapping tables up to 377fe000 @ 15000-1a000
    RAMDISK: 37e2a000 - 37ff0000
    Allocated new RAMDISK: 00100000 - 002c5f93
    Move RAMDISK from 0000000037e2a000 - 0000000037feff92 to 00100000 - 002c5f92
    ACPI: RSDP 000f7c80 00024 (v04 PTLTD )
    ACPI: XSDT 7f5d72d4 00074 (v01 LENOVO CB-01 06040000 LTP 00000000)
    ACPI: FACP 7f5dfc60 000F4 (v03 LENOVO CB-01 06040000 PTL 00000002)
    ACPI: DSDT 7f5d846a 07782 (v01 LENOVO CB-01 06040000 MSFT 03000000)
    ACPI: FACS 7f5e2fc0 00040
    ACPI: TCPA 7f5dfd54 00032 (v01 Phoeni x 06040000 TL 00000000)
    ACPI: MCFG 7f5dfd86 0003C (v01 PTLTD MCFG 06040000 LTP 00000000)
    ACPI: HPET 7f5dfdc2 00038 (v01 PTLTD HPETTBL 06040000 LTP 00000001)
    ACPI: APIC 7f5dfdfa 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    ACPI: BOOT 7f5dfe62 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    ACPI: SLIC 7f5dfe8a 00176 (v01 LENOVO CB-01 06040000 LTP 00000000)
    ACPI: SSDT 7f5d78ca 0025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    ACPI: SSDT 7f5d7824 000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624)
    ACPI: SSDT 7f5d7348 004DC (v02 PmRef CpuPm 00003000 INTL 20050624)
    ACPI: Local APIC address 0xfee00000
    1149MB HIGHMEM available.
    887MB LOWMEM available.
    mapped low ram: 0 - 377fe000
    low ram: 0 - 377fe000
    Zone PFN ranges:
    DMA 0x00000001 -> 0x00001000
    Normal 0x00001000 -> 0x000377fe
    HighMem 0x000377fe -> 0x0007f5d0
    Movable zone start PFN for each node
    early_node_map[3] active PFN ranges
    0: 0x00000001 -> 0x00000002
    0: 0x00000010 -> 0x0000009d
    0: 0x00000100 -> 0x0007f5d0
    On node 0 totalpages: 521566
    free_area_init_node: node 0, pgdat c1418ac0, node_mem_map c157b020
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3950 pages, LIFO batch:0
    Normal zone: 1744 pages used for memmap
    Normal zone: 221486 pages, LIFO batch:31
    HighMem zone: 2300 pages used for memmap
    HighMem zone: 292054 pages, LIFO batch:31
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x1008
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0xffffffff base: 0xfed00000
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    nr_irqs_gsi: 40
    early_res array is doubled to 64 at [16000 - 167ff]
    PM: Registered nosave memory: 0000000000002000 - 0000000000010000
    PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
    PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
    PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    PERCPU: Embedded 14 pages/cpu @c2800000 s34880 r0 d22464 u2097152
    pcpu-alloc: s34880 r0 d22464 u2097152 alloc=1*4194304
    pcpu-alloc: [0] 0 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 517490
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz26 root=/dev/sda5
    PID hash table entries: 4096 (order: 2, 16384 bytes)
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    allocated 10433580 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Subtract (53 early reservations)
    #1 [0000001000 - 0000002000] EX TRAMPOLINE
    #2 [0001000000 - 0001572184] TEXT DATA BSS
    #3 [0001573000 - 000157921c] BRK
    #4 [00000f7cc0 - 0000100000] BIOS reserved
    #5 [00000f7cb0 - 00000f7cc0] MP-table mpf
    #6 [000009dc00 - 000009e071] BIOS reserved
    #7 [000009e199 - 00000f7cb0] BIOS reserved
    #8 [000009e071 - 000009e199] MP-table mpc
    #9 [0000010000 - 0000011000] TRAMPOLINE
    #10 [0000011000 - 0000015000] ACPI WAKEUP
    #11 [0000015000 - 0000016000] PGTABLE
    #12 [0000100000 - 00002c6000] NEW RAMDISK
    #13 [000157a000 - 000157b000] BOOTMEM
    #14 [000157b000 - 000256b000] BOOTMEM
    #15 [00015721c0 - 00015721c4] BOOTMEM
    #16 [0001572200 - 00015722c0] BOOTMEM
    #17 [00015722c0 - 0001572314] BOOTMEM
    #18 [000256b000 - 000256e000] BOOTMEM
    #19 [0001572340 - 00015723ac] BOOTMEM
    #20 [000256e000 - 0002574000] BOOTMEM
    #21 [00015723c0 - 00015723e5] BOOTMEM
    #22 [0001572400 - 0001572427] BOOTMEM
    #23 [0001572440 - 0001572600] BOOTMEM
    #24 [0001572600 - 0001572640] BOOTMEM
    #25 [0001572640 - 0001572680] BOOTMEM
    #26 [0001572680 - 00015726c0] BOOTMEM
    #27 [00015726c0 - 0001572700] BOOTMEM
    #28 [0001572700 - 0001572740] BOOTMEM
    #29 [0001572740 - 0001572780] BOOTMEM
    #30 [0001572780 - 00015727c0] BOOTMEM
    #31 [00015727c0 - 0001572800] BOOTMEM
    #32 [0001572800 - 0001572840] BOOTMEM
    #33 [0001572840 - 0001572880] BOOTMEM
    #34 [0001572880 - 00015728c0] BOOTMEM
    #35 [00015728c0 - 0001572900] BOOTMEM
    #36 [0001572900 - 0001572940] BOOTMEM
    #37 [0001572940 - 0001572950] BOOTMEM
    #38 [0001572980 - 0001572990] BOOTMEM
    #39 [00015729c0 - 00015729ea] BOOTMEM
    #40 [0001572a00 - 0001572a2a] BOOTMEM
    #41 [0002800000 - 000280e000] BOOTMEM
    #42 [0002a00000 - 0002a0e000] BOOTMEM
    #43 [0001572a40 - 0001572a44] BOOTMEM
    #44 [0001572a80 - 0001572a84] BOOTMEM
    #45 [0001572ac0 - 0001572ac8] BOOTMEM
    #46 [0001572b00 - 0001572b08] BOOTMEM
    #47 [0001572b40 - 0001572be8] BOOTMEM
    #48 [0001572c00 - 0001572c68] BOOTMEM
    #49 [0002574000 - 0002578000] BOOTMEM
    #50 [0002578000 - 00025f8000] BOOTMEM
    #51 [00025f8000 - 0002638000] BOOTMEM
    #52 [0002a0e000 - 000340142c] BOOTMEM
    Initializing HighMem for node 0 (000377fe:0007f5d0)
    Memory: 2051364k/2086720k available (2986k kernel code, 34900k reserved, 1238k data, 412k init, 1177416k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1421000 - 0xc1488000 ( 412 kB)
    .data : 0xc12eaacc - 0xc1420340 (1238 kB)
    .text : 0xc1000000 - 0xc12eaacc (2986 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
    NR_IRQS:512
    Extended CMOS year: 2000
    Console: colour VGA+ 80x25
    console [tty0] enabled
    hpet clockevent registered
    Fast TSC calibration using PIT
    Detected 1828.625 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 3658.63 BogoMIPS (lpj=6095416)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    Mount-cache hash table entries: 512
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    Initializing cgroup subsys blkio
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 5 MCE banks
    CPU0: Thermal monitoring enabled (TM1)
    using mwait in idle threads.
    Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
    ... version: 3
    ... bit width: 40
    ... generic registers: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 0000000700000003
    ACPI: Core revision 20100428
    Enabling APIC mode: Flat. Using 1 I/O APICs
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: Intel(R) Atom(TM) CPU N470 @ 1.83GHz stepping 0a
    Booting Node 0, Processors #1 Ok.
    Initializing CPU#1
    Brought up 2 CPUs
    Total of 2 processors activated (7317.54 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-10] at [mem 0xe0000000-0xe10fffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xe10fffff] reserved in E820
    PCI: Using MMCONFIG for extended config space
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: SSDT 7f5d8193 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624)
    ACPI: SSDT 7f5d7b29 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 005E5 (v02 PmRef Cpu0Cst 00003001 INTL 20050624)
    ACPI: SSDT 7f5d8396 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 000D4 (v02 PmRef Cpu1Ist 00003000 INTL 20050624)
    ACPI: SSDT 7f5d810e 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00085 (v02 PmRef Cpu1Cst 00003000 INTL 20050624)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    ACPI: EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f390), AE_ALREADY_EXISTS
    ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
    ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
    pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xf7ffffff]
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xfdff]
    pci 0000:00:02.0: reg 10: [mem 0xf0300000-0xf037ffff]
    pci 0000:00:02.0: reg 14: [io 0x18e8-0x18ef]
    pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
    pci 0000:00:02.0: reg 1c: [mem 0xf0000000-0xf00fffff]
    pci 0000:00:02.1: reg 10: [mem 0xf0380000-0xf03fffff]
    pci 0000:00:1b.0: reg 10: [mem 0xf0400000-0xf0403fff 64bit]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.1: PME# disabled
    pci 0000:00:1d.0: reg 20: [io 0x1820-0x183f]
    pci 0000:00:1d.1: reg 20: [io 0x1840-0x185f]
    pci 0000:00:1d.2: reg 20: [io 0x1860-0x187f]
    pci 0000:00:1d.3: reg 20: [io 0x1880-0x189f]
    pci 0000:00:1d.7: reg 10: [mem 0xf0604000-0xf06043ff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    pci 0000:00:1f.2: reg 10: [io 0x18e0-0x18e7]
    pci 0000:00:1f.2: reg 14: [io 0x18d4-0x18d7]
    pci 0000:00:1f.2: reg 18: [io 0x18d8-0x18df]
    pci 0000:00:1f.2: reg 1c: [io 0x18d0-0x18d3]
    pci 0000:00:1f.2: reg 20: [io 0x18c0-0x18cf]
    pci 0000:00:1f.2: reg 24: [mem 0xf0604400-0xf06047ff]
    pci 0000:00:1f.2: PME# supported from D3hot
    pci 0000:00:1f.2: PME# disabled
    pci 0000:00:1f.3: reg 20: [io 0x18a0-0x18bf]
    pci 0000:05:00.0: reg 10: [mem 0xf0100000-0xf010ffff 64bit]
    pci 0000:05:00.0: PME# supported from D3hot D3cold
    pci 0000:05:00.0: PME# disabled
    pci 0000:00:1c.0: PCI bridge to [bus 05-05]
    pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1c.0: bridge window [mem 0xf0100000-0xf01fffff]
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:07:00.0: reg 10: [mem 0xf0200000-0xf0203fff 64bit]
    pci 0000:07:00.0: supports D1 D2
    pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
    pci 0000:07:00.0: PME# disabled
    pci 0000:00:1c.1: PCI bridge to [bus 07-07]
    pci 0000:00:1c.1: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1c.1: bridge window [mem 0xf0200000-0xf02fffff]
    pci 0000:00:1c.1: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: PCI bridge to [bus 11-11] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x80000000-0xf7ffffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0x0d00-0xfdff] (subtractive decode)
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    ACPI Error (dsfield-0143): [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f701f390), AE_ALREADY_EXISTS
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    HEST: Table is not found!
    vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    reserve RAM buffer: 0000000000002000 - 000000000000ffff
    reserve RAM buffer: 000000000009dc00 - 000000000009ffff
    reserve RAM buffer: 000000007f5d0000 - 000000007fffffff
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Switching to clocksource tsc
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 10 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:01: [io 0x0800-0x080f] has been reserved
    system 00:01: [io 0x1000-0x107f] has been reserved
    system 00:01: [io 0x1180-0x11bf] has been reserved
    system 00:01: [io 0x04d0-0x04d1] has been reserved
    system 00:01: [io 0xfe00] has been reserved
    system 00:01: [io 0x0700-0x070f] has been reserved
    system 00:01: [io 0x164e-0x174c] has been reserved
    system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
    system 00:01: [mem 0xfef00000-0xfeffffff] has been reserved
    pci 0000:00:1c.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
    pci 0000:00:1c.1: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
    pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    pci 0000:00:1c.1: BAR 13: assigned [io 0x3000-0x3fff]
    pci 0000:00:1c.0: PCI bridge to [bus 05-05]
    pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    pci 0000:00:1c.0: bridge window [mem 0xf0100000-0xf01fffff]
    pci 0000:00:1c.0: bridge window [mem 0x80000000-0x801fffff 64bit pref]
    pci 0000:00:1c.1: PCI bridge to [bus 07-07]
    pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    pci 0000:00:1c.1: bridge window [mem 0xf0200000-0xf02fffff]
    pci 0000:00:1c.1: bridge window [mem 0x80200000-0x803fffff 64bit pref]
    pci 0000:00:1e.0: PCI bridge to [bus 11-11]
    pci 0000:00:1e.0: bridge window [io disabled]
    pci 0000:00:1e.0: bridge window [mem disabled]
    pci 0000:00:1e.0: bridge window [mem pref disabled]
    pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.1: enabling device (0000 -> 0003)
    pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.1: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 6 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:00: resource 8 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:00: resource 9 [mem 0x80000000-0xf7ffffff]
    pci_bus 0000:00: resource 10 [io 0x0d00-0xfdff]
    pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
    pci_bus 0000:05: resource 1 [mem 0xf0100000-0xf01fffff]
    pci_bus 0000:05: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
    pci_bus 0000:07: resource 0 [io 0x3000-0x3fff]
    pci_bus 0000:07: resource 1 [mem 0xf0200000-0xf02fffff]
    pci_bus 0000:07: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
    pci_bus 0000:11: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:11: resource 5 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:11: resource 6 [mem 0x000d4000-0x000d7fff]
    pci_bus 0000:11: resource 7 [mem 0x000d8000-0x000dbfff]
    pci_bus 0000:11: resource 8 [mem 0x000e0000-0x000e3fff]
    pci_bus 0000:11: resource 9 [mem 0x80000000-0xf7ffffff]
    pci_bus 0000:11: resource 10 [io 0x0d00-0xfdff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    UDP hash table entries: 512 (order: 2, 16384 bytes)
    UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    NET: Registered protocol family 1
    pci 0000:00:02.0: Boot video device
    PCI: CLS 32 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1816k freed
    Simple Boot Flag at 0x36 set to 0x1
    apm: BIOS not found.
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1287944823.419:1): initialized
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1710
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pcieport 0000:00:1c.0: setting latency timer to 64
    pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    pcieport 0000:00:1c.1: setting latency timer to 64
    pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    ERST: Table is not found!
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Detected active multiplexing controller, rev 1.1.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX0 port at 0x60,0x64 irq 12
    serio: i8042 AUX1 port at 0x60,0x64 irq 12
    serio: i8042 AUX2 port at 0x60,0x64 irq 12
    serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    PM: Resume from disk failed.
    registered taskstats version 1
    Initalizing network drop monitor service
    Freeing unused kernel memory: 412k freed
    udev[38]: starting version 162
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    SCSI subsystem initialized
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    libata version 3.00 loaded.
    ahci 0000:00:1f.2: version 3.0
    ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    ahci: SSS flag set, parallel bus scan disabled
    ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part
    ahci 0000:00:1f.2: setting latency timer to 64
    scsi0 : ahci
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    ata1: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604500 irq 42
    ata2: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604580 irq 42
    ata3: DUMMY
    ata4: DUMMY
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata1.00: ATA-8: ST9250315AS, 0010LVM1, max UDMA/100
    ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    ata1.00: configured for UDMA/100
    scsi 0:0:0:0: Direct-Access ATA ST9250315AS 0010 PQ: 0 ANSI: 5
    ata2: SATA link down (SStatus 0 SControl 300)
    sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4 sda5
    sd 0:0:0:0: [sda] Attached SCSI disk
    PM: Marking nosave pages: 0000000000002000 - 0000000000010000
    PM: Marking nosave pages: 000000000009d000 - 0000000000100000
    PM: Basic memory bitmaps created
    PM: Basic memory bitmaps freed
    EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    rtc_cmos 00:05: RTC can wake from S4
    rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    udev[734]: starting version 162
    ACPI: acpi_idle registered with cpuidle
    Monitor-Mwait will be used to enter C-1 state
    Monitor-Mwait will be used to enter C-2 state
    Monitor-Mwait will be used to enter C-3 state
    Marking TSC unstable due to TSC halts in idle
    Switching to clocksource hpet
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0C:00/input/input1
    ACPI: Power Button [PWRB]
    input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    coretemp coretemp.0: Unable to read TjMax from CPU.
    coretemp coretemp.0: Using relative temperature scale!
    ACPI: Lid Switch [LID]
    ------------[ cut here ]------------
    WARNING: at fs/proc/generic.c:583 proc_register+0xf8/0x1e0()
    Hardware name: 20040M18
    proc_dir_entry 'power/PWRB' already registered
    Modules linked in: coretemp button(+) serio_raw acpi_cpufreq freq_table processor mperf rtc_cmos rtc_core rtc_lib ext4 mbcache jbd2 crc16 sd_mod ahci libahci libata scsi_mod
    Pid: 1097, comm: modprobe Not tainted 2.6.35-ARCH #1
    Call Trace:
    [<c10439bd>] warn_slowpath_common+0x6d/0xa0
    [<c113e648>] ? proc_register+0xf8/0x1e0
    [<c113e648>] ? proc_register+0xf8/0x1e0
    [<c1043a6e>] warn_slowpath_fmt+0x2e/0x30
    [<c113e648>] proc_register+0xf8/0x1e0
    [<c113eca3>] proc_mkdir_mode+0x33/0x50
    [<c113eccf>] proc_mkdir+0xf/0x20
    [<f82af453>] acpi_button_add+0x21b/0x387 [button]
    [<c11cc665>] acpi_device_probe+0x3a/0xf4
    [<c121eae7>] driver_probe_device+0x77/0x180
    [<c121ec69>] __driver_attach+0x79/0x80
    [<c121dcb3>] bus_for_each_dev+0x43/0x70
    [<c121e839>] driver_attach+0x19/0x20
    [<c121ebf0>] ? __driver_attach+0x0/0x80
    [<c121e3ed>] bus_add_driver+0xbd/0x2e0
    [<c11cc59b>] ? acpi_device_remove+0x0/0x90
    [<c121ee65>] driver_register+0x65/0x110
    [<c113eca3>] ? proc_mkdir_mode+0x33/0x50
    [<c11ccd53>] acpi_bus_register_driver+0x3a/0x3c
    [<f82b202b>] acpi_button_init+0x2b/0x4a [button]
    [<c100120d>] do_one_initcall+0x2d/0x190
    [<f82b2000>] ? acpi_button_init+0x0/0x4a [button]
    [<c107892b>] sys_init_module+0x9b/0x1e0
    [<c10f4f8f>] ? sys_close+0x6f/0xc0
    [<c100379f>] sysenter_do_call+0x12/0x28
    ---[ end trace 475801f928d07a3d ]---
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:01/input/input3
    ACPI: Power Button [PWRB]
    input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4
    ACPI: Sleep Button [SLPB]
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    ACPI: Power Button [PWRF]
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [TZ01] (60 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    lib80211: common routines for IEEE802.11 drivers
    lib80211_crypt: registered algorithm 'NULL'
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    Linux agpgart interface v0.103
    i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ACPI: AC Adapter [ACAD] (on-line)
    wl: module license 'Mixed/Proprietary' taints kernel.
    Disabling lock debugging due to kernel taint
    ACPI: WMI: Mapper loaded
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
    agpgart-intel 0000:00:00.0: detected 8188K stolen memory
    agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    tg3.c:v3.110 (April 9, 2010)
    tg3 0000:05:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    tg3 0000:05:00.0: setting latency timer to 64
    wl 0000:07:00.0: enabling device (0104 -> 0106)
    wl 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    wl 0000:07:00.0: setting latency timer to 64
    ACPI: Battery Slot [BAT1] (battery present)
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1d.7: using broken periodic workaround
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0604000
    tg3 mdio bus: probed
    tg3 0000:05:00.0: eth1: Tigon3 [partno(BCM57780) rev 57780001] (PCI Express) MAC address c8:0a:a9:3b:be:4d
    tg3 0000:05:00.0: eth1: attached PHY driver [Broadcom BCM57780] (mii_bus:phy_addr=500:01)
    tg3 0000:05:00.0: eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    tg3 0000:05:00.0: eth1: dma_rwctrl[76180000] dma_mask[64-bit]
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 8 ports detected
    uhci_hcd: USB Universal Host Controller Interface driver
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1d.3: setting latency timer to 64
    uhci_hcd 0000:00:1d.3: UHCI Host Controller
    uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
    lib80211_crypt: registered algorithm 'TKIP'
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    eth0: Broadcom BCM4727 802.11 Hybrid Wireless Controller 5.60.48.36
    udev[757]: renamed network interface eth1 to eth1-eth0
    udev[756]: renamed network interface eth0 to wlan0
    udev[757]: renamed network interface eth1-eth0 to eth0
    [drm] Initialized drm 1.1.0 20060810
    HDA Intel 0000:00:1b.0: enabling device (0104 -> 0106)
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    usb 1-8: new high speed USB device using ehci_hcd and address 4
    i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    i915 0000:00:02.0: setting latency timer to 64
    i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [drm] set up 7M of stolen space
    Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04771/0xa40000/0x4a0500
    input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input6
    usb 3-1: new full speed USB device using uhci_hcd and address 2
    [drm] initialized overlay support
    Linux video capture interface: v2.00
    uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b1a1)
    input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.7/usb1/1-8/1-8:1.0/input/input7
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    usb 3-2: new full speed USB device using uhci_hcd and address 3
    usbcore: registered new interface driver hiddev
    usbcore: registered new interface driver usbhid
    usbhid: USB HID core driver
    Console: switching to colour frame buffer device 128x37
    fb0: inteldrmfb frame buffer device
    drm: registered panic notifier
    Slow work thread pool: Starting up
    Slow work thread pool: Ready
    ACPI Warning: _BQC returned an invalid level (20100428/video-640)
    acpi device:03: registered as cooling_device2
    input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
    ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Bluetooth: Core ver 2.15
    NET: Registered protocol family 31
    Bluetooth: HCI device and connection manager initialized
    Bluetooth: HCI socket layer initialized
    Bluetooth: Generic Bluetooth USB driver ver 0.6
    usbcore: registered new interface driver btusb
    input: Cando Corporation Cando 10.1 Multi Touch Panel with Controller as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input9
    cando-touch 0003:2087:0A01.0001: input,hidraw0: USB HID v1.11 Device [Cando Corporation Cando 10.1 Multi Touch Panel with Controller] on usb-0000:00:1d.1-1/input0
    EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    Adding 1952764k swap on /dev/sda2. Priority:-1 extents:1 across:1952764k
    tg3 0000:05:00.0: irq 45 for MSI/MSI-X
    tg3 0000:05:00.0: eth0: Link is down
    CPUFREQ: Per core ondemand sysfs interface is deprecated - ignore_nice_load
    tg3 0000:05:00.0: eth0: Link is down
    WARNING! power/level is deprecated; use power/control instead
    CE: hpet increased min_delta_ns to 7500 nsec
    ata1.00: configured for UDMA/100
    ata1: EH complete
    EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
    PM: Syncing filesystems ... done.
    PM: Preparing system for mem sleep
    Freezing user space processes ... (elapsed 0.01 seconds) done.
    Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    PM: Entering mem sleep
    Suspending console(s) (use no_console_suspend to debug)
    sd 0:0:0:0: [sda] Synchronizing SCSI cache
    sd 0:0:0:0: [sda] Stopping disk
    wl 0000:07:00.0: PCI INT A disabled
    ehci_hcd 0000:00:1d.7: PCI INT A disabled
    uhci_hcd 0000:00:1d.3: PCI INT D disabled
    uhci_hcd 0000:00:1d.2: PCI INT C disabled
    uhci_hcd 0000:00:1d.1: PCI INT B disabled
    uhci_hcd 0000:00:1d.0: PCI INT A disabled
    tg3 0000:05:00.0: PME# enabled
    pcieport 0000:00:1c.0: wake-up capability enabled by ACPI
    HDA Intel 0000:00:1b.0: PCI INT A disabled
    ACPI handle has no context!
    PM: suspend of devices complete after 429.517 msecs
    PM: late suspend of devices complete after 13.649 msecs
    ACPI: Preparing to enter system sleep state S3
    PM: Saving platform NVS memory
    Disabling non-boot CPUs ...
    CPU 1 is now offline
    SMP alternatives: switching to UP code
    Extended CMOS year: 2000
    Back to C!
    PM: Restoring platform NVS memory
    CPU0: Thermal monitoring handled by SMI
    Extended CMOS year: 2000
    Enabling non-boot CPUs ...
    SMP alternatives: switching to SMP code
    Booting Node 0 Processor 1 APIC 0x1
    Initializing CPU#1
    CPU1 is up
    ACPI: Waking up from system sleep state S3
    ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100428/evregion-474)
    ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.EC0_.DSLD] (Node f7025600), AE_TIME
    ACPI Error (psparse-0537): Method parse/execution failed [\_WAK] (Node f7024768), AE_TIME
    ACPI Exception: AE_TIME, During Method _WAK (20100428/hwsleep-601)
    i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
    HDA Intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    HDA Intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100104, writing 0x100102)
    pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x40100, writing 0x4010b)
    pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x80118001)
    pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xf010f010)
    pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x2020)
    pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x40200, writing 0x40207)
    pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x80318021)
    pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xf020f020)
    pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x3030)
    pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810008)
    pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
    uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    uhci_hcd 0000:00:1d.1: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    uhci_hcd 0000:00:1d.2: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    uhci_hcd 0000:00:1d.3: restoring config space at offset 0x1 (was 0x2800005, writing 0x2800001)
    ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900106, writing 0x2900102)
    pci 0000:00:1e.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
    pci 0000:00:1e.0: restoring config space at offset 0x8 (was 0x0, writing 0xfff0)
    ahci 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20a)
    ahci 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00007, writing 0x2b00407)
    tg3 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    tg3 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x40100506)
    wl 0000:07:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
    wl 0000:07:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xf0200004)
    wl 0000:07:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
    wl 0000:07:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100106)
    PM: early resume of devices complete after 2.675 msecs
    i915 0000:00:02.0: setting latency timer to 64
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    HDA Intel 0000:00:1b.0: irq 43 for MSI/MSI-X
    uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    usb usb2: root hub lost power or was reset
    uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    usb usb3: root hub lost power or was reset
    uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    usb usb4: root hub lost power or was reset
    uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    uhci_hcd 0000:00:1d.3: setting latency timer to 64
    usb usb5: root hub lost power or was reset
    ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    ahci 0000:00:1f.2: setting latency timer to 64
    pcieport 0000:00:1c.0: wake-up capability disabled by ACPI
    tg3 0000:05:00.0: PME# disabled
    wl 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    wl 0000:07:00.0: setting latency timer to 64
    sd 0:0:0:0: [sda] Starting disk
    ata2: SATA link down (SStatus 0 SControl 300)
    ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    usb 3-2: reset full speed USB device using uhci_hcd and address 3
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    btusb 3-2:1.0: no reset_resume for driver btusb?
    btusb 3-2:1.1: no reset_resume for driver btusb?
    usb 1-8: reset high speed USB device using ehci_hcd and address 4
    ata1.00: configured for UDMA/100
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    usb 3-1: reset full speed USB device using uhci_hcd and address 2
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    PM: resume of devices complete after 996.313 msecs
    PM: Finishing wakeup.
    Restarting tasks ...
    atkbd serio0: Unknown key released (translated set 2, code 0x7c on isa0060/serio0).
    atkbd serio0: Use 'setkeycodes 7c <keycode>' to make it known.
    done

    korpenkraxar wrote:
    Try this with a kernel 3.X version:
    hpet=disable highres=off nohz=off
    I have been trying to resolve the issue of suspend failing to resume on me Lenovo s10-3 (not the touch screen) for what seems an aeon.
    A profound thank you to you all.
    hpet=disable highres=off nohz=off
    Works!
    I now have no indication lights showing when the machine is suspended? But finally I can close the lid and reopen to resume - fantastic, this machine may finally see some more use.
    I am running Linux Mint Debian Edition (LMDE) running Gnome 3 with 3 series kernels (presently liquorix 3.4.0-4.dmz.1-liquorix-686)

  • Problem with xfce4-session.

    Hello, I'm not sure whether I'm posting in the correct section of the forums but anyway, here's the problem, after upgrading the system xfce started crashing randomly (It definitely crashes when I try to suspend first time, then it does it correctly). I took a look in Xorg and fglrx log files, they didn't contain any errors. However, dmesg listed a segfault of xfce4-session in libglib, is there any solution for that problem or I just have to wait until the upgrade. Also, I have and AMD E-450 APU, and a proprietary catalyst driver from catalyst-stable. Here is the output from dmesg (the segfault message is in the end):
    [ 0.000000] PM: Registered nosave memory: 00000000afb64000 - 00000000afb6c000
    [ 0.000000] PM: Registered nosave memory: 00000000afb6c000 - 00000000afb91000
    [ 0.000000] PM: Registered nosave memory: 00000000afb91000 - 00000000afbd4000
    [ 0.000000] PM: Registered nosave memory: 00000000afd47000 - 00000000afef7000
    [ 0.000000] PM: Registered nosave memory: 00000000aff00000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    [ 0.000000] PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    [ 0.000000] PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 0000000100000000
    [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    [ 0.000000] e820: [mem 0xaff00000-0xfebfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s84544 r8192 d21952 u1048576
    [ 0.000000] pcpu-alloc: s84544 r8192 d21952 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 966665
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lqx root=UUID=ee58701b-54f4-4a5e-a884-636f3ac8cb2f ro nomodeset usbcore.autosuspend=1 quiet usbcore.autosuspend=0 nomodeset nmi_watchdog=0 pcie_aspm=force
    [ 0.000000] PCIe ASPM is forcibly enabled
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3782720k/5242880k available (4438k kernel code, 1314812k absent, 145348k reserved, 2809k data, 640k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2.
    [ 0.000000] NR_IRQS:33024 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 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.001000] tsc: Detected 1646.401 MHz processor
    [ 0.000005] Calibrating delay loop (skipped), value calculated using timer frequency.. 3292.80 BogoMIPS (lpj=1646401)
    [ 0.000010] pid_max: default: 32768 minimum: 301
    [ 0.000063] Security Framework initialized
    [ 0.000068] SELinux: Disabled at boot.
    [ 0.000071] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000073] Yama: becoming mindful.
    [ 0.000095] Mount-cache hash table entries: 256
    [ 0.000418] tseg: 00aff00000
    [ 0.000422] CPU: Physical Processor ID: 0
    [ 0.000424] CPU: Processor Core ID: 0
    [ 0.000426] mce: CPU supports 6 MCE banks
    [ 0.000442] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4
    tlb_flushall_shift: 5
    [ 0.000558] Freeing SMP alternatives: 16k freed
    [ 0.002455] ACPI: Core revision 20121018
    [ 0.015032] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.025024] smpboot: CPU0: AMD E-450 APU with Radeon(tm) HD Graphics (fam: 14, model: 02, stepping: 00)
    [ 0.126038] Performance Events: AMD PMU driver.
    [ 0.126044] ... version: 0
    [ 0.126047] ... bit width: 48
    [ 0.126048] ... generic registers: 4
    [ 0.126050] ... value mask: 0000ffffffffffff
    [ 0.126051] ... max period: 00007fffffffffff
    [ 0.126053] ... fixed-purpose events: 0
    [ 0.126054] ... event mask: 000000000000000f
    [ 0.134178] smpboot: Booting Node 0, Processors #1 OK
    [ 0.147430] Brought up 2 CPUs
    [ 0.147435] smpboot: Total of 2 processors activated (6585.60 BogoMIPS)
    [ 0.148250] devtmpfs: initialized
    [ 0.148666] PM: Registering ACPI NVS region [mem 0xafaf7000-0xafb3efff] (294912 bytes)
    [ 0.148681] PM: Registering ACPI NVS region [mem 0xafb49000-0xafb4bfff] (12288 bytes)
    [ 0.148683] PM: Registering ACPI NVS region [mem 0xafb4d000-0xafb4dfff] (4096 bytes)
    [ 0.148686] PM: Registering ACPI NVS region [mem 0xafb64000-0xafb6bfff] (32768 bytes)
    [ 0.148689] PM: Registering ACPI NVS region [mem 0xafb91000-0xafbd3fff] (274432 bytes)
    [ 0.149151] regulator-dummy: no parameters
    [ 0.149293] NET: Registered protocol family 16
    [ 0.150271] ACPI: bus type pci registered
    [ 0.150593] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.150599] PCI: not using MMCONFIG
    [ 0.150601] PCI: Using configuration type 1 for base access
    [ 0.150602] PCI: Using configuration type 1 for extended access
    [ 0.155916] bio: create slab <bio-0> at 0
    [ 0.156315] ACPI: Added _OSI(Module Device)
    [ 0.156319] ACPI: Added _OSI(Processor Device)
    [ 0.156321] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.156323] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.158103] ACPI: EC: Look up EC in DSDT
    [ 0.160056] ACPI: Executed 3 blocks of module-level executable AML code
    [ 0.172510] ACPI: Interpreter enabled
    [ 0.172527] ACPI: (supports S0 S3 S4 S5)
    [ 0.172576] ACPI: Using IOAPIC for interrupt routing
    [ 0.172886] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.172961] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.213033] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.213391] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 0.245487] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    [ 0.245850] ACPI: No dock devices found.
    [ 0.245858] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.246163] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.246166] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.246887] PCI host bridge to bus 0000:00
    [ 0.246895] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.246899] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.246906] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.246910] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.246913] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.246916] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.246919] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.246923] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
    [ 0.246938] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
    [ 0.246999] pci 0000:00:01.0: [1002:9806] type 00 class 0x030000
    [ 0.247013] pci 0000:00:01.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    [ 0.247023] pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    [ 0.247032] pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    [ 0.247093] pci 0000:00:01.0: supports D1 D2
    [ 0.247118] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
    [ 0.247130] pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    [ 0.247202] pci 0000:00:01.1: supports D1 D2
    [ 0.247388] pci 0000:00:04.0: [1022:1512] type 01 class 0x060400
    [ 0.247482] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 0.247576] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
    [ 0.247602] pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    [ 0.247615] pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    [ 0.247629] pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    [ 0.247642] pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    [ 0.247655] pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    [ 0.247669] pci 0000:00:11.0: reg 24: [mem 0xfeb4d000-0xfeb4d3ff]
    [ 0.247749] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    [ 0.247767] pci 0000:00:12.0: reg 10: [mem 0xfeb4c000-0xfeb4cfff]
    [ 0.247863] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    [ 0.247889] pci 0000:00:12.2: reg 10: [mem 0xfeb4b000-0xfeb4b0ff]
    [ 0.247997] pci 0000:00:12.2: supports D1 D2
    [ 0.248000] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.248033] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    [ 0.248052] pci 0000:00:13.0: reg 10: [mem 0xfeb4a000-0xfeb4afff]
    [ 0.248150] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    [ 0.248175] pci 0000:00:13.2: reg 10: [mem 0xfeb49000-0xfeb490ff]
    [ 0.248289] pci 0000:00:13.2: supports D1 D2
    [ 0.248292] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.248325] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    [ 0.248433] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    [ 0.248461] pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 0.248548] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.248571] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    [ 0.248673] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    [ 0.248732] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    [ 0.248750] pci 0000:00:14.5: reg 10: [mem 0xfeb48000-0xfeb48fff]
    [ 0.248848] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
    [ 0.248953] pci 0000:00:15.0: supports D1 D2
    [ 0.248991] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
    [ 0.249095] pci 0000:00:15.1: supports D1 D2
    [ 0.249133] pci 0000:00:15.2: [1002:43a2] type 01 class 0x060400
    [ 0.249237] pci 0000:00:15.2: supports D1 D2
    [ 0.249282] pci 0000:00:15.3: [1002:43a3] type 01 class 0x060400
    [ 0.249387] pci 0000:00:15.3: supports D1 D2
    [ 0.249426] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
    [ 0.249474] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
    [ 0.249518] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
    [ 0.249564] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
    [ 0.249621] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
    [ 0.249665] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
    [ 0.249711] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
    [ 0.249755] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
    [ 0.249928] pci 0000:00:04.0: PCI bridge to [bus 01]
    [ 0.250055] pci 0000:00:14.4: PCI bridge to [bus 02] (subtractive decode)
    [ 0.250067] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.250070] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.250074] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.250077] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.250080] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.250083] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.250086] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 0.250216] pci 0000:03:00.0: [14e4:4727] type 00 class 0x028000
    [ 0.250259] pci 0000:03:00.0: reg 10: [mem 0xfea00000-0xfea03fff 64bit]
    [ 0.250422] pci 0000:03:00.0: supports D1 D2
    [ 0.250425] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.252383] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.252400] pci 0000:00:15.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.252481] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.252587] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.252610] pci 0000:05:00.0: reg 10: [io 0xe000-0xe0ff]
    [ 0.252649] pci 0000:05:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
    [ 0.252674] pci 0000:05:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
    [ 0.252777] pci 0000:05:00.0: supports D1 D2
    [ 0.252780] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.254339] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.254353] pci 0000:00:15.2: bridge window [io 0xe000-0xefff]
    [ 0.254369] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.254451] pci 0000:00:15.3: PCI bridge to [bus 06]
    [ 0.254501] pci_bus 0000:00: on NUMA node 0
    [ 0.254602] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE20._PRT]
    [ 0.254674] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE21._PRT]
    [ 0.254726] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE22._PRT]
    [ 0.254777] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE23._PRT]
    [ 0.254856] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE4._PRT]
    [ 0.254913] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.254916] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.259554] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    [ 0.259704] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    [ 0.259814] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    [ 0.259920] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 11 14 15) *0
    [ 0.260007] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
    [ 0.260075] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
    [ 0.260142] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
    [ 0.260210] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
    [ 0.260719] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.260732] vgaarb: loaded
    [ 0.260733] vgaarb: bridge control possible 0000:00:01.0
    [ 0.261239] ACPI: bus type usb registered
    [ 0.261372] usbcore: registered new interface driver usbfs
    [ 0.261438] usbcore: registered new interface driver hub
    [ 0.261565] usbcore: registered new device driver usb
    [ 0.262092] PCI: Using ACPI for IRQ routing
    [ 0.273018] PCI: pci_cache_line_size set to 64 bytes
    [ 0.273142] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.273146] e820: reserve RAM buffer [mem 0xafaf7000-0xafffffff]
    [ 0.273149] e820: reserve RAM buffer [mem 0xafb54000-0xafffffff]
    [ 0.273151] e820: reserve RAM buffer [mem 0xafd47000-0xafffffff]
    [ 0.273154] e820: reserve RAM buffer [mem 0xaff00000-0xafffffff]
    [ 0.273543] NetLabel: Initializing
    [ 0.273546] NetLabel: domain hash size = 128
    [ 0.273547] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.273565] NetLabel: unlabeled traffic allowed by default
    [ 0.273680] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.273687] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.275723] Switching to clocksource hpet
    [ 0.281493] pnp: PnP ACPI init
    [ 0.281511] ACPI: bus type pnp registered
    [ 0.281854] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.281861] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.282965] system 00:01: [io 0x040b] has been reserved
    [ 0.282969] system 00:01: [io 0x04d6] has been reserved
    [ 0.282972] system 00:01: [io 0x0c00-0x0c01] has been reserved
    [ 0.282979] system 00:01: [io 0x0c14] has been reserved
    [ 0.282984] system 00:01: [io 0x0c50-0x0c51] has been reserved
    [ 0.282987] system 00:01: [io 0x0c52] has been reserved
    [ 0.282990] system 00:01: [io 0x0c6c] has been reserved
    [ 0.282994] system 00:01: [io 0x0c6f] has been reserved
    [ 0.282997] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.283000] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.283004] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.283007] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.283010] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.283014] system 00:01: [io 0x0800-0x089f] has been reserved
    [ 0.283017] system 00:01: [io 0x0b20-0x0b3f] has been reserved
    [ 0.283020] system 00:01: [io 0x0900-0x090f] has been reserved
    [ 0.283024] system 00:01: [io 0x0910-0x091f] has been reserved
    [ 0.283027] system 00:01: [io 0xfe00-0xfefe] has been reserved
    [ 0.283033] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.283037] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.283041] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.283045] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.283049] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.283054] system 00:01: [mem 0xfed00000-0xfed00fff] has been reserved
    [ 0.283057] system 00:01: [mem 0xffe00000-0xffffffff] has been reserved
    [ 0.283062] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.283085] pnp 00:02: [dma 4]
    [ 0.283236] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.283356] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.283484] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.283686] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.283691] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.283937] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.284106] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.284264] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.284487] pnp 00:09: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
    [ 0.285108] system 00:0a: [mem 0xb0000000-0xbfffffff] has been reserved
    [ 0.285113] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.297800] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.297811] pnp: PnP ACPI: found 12 devices
    [ 0.297813] ACPI: ACPI bus type pnp unregistered
    [ 0.303106] pci 0000:00:04.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.303114] pci 0000:00:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.303119] pci 0000:00:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    [ 0.303173] pci 0000:00:15.0: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
    [ 0.303178] pci 0000:00:15.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    [ 0.303192] pci 0000:00:15.1: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
    [ 0.303196] pci 0000:00:15.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
    [ 0.303200] pci 0000:00:15.1: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
    [ 0.303213] pci 0000:00:15.2: bridge window [mem 0x00100000-0x000fffff] to [bus 05] add_size 400000
    [ 0.303226] pci 0000:00:15.3: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000
    [ 0.303230] pci 0000:00:15.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
    [ 0.303234] pci 0000:00:15.3: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000
    [ 0.303253] pci 0000:00:04.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303257] pci 0000:00:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303261] pci 0000:00:15.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303264] pci 0000:00:15.1: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303268] pci 0000:00:15.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303271] pci 0000:00:15.2: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
    [ 0.303275] pci 0000:00:15.3: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.303278] pci 0000:00:15.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.303281] pci 0000:00:04.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303285] pci 0000:00:15.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303288] pci 0000:00:15.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303291] pci 0000:00:15.3: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.303300] pci 0000:00:04.0: BAR 14: assigned [mem 0xd0100000-0xd02fffff]
    [ 0.303305] pci 0000:00:04.0: BAR 15: assigned [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303310] pci 0000:00:15.0: BAR 15: assigned [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303315] pci 0000:00:15.1: BAR 14: assigned [mem 0xd0700000-0xd08fffff]
    [ 0.303320] pci 0000:00:15.1: BAR 15: assigned [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303324] pci 0000:00:15.2: BAR 14: assigned [mem 0xd0b00000-0xd0efffff]
    [ 0.303328] pci 0000:00:15.3: BAR 14: assigned [mem 0xd0f00000-0xd10fffff]
    [ 0.303332] pci 0000:00:15.3: BAR 15: assigned [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303339] pci 0000:00:04.0: BAR 13: assigned [io 0x1000-0x1fff]
    [ 0.303345] pci 0000:00:15.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.303349] pci 0000:00:15.1: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.303354] pci 0000:00:15.3: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.303361] pci 0000:00:04.0: PCI bridge to [bus 01]
    [ 0.303367] pci 0000:00:04.0: bridge window [io 0x1000-0x1fff]
    [ 0.303373] pci 0000:00:04.0: bridge window [mem 0xd0100000-0xd02fffff]
    [ 0.303378] pci 0000:00:04.0: bridge window [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303385] pci 0000:00:14.4: PCI bridge to [bus 02]
    [ 0.303470] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.303474] pci 0000:00:15.0: bridge window [io 0x2000-0x2fff]
    [ 0.303481] pci 0000:00:15.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.303487] pci 0000:00:15.0: bridge window [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303495] pci 0000:00:15.1: PCI bridge to [bus 04]
    [ 0.303499] pci 0000:00:15.1: bridge window [io 0x3000-0x3fff]
    [ 0.303506] pci 0000:00:15.1: bridge window [mem 0xd0700000-0xd08fffff]
    [ 0.303512] pci 0000:00:15.1: bridge window [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303521] pci 0000:00:15.2: PCI bridge to [bus 05]
    [ 0.303525] pci 0000:00:15.2: bridge window [io 0xe000-0xefff]
    [ 0.303532] pci 0000:00:15.2: bridge window [mem 0xd0b00000-0xd0efffff]
    [ 0.303537] pci 0000:00:15.2: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.303545] pci 0000:00:15.3: PCI bridge to [bus 06]
    [ 0.303549] pci 0000:00:15.3: bridge window [io 0x4000-0x4fff]
    [ 0.303557] pci 0000:00:15.3: bridge window [mem 0xd0f00000-0xd10fffff]
    [ 0.303562] pci 0000:00:15.3: bridge window [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303627] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.303631] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.303634] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.303637] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.303640] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.303643] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.303647] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.303650] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
    [ 0.303653] pci_bus 0000:01: resource 1 [mem 0xd0100000-0xd02fffff]
    [ 0.303656] pci_bus 0000:01: resource 2 [mem 0xd0300000-0xd04fffff 64bit pref]
    [ 0.303660] pci_bus 0000:02: resource 4 [io 0x0000-0x03af]
    [ 0.303663] pci_bus 0000:02: resource 5 [io 0x03e0-0x0cf7]
    [ 0.303666] pci_bus 0000:02: resource 6 [io 0x03b0-0x03df]
    [ 0.303669] pci_bus 0000:02: resource 7 [io 0x0d00-0xffff]
    [ 0.303672] pci_bus 0000:02: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.303675] pci_bus 0000:02: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.303678] pci_bus 0000:02: resource 10 [mem 0xc0000000-0xffffffff]
    [ 0.303681] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    [ 0.303684] pci_bus 0000:03: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.303687] pci_bus 0000:03: resource 2 [mem 0xd0500000-0xd06fffff 64bit pref]
    [ 0.303691] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.303693] pci_bus 0000:04: resource 1 [mem 0xd0700000-0xd08fffff]
    [ 0.303752] pci_bus 0000:04: resource 2 [mem 0xd0900000-0xd0afffff 64bit pref]
    [ 0.303755] pci_bus 0000:05: resource 0 [io 0xe000-0xefff]
    [ 0.303758] pci_bus 0000:05: resource 1 [mem 0xd0b00000-0xd0efffff]
    [ 0.303761] pci_bus 0000:05: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 0.303765] pci_bus 0000:06: resource 0 [io 0x4000-0x4fff]
    [ 0.303768] pci_bus 0000:06: resource 1 [mem 0xd0f00000-0xd10fffff]
    [ 0.303771] pci_bus 0000:06: resource 2 [mem 0xd1100000-0xd12fffff 64bit pref]
    [ 0.303836] NET: Registered protocol family 2
    [ 0.304049] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.304316] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.304574] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.304683] TCP: reno registered
    [ 0.304693] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.304845] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.305013] NET: Registered protocol family 1
    [ 0.305042] pci 0000:00:01.0: Boot video device
    [ 0.305384] PCI: CLS 64 bytes, default 64
    [ 0.305471] Unpacking initramfs...
    [ 0.400016] Freeing initrd memory: 2664k freed
    [ 0.401721] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.401733] software IO TLB [mem 0xabaf7000-0xafaf7000] (64MB) mapped at [ffff8800abaf7000-ffff8800afaf6fff]
    [ 0.401984] LVT offset 0 assigned for vector 0x400
    [ 0.402067] perf: AMD IBS detected (0x000000ff)
    [ 0.402950] audit: initializing netlink socket (disabled)
    [ 0.402971] type=2000 audit(1367137456.294:1): initialized
    [ 0.403912] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.410965] VFS: Disk quotas dquot_6.5.2
    [ 0.411207] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.411535] msgmni has been set to 7393
    [ 0.412281] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.412285] io scheduler noop registered
    [ 0.412287] io scheduler deadline registered
    [ 0.412295] io scheduler cfq registered
    [ 0.412435] io scheduler bfq registered (default)
    [ 0.413822] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [ 0.415487] Linux agpgart interface v0.103
    [ 0.415820] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.415822] vesafb: scrolling: redraw
    [ 0.415826] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.416298] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010100000, using 3072k, total 3072k
    [ 0.477778] Console: switching to colour frame buffer device 128x48
    [ 0.530645] fb0: VESA VGA frame buffer device
    [ 0.530917] ACPI: acpi_idle registered with cpuidle
    [ 0.557297] GHES: HEST is not enabled!
    [ 0.557305] XENFS: not registering filesystem on non-xen platform
    [ 0.557737] libphy: Fixed MDIO Bus: probed
    [ 0.557999] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PSM1] at 0x60,0x64 irq 1,12
    [ 0.561580] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.561601] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.562037] mousedev: PS/2 mouse device common for all mice
    [ 0.562175] cpuidle: using governor ladder
    [ 0.562284] cpuidle: using governor menu
    [ 0.562288] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.562699] TCP: vegas registered
    [ 0.562701] TCP: yeah registered
    [ 0.562786] Key type dns_resolver registered
    [ 0.563728] registered taskstats version 1
    [ 0.564483] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.564936] powernow-k8: this CPU is not supported anymore, using acpi-cpufreq instead.
    [ 0.566831] acpi-cpufreq: overriding BIOS provided _PSD data
    [ 0.567786] Freeing unused kernel memory: 640k freed
    [ 0.568164] CFS CPU scheduler.
    [ 0.584465] systemd-udevd[507]: starting version 202
    [ 0.653357] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.655531] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.655963] ehci-pci: EHCI PCI platform driver
    [ 0.656097] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.656109] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 1
    [ 0.656128] QUIRK: Enable AMD PLL fix
    [ 0.656224] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb4c000
    [ 0.657747] SCSI subsystem initialized
    [ 0.661333] ACPI: bus type scsi registered
    [ 0.665103] libata version 3.00 loaded.
    [ 0.711249] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.711257] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.711260] usb usb1: Product: OHCI Host Controller
    [ 0.711263] usb usb1: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.711266] usb usb1: SerialNumber: 0000:00:12.0
    [ 0.711963] hub 1-0:1.0: USB hub found
    [ 0.711978] hub 1-0:1.0: 5 ports detected
    [ 0.712324] ehci-pci 0000:00:12.2: EHCI Host Controller
    [ 0.712335] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 2
    [ 0.712343] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.712361] ehci-pci 0000:00:12.2: debug port 1
    [ 0.712428] ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb4b000
    [ 0.718188] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.718242] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [ 0.718249] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.718255] usb usb2: Product: EHCI Host Controller
    [ 0.718260] usb usb2: Manufacturer: Linux 3.8.8-1-lqx ehci_hcd
    [ 0.718264] usb usb2: SerialNumber: 0000:00:12.2
    [ 0.718762] hub 2-0:1.0: USB hub found
    [ 0.718770] hub 2-0:1.0: 5 ports detected
    [ 0.719034] ehci-pci 0000:00:13.2: EHCI Host Controller
    [ 0.719043] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 3
    [ 0.719061] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.719099] ehci-pci 0000:00:13.2: debug port 1
    [ 0.719142] ehci-pci 0000:00:13.2: irq 17, io mem 0xfeb49000
    [ 0.725166] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 0.725211] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
    [ 0.725218] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.725224] usb usb3: Product: EHCI Host Controller
    [ 0.725230] usb usb3: Manufacturer: Linux 3.8.8-1-lqx ehci_hcd
    [ 0.725235] usb usb3: SerialNumber: 0000:00:13.2
    [ 0.725648] hub 3-0:1.0: USB hub found
    [ 0.725656] hub 3-0:1.0: 5 ports detected
    [ 0.725886] ahci 0000:00:11.0: version 3.0
    [ 0.726156] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
    [ 0.726162] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    [ 0.730354] scsi0 : ahci
    [ 0.730816] scsi1 : ahci
    [ 0.731197] scsi2 : ahci
    [ 0.731481] scsi3 : ahci
    [ 0.731816] scsi4 : ahci
    [ 0.732139] scsi5 : ahci
    [ 0.732460] ata1: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d100 irq 19
    [ 0.732464] ata2: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d180 irq 19
    [ 0.732468] ata3: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d200 irq 19
    [ 0.732471] ata4: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d280 irq 19
    [ 0.732475] ata5: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d300 irq 19
    [ 0.732478] ata6: SATA max UDMA/133 abar m1024@0xfeb4d000 port 0xfeb4d380 irq 19
    [ 0.732661] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 0.732683] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
    [ 0.732720] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfeb4a000
    [ 0.787137] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.787142] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.787145] usb usb4: Product: OHCI Host Controller
    [ 0.787148] usb usb4: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.787151] usb usb4: SerialNumber: 0000:00:13.0
    [ 0.787659] hub 4-0:1.0: USB hub found
    [ 0.787670] hub 4-0:1.0: 5 ports detected
    [ 0.787909] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 0.787918] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 5
    [ 0.787944] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfeb48000
    [ 0.842042] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
    [ 0.842046] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 0.842049] usb usb5: Product: OHCI Host Controller
    [ 0.842052] usb usb5: Manufacturer: Linux 3.8.8-1-lqx ohci_hcd
    [ 0.842054] usb usb5: SerialNumber: 0000:00:14.5
    [ 0.842401] hub 5-0:1.0: USB hub found
    [ 0.842410] hub 5-0:1.0: 2 ports detected
    [ 1.036735] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.036809] ata3: SATA link down (SStatus 0 SControl 300)
    [ 1.037712] ata5: SATA link down (SStatus 0 SControl 300)
    [ 1.037754] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.037797] ata6: SATA link down (SStatus 0 SControl 300)
    [ 1.121601] usb 2-5: new high-speed USB device number 3 using ehci-pci
    [ 1.191503] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.197711] ata1.00: ATA-8: ST500LM012 HN-M500MBB, 2AR10002, max UDMA/133
    [ 1.197719] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.203906] ata1.00: configured for UDMA/133
    [ 1.204335] scsi 0:0:0:0: Direct-Access ATA ST500LM012 HN-M5 2AR1 PQ: 0 ANSI: 5
    [ 1.212034] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.212041] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.212125] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.212130] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.212166] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.239240] usb 2-5: New USB device found, idVendor=12d1, idProduct=1506
    [ 1.239251] usb 2-5: New USB device strings: Mfr=4, Product=3, SerialNumber=0
    [ 1.239257] usb 2-5: Product: HUAWEI Mobile
    [ 1.239263] usb 2-5: Manufacturer: Huawei Technologies
    [ 1.239601] sda: sda1 sda2 sda3 sda4
    [ 1.241058] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.248373] Initializing USB Mass Storage driver...
    [ 1.248653] scsi6 : usb-storage 2-5:1.5
    [ 1.249032] scsi7 : usb-storage 2-5:1.6
    [ 1.250887] usbcore: registered new interface driver usb-storage
    [ 1.250892] USB Mass Storage support registered.
    [ 1.346272] usb 3-4: new high-speed USB device number 2 using ehci-pci
    [ 1.402164] tsc: Refined TSC clocksource calibration: 1646.493 MHz
    [ 1.402180] Switching to clocksource tsc
    [ 1.463721] usb 3-4: New USB device found, idVendor=2232, idProduct=1020
    [ 1.463730] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 1.463737] usb 3-4: Product: WebCam SC-0311139N
    [ 1.463743] usb 3-4: Manufacturer: Image Processor
    [ 1.463748] usb 3-4: SerialNumber: SM3711
    [ 1.690741] usb 1-3: new full-speed USB device number 2 using ohci_hcd
    [ 1.847612] usb 1-3: New USB device found, idVendor=0a5c, idProduct=219c
    [ 1.847624] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 1.847631] usb 1-3: Product: Broadcom BCM2070 Bluetooth Device
    [ 1.847637] usb 1-3: Manufacturer: Broadcom Corp
    [ 1.847642] usb 1-3: SerialNumber: 30144A229E4B
    [ 2.058659] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.250157] scsi 6:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 2
    [ 2.250876] scsi 7:0:0:0: Direct-Access HUAWEI TF CARD Storage PQ: 0 ANSI: 2
    [ 2.302154] sd 7:0:0:0: [sdb] Attached SCSI removable disk
    [ 2.827197] systemd[1]: systemd 202 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.065305] systemd[1]: Inserted module 'autofs4'
    [ 3.083044] systemd[1]: Set hostname to <REM>.
    [ 3.104478] systemd[1]: /etc/mtab is not a symlink or not pointing to /proc/self/mounts. This is not supported anymore. Please make sure to replace this file by a symlink to avoid incorrect or misleading mount(8) output.
    [ 3.673989] systemd[1]: logged here: 'Support for option SysVStartPriority= has been disabled at compile time and is ignored': 0
    [ 3.928323] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.928445] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.928473] systemd[1]: Starting Remote File Systems.
    [ 3.928499] systemd[1]: Reached target Remote File Systems.
    [ 3.928520] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.928571] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.928589] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 3.928636] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 3.928654] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.928708] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.928727] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 3.928777] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 3.928798] systemd[1]: Starting Encrypted Volumes.
    [ 3.928818] systemd[1]: Reached target Encrypted Volumes.
    [ 3.928949] systemd[1]: Starting udev Kernel Socket.
    [ 3.928994] systemd[1]: Listening on udev Kernel Socket.
    [ 3.929083] systemd[1]: Starting udev Control Socket.
    [ 3.929127] systemd[1]: Listening on udev Control Socket.
    [ 3.929179] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.929401] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.929433] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.929511] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.929537] systemd[1]: Starting Journal Socket.
    [ 3.929627] systemd[1]: Listening on Journal Socket.
    [ 3.929668] systemd[1]: Mounting Debug File System...
    [ 3.941501] systemd[1]: Starting Setup Virtual Console...
    [ 3.948777] systemd[1]: Starting udev Coldplug all Devices...
    [ 4.302692] systemd[1]: Started Set Up Additional Binary Formats.
    [ 4.302896] systemd[1]: Starting Create static device nodes in /dev...
    [ 4.311080] systemd[1]: Mounting Huge Pages File System...
    [ 4.333926] systemd[1]: Starting Apply Kernel Variables...
    [ 4.344029] systemd[1]: Starting Journal Service...
    [ 4.354053] systemd[1]: Started Journal Service.
    [ 4.354159] systemd[1]: Mounting POSIX Message Queue File System...
    [ 4.398484] systemd[1]: Starting Load Kernel Modules...
    [ 4.405897] systemd[1]: Expecting device dev-sda2.device...
    [ 4.405958] systemd[1]: Started File System Check on Root Device.
    [ 4.405985] systemd[1]: Mounting Temporary Directory...
    [ 4.444783] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 5.141813] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15
    [ 5.523573] vboxdrv: Found 2 processor cores.
    [ 5.523876] vboxdrv: fAsync=0 offMin=0x37b offMax=0x21cc
    [ 5.524228] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 5.524230] vboxdrv: Successfully loaded version 4.2.12_OSE (interface 0x001a0004).
    [ 5.585084] systemd-udevd[1417]: starting version 202
    [ 6.551072] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
    [ 6.551149] ACPI: Lid Switch [LID]
    [ 6.551279] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 6.551286] ACPI: Power Button [PWRB]
    [ 6.551432] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    [ 6.551436] ACPI: Sleep Button [SLPB]
    [ 6.551556] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 6.551560] ACPI: Power Button [PWRF]
    [ 6.557442] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.570168] ACPI: AC Adapter [ADP1] (on-line)
    [ 6.576119] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    [ 6.581379] acpi device:31: registered as cooling_device2
    [ 6.581414] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no)
    [ 6.581535] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 6.685232] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 6.685246] ACPI: Battery Slot [BAT1] (battery present)
    [ 6.830273] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 6.830383] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 7.576782] [drm] Initialized drm 1.1.0 20060810
    [ 7.618495] [drm] VGACON disable radeon kernel modesetting.
    [ 7.620005] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 7.620007] [drm] No driver support for vblank timestamp query.
    [ 7.620012] [drm] Initialized radeon 1.33.0 20080528 for 0000:00:01.0 on minor 0
    [ 7.767784] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 7.767790] Disabling lock debugging due to kernel taint
    [ 7.783921] <6>[fglrx] Maximum main memory to use for locked dma buffers: 3540 MBytes.
    [ 7.784096] <6>[fglrx] vendor: 1002 device: 9806 count: 1
    [ 7.784621] <6>[fglrx] ioport: bar 1, base 0xf000, size: 0x100
    [ 7.785024] <6>[fglrx] Kernel PAT support is enabled
    [ 7.785057] <6>[fglrx] module loaded - fglrx 9.1.11 [Dec 19 2012] with 1 minors
    [ 8.571990] Adding 4194300k swap on /dev/sda2. Priority:-1 extents:1 across:4194300k
    [ 10.299762] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 10.935682] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
    [ 10.950057] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x16, 0x0a.
    [ 11.022649] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input7
    [ 11.032941] microcode: CPU0: patch_level=0x05000101
    [ 14.667774] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 14.684494] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
    [ 14.684678] sp5100_tco: PCI Revision ID: 0x42
    [ 14.684818] sp5100_tco: Using 0xfed80b00 for watchdog MMIO address
    [ 14.684869] sp5100_tco: Last reboot was not triggered by watchdog.
    [ 14.685016] sp5100_tco: initialized (0xffffc9000003eb00). heartbeat=60 sec (nowayout=0)
    [ 14.913699] systemd-logind[1501]: Watching system buttons on /dev/input/event1 (Lid Switch)
    [ 14.914754] systemd-logind[1501]: Watching system buttons on /dev/input/event2 (Power Button)
    [ 14.915967] systemd-logind[1501]: Watching system buttons on /dev/input/event3 (Sleep Button)
    [ 14.916946] systemd-logind[1501]: Watching system buttons on /dev/input/event4 (Power Button)
    [ 14.925385] systemd-logind[1501]: Watching system buttons on /dev/input/event5 (Video Bus)
    [ 14.993314] microcode: failed to load file amd-ucode/microcode_amd.bin
    [ 14.993343] microcode: CPU1: patch_level=0x05000101
    [ 14.994827] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 15.200573] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 15.200964] r8169 0000:05:00.0: irq 40 for MSI/MSI-X
    [ 15.204405] r8169 0000:05:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000034000, 50:b7:c3:02:d7:05, XID 0c900800 IRQ 40
    [ 15.204413] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 15.290455] systemd-udevd[1420]: renamed network interface eth0 to enp5s0
    [ 15.292678] systemd-sysctl[2033]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 15.404438] samsung_laptop: detected SABI interface: SwSmi@
    [ 15.404444] samsung_laptop: Backlight controlled by ACPI video driver
    [ 15.452716] fglrx_pci 0000:00:01.0: irq 41 for MSI/MSI-X
    [ 15.453760] <6>[fglrx] Firegl kernel thread PID: 2044
    [ 15.453957] <6>[fglrx] Firegl kernel thread PID: 2045
    [ 15.454361] <6>[fglrx] Firegl kernel thread PID: 2046
    [ 15.454513] <6>[fglrx] IRQ 41 Enabled
    [ 15.459141] <6>[fglrx] Gart USWC size:1156 M.
    [ 15.459145] <6>[fglrx] Gart cacheable size:458 M.
    [ 15.459152] <6>[fglrx] Reserved FB block: Shared offset:0, size:1000000
    [ 15.459154] <6>[fglrx] Reserved FB block: Unshared offset:fc54000, size:3a0000
    [ 15.459157] <6>[fglrx] Reserved FB block: Unshared offset:fff4000, size:c000
    [ 15.461998] systemd-sysctl[2047]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 15.698292] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 16.424442] kvm: Nested Virtualization enabled
    [ 16.424448] kvm: Nested Paging enabled
    [ 16.499708] cfg80211: Calling CRDA to update world regulatory domain
    [ 16.716267] Bluetooth: Core ver 2.16
    [ 16.718230] NET: Registered protocol family 31
    [ 16.718232] Bluetooth: HCI device and connection manager initialized
    [ 16.718245] Bluetooth: HCI socket layer initialized
    [ 16.718249] Bluetooth: L2CAP socket layer initialized
    [ 16.718259] Bluetooth: SCO socket layer initialized
    [ 16.733212] media: Linux media interface: v0.10
    [ 16.782160] lib80211: common routines for IEEE802.11 drivers
    [ 16.782166] lib80211_crypt: registered algorithm 'NULL'
    [ 16.784149] Linux video capture interface: v2.00
    [ 16.815091] usbcore: registered new interface driver usbserial
    [ 16.816124] usbcore: registered new interface driver usbserial_generic
    [ 16.817094] usbserial: USB Serial support registered for generic
    [ 16.906678] usbcore: registered new interface driver option
    [ 16.909342] usbserial: USB Serial support registered for GSM modem (1-port)
    [ 16.909431] option 2-5:1.0: GSM modem (1-port) converter detected
    [ 16.912145] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB0
    [ 16.912225] option 2-5:1.3: GSM modem (1-port) converter detected
    [ 16.915130] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB1
    [ 16.915190] option 2-5:1.4: GSM modem (1-port) converter detected
    [ 16.921982] usb 2-5: GSM modem (1-port) converter now attached to ttyUSB2
    [ 16.986926] systemd-udevd[1427]: error opening ATTR{/sys/devices/pci0000:00/0000:00:12.2/usb2/2-5/2-5:1.5/host6/scsi_host/host6/link_power_management_policy} for writing: No such file or directory
    [ 16.988089] uvcvideo: Found UVC 1.00 device WebCam SC-0311139N (2232:1020)
    [ 16.993277] systemd-udevd[1428]: error opening ATTR{/sys/devices/pci0000:00/0000:00:12.2/usb2/2-5/2-5:1.6/host7/scsi_host/host7/link_power_management_policy} for writing: No such file or directory
    [ 17.002663] input: WebCam SC-0311139N as /devices/pci0000:00/0000:00:13.2/usb3/3-4/3-4:1.0/input/input8
    [ 17.011802] usbcore: registered new interface driver uvcvideo
    [ 17.011808] USB Video Class driver (1.1.1)
    [ 17.036157] snd_hda_intel 0000:00:01.1: irq 42 for MSI/MSI-X
    [ 17.055032] usbcore: registered new interface driver cdc_wdm
    [ 17.076782] qmi_wwan 2-5:1.1: cdc-wdm0: USB WDM device
    [ 17.085492] qmi_wwan 2-5:1.1 wwan0: register 'qmi_wwan' at usb-0000:00:12.2-5, WWAN/QMI device, 02:50:f3:00:00:00
    [ 17.088340] usbcore: registered new interface driver qmi_wwan
    [ 17.173910] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input9
    [ 17.402599] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 17.546699] input: HDA ATI SB Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
    [ 17.549997] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
    [ 17.554480] lib80211_crypt: registered algorithm 'TKIP'
    [ 17.557087] eth0: Broadcom BCM4727 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 17.587070] sr0: scsi-1 drive
    [ 17.587077] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 17.590908] sr 6:0:0:0: Attached scsi CD-ROM sr0
    [ 17.764781] systemd-udevd[1426]: renamed network interface wwan0 to wwp0s18f2u5i1
    [ 17.767245] systemd-sysctl[2747]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.772802] systemd-udevd[1427]: renamed network interface eth0 to wlp3s0
    [ 17.776265] systemd-sysctl[2756]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.780048] systemd-sysctl[2755]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 17.786438] systemd-sysctl[2759]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    [ 18.086526] usbcore: registered new interface driver btusb
    [ 18.769655] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff880136590af8 (20121018/exresop-422)
    [ 18.769669] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 18.769676] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 18.769691] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 20.495319] vboxpci: IOMMU not found (not registered)
    [ 22.447778] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 22.447784] Bluetooth: BNEP filters: protocol multicast
    [ 22.447799] Bluetooth: BNEP socket layer initialized
    [ 22.595480] Bluetooth: RFCOMM TTY layer initialized
    [ 22.595500] Bluetooth: RFCOMM socket layer initialized
    [ 22.595502] Bluetooth: RFCOMM ver 1.11
    [ 24.407804] r8169 0000:05:00.0 enp5s0: link down
    [ 24.815261] NET: Registered protocol family 10
    [ 24.815665] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
    [ 31.811205] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15,commit=0
    [ 32.023742] WARNING! power/level is deprecated; use power/control instead
    [ 162.594332] fuse init (API version 7.20)
    [ 181.712247] xfce4-session[4386]: segfault at ffffffff00000000 ip 00007fe7c8be9537 sp 00007fffd9c3f2e0 error 5 in libglib-2.0.so.0.3600.1[7fe7c8b86000+fc000]
    [ 183.784141] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 184.997887] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff88013aae2948 (20121018/exresop-422)
    [ 184.997901] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 184.997908] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 184.997923] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 405.815701] NET: Registered protocol family 17
    [ 1429.517360] xfce4-session[5257]: segfault at ffffffff00000000 ip 00007f53c2ee6537 sp 00007fff6060c2d0 error 5 in libglib-2.0.so.0.3600.1[7f53c2e83000+fc000]
    [ 1430.198201] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=15,commit=600
    [ 1431.620829] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=600,commit=600
    [ 1432.769216] <6>[fglrx] ATIF platform detected with notification ID: 0x81
    [ 1434.176644] ACPI Error: Needed [Integer/String/Buffer], found [Reference] ffff880136590360 (20121018/exresop-422)
    [ 1434.176667] ACPI Exception: AE_AML_OPERAND_TYPE, While resolving operands for [OpcodeName unavailable] (20121018/dswexec-460)
    [ 1434.176680] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.AF03] (Node ffff88013b4343e8), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 1434.176709] ACPI Error: Method parse/execution failed [\_SB_.PCI0.VGA_.ATIF] (Node ffff88013b434168), AE_AML_OPERAND_TYPE (20121018/psparse-537)
    [ 1477.326788] usb 1-3: USB disconnect, device number 2
    Any help appreciated.
    Last edited by NinjaBus (2013-04-28 09:12:19)

    hadrons123 wrote:does it happen if you use the default arch kernel?
    Yes, it keeps happening even with the default kernel when I try to shut down/suspend the computer (Alt-F4 key combination). I've read on some russian forum that it's the problem in recently upgraded glib2 (as they think), however downgrade didn't help. I'll try to check whether xfce4-session is to blame.
    EDIT: It's definitely not xfce4-session, I tried previous version. Also, while running downgrade I saw that there is a newer version of glib2 in ARM, which is much more unstable, so I'm using 2.36.1-1.
    Last edited by NinjaBus (2013-04-28 15:49:59)

  • Acpi on Samsung 355V4C | brightness

    I tried to change backlight variety of ways. But nothing works.
    Ways have been tried:
    Set with acpi by writing file '/sys/class/backlight/acpi_video0/brightness' like light utility.
    Set directly by setpci.
    Many ways from [SOLVED] topics in the Internet
    All, that I used here below. If you need more - just ask.
    lspci
    00:00.0 Host bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Root Complex
    00:01.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Device 9900
    00:01.1 Audio device: Advanced Micro Devices [AMD] nee ATI Trinity HDMI Audio Controller
    00:02.0 PCI bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Root Port
    00:04.0 PCI bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Root Port
    00:05.0 PCI bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Root Port
    00:10.0 USB controller: Advanced Micro Devices [AMD] FCH USB XHCI Controller (rev 03)
    00:11.0 SATA controller: Advanced Micro Devices [AMD] FCH SATA Controller [AHCI mode]
    00:12.0 USB controller: Advanced Micro Devices [AMD] FCH USB OHCI Controller (rev 11)
    00:12.2 USB controller: Advanced Micro Devices [AMD] FCH USB EHCI Controller (rev 11)
    00:14.0 SMBus: Advanced Micro Devices [AMD] FCH SMBus Controller (rev 14)
    00:14.2 Audio device: Advanced Micro Devices [AMD] FCH Azalia Controller (rev 01)
    00:14.3 ISA bridge: Advanced Micro Devices [AMD] FCH LPC Bridge (rev 11)
    00:14.4 PCI bridge: Advanced Micro Devices [AMD] FCH PCI Bridge (rev 40)
    00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Function 0
    00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Function 1
    00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Function 2
    00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Function 3
    00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Function 4
    00:18.5 Host bridge: Advanced Micro Devices [AMD] Family 15h (Models 10h-1fh) Processor Function 5
    01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Thames XT/GL [Radeon HD 7600M Series]
    02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 09)
    03:00.0 Network controller: Atheros Communications Inc. AR9485 Wireless Network Adapter (rev 01)
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.6.9-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Tue Dec 4 08:04:10 CET 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=9403958f-8632-4479-9d2d-1efbc75c65f3 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000756a5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000756a6000-0x00000000756b9fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000756ba000-0x0000000075a22fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000075a23000-0x0000000075d14fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000075d15000-0x0000000075d15fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000075d16000-0x0000000075f18fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000075f19000-0x000000007665ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000076660000-0x00000000767f2fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000767f3000-0x00000000767fffff] usable
    [ 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 0x00000000fed40000-0x00000000fed44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff010000-0x00000000ffffffff] reserved
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. 355V4C/355V4X/355V5C/355V5X/356V4C/356V4X/356V5C/356V5X/3445VC/3445VX/3545VC/3545VX/NP355V4C-S01RU, BIOS P02AAN 06/07/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x76800 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-D0FFF write-protect
    [ 0.000000] D1000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000076800000 mask FFFFFF800000 uncachable
    [ 0.000000] 2 base 000077000000 mask FFFFFF000000 uncachable
    [ 0.000000] 3 base 000078000000 mask FFFFF8000000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] found SMP MP-table at [mem 0x000fd7b0-0x000fd7bf] mapped at [ffff8800000fd7b0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x767fffff]
    [ 0.000000] [mem 0x00000000-0x3fffffff] page 1G
    [ 0.000000] [mem 0x40000000-0x767fffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x767fffff @ [mem 0x1fffe000-0x1fffffff]
    [ 0.000000] RAMDISK: [mem 0x37a70000-0x37d2ffff]
    [ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 SECCSD)
    [ 0.000000] ACPI: XSDT 00000000759fb078 00074 (v01 SECCSD LH43STAR 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0000000075a040f0 000F4 (v04 SECCSD LH43STAR 01072009 AMI 00010013)
    [ 0.000000] ACPI BIOS Bug: Warning: Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20120711/tbfadt-598)
    [ 0.000000] ACPI: DSDT 00000000759fb188 08F61 (v02 SECCSD LH43STAR 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 0000000075a1ae80 00040
    [ 0.000000] ACPI: APIC 0000000075a041e8 00072 (v03 SECCSD LH43STAR 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0000000075a04260 00044 (v01 SECCSD LH43STAR 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 0000000075a042a8 0003C (v01 SECCSD LH43STAR 01072009 MSFT 00010013)
    [ 0.000000] ACPI: HPET 0000000075a042e8 00038 (v01 SECCSD LH43STAR 01072009 AMI 00000005)
    [ 0.000000] ACPI: IFEU 0000000075a04320 00042 (v01 SECCSD LH43STAR 01072009 00000000)
    [ 0.000000] ACPI: SSDT 0000000075a04368 00B9C (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 0000000075a04f08 01ED4 (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: CRAT 0000000075a06de0 002A8 (v01 AMD AGESA 00000001 AMD 00000001)
    [ 0.000000] ACPI: SLIC 0000000075a07088 00176 (v01 SECCSD LH43STAR 01072009 AMI 00010013)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000000767fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x767fffff]
    [ 0.000000] NODE_DATA [mem 0x767fc000-0x767fffff]
    [ 0.000000] [ffffea0000000000-ffffea0001dfffff] PMD -> [ffff880073400000-ffff8800751fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0x756a5fff]
    [ 0.000000] node 0: [mem 0x75d15000-0x75d15fff]
    [ 0.000000] node 0: [mem 0x75f19000-0x7665ffff]
    [ 0.000000] node 0: [mem 0x767f3000-0x767fffff]
    [ 0.000000] On node 0 totalpages: 482698
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3913 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 7520 pages used for memmap
    [ 0.000000] DMA32 zone: 471195 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_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: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x10228210 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000756a6000 - 00000000756ba000
    [ 0.000000] PM: Registered nosave memory: 00000000756ba000 - 0000000075a23000
    [ 0.000000] PM: Registered nosave memory: 0000000075a23000 - 0000000075d15000
    [ 0.000000] PM: Registered nosave memory: 0000000075d16000 - 0000000075f19000
    [ 0.000000] PM: Registered nosave memory: 0000000076660000 - 00000000767f3000
    [ 0.000000] e820: [mem 0x76800000-0xfebfffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff880076400000 s84608 r8192 d21888 u524288
    [ 0.000000] pcpu-alloc: s84608 r8192 d21888 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: 475108
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=9403958f-8632-4479-9d2d-1efbc75c65f3 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ 0 size 32 MB
    [ 0.000000] Memory: 1885564k/1941504k available (4727k kernel code, 10712k absent, 45228k reserved, 4143k data, 772k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 7864320 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2295.641 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4593.58 BogoMIPS (lpj=7652136)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000047] Security Framework initialized
    [ 0.000052] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000226] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.000905] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.001207] Mount-cache hash table entries: 256
    [ 0.001419] Initializing cgroup subsys cpuacct
    [ 0.001422] Initializing cgroup subsys memory
    [ 0.001432] Initializing cgroup subsys devices
    [ 0.001434] Initializing cgroup subsys freezer
    [ 0.001435] Initializing cgroup subsys net_cls
    [ 0.001437] Initializing cgroup subsys blkio
    [ 0.001462] [Firmware Info]: CPU: Re-enabling disabled Topology Extensions Support
    [ 0.001465] tseg: 0076800000
    [ 0.001466] CPU: Physical Processor ID: 0
    [ 0.001468] CPU: Processor Core ID: 0
    [ 0.001469] mce: CPU supports 7 MCE banks
    [ 0.001483] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0
    tlb_flushall_shift is 0xffffffff
    [ 0.002356] ACPI: Core revision 20120711
    [ 0.010309] ftrace: allocating 18350 entries in 72 pages
    [ 0.018032] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.051034] smpboot: CPU0: AMD A10-4600M APU with Radeon(tm) HD Graphics stepping 01
    [ 0.156675] Performance Events:
    [ 0.156676] perf: AMD core performance counters detected
    [ 0.156679] AMD PMU driver.
    [ 0.156681] ... version: 0
    [ 0.156682] ... bit width: 48
    [ 0.156683] ... generic registers: 6
    [ 0.156684] ... value mask: 0000ffffffffffff
    [ 0.156685] ... max period: 00007fffffffffff
    [ 0.156686] ... fixed-purpose events: 0
    [ 0.156687] ... event mask: 000000000000003f
    [ 0.183551] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.207926] [Firmware Info]: CPU: Re-enabling disabled Topology Extensions Support
    [ 0.234533] [Firmware Info]: CPU: Re-enabling disabled Topology Extensions Support
    [ 0.196805] smpboot: Booting Node 0, Processors #1 #2 #3 OK
    [ 0.261180] [Firmware Info]: CPU: Re-enabling disabled Topology Extensions Support
    [ 0.263500] Brought up 4 CPUs
    [ 0.263509] smpboot: Total of 4 processors activated (18372.34 BogoMIPS)
    [ 0.265841] devtmpfs: initialized
    [ 0.270685] PM: Registering ACPI NVS region [mem 0x756ba000-0x75a22fff] (3575808 bytes)
    [ 0.270874] PM: Registering ACPI NVS region [mem 0x75d16000-0x75f18fff] (2109440 bytes)
    [ 0.274285] NET: Registered protocol family 16
    [ 0.274860] ACPI: bus type pci registered
    [ 0.275043] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.275051] PCI: not using MMCONFIG
    [ 0.275055] PCI: Using configuration type 1 for base access
    [ 0.275058] PCI: Using configuration type 1 for extended access
    [ 0.275570] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.275573] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.275576] mtrr: corrected configuration.
    [ 0.276970] bio: create slab <bio-0> at 0
    [ 0.277162] ACPI: Added _OSI(Module Device)
    [ 0.277167] ACPI: Added _OSI(Processor Device)
    [ 0.277172] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.277176] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.282972] ACPI: EC: Look up EC in DSDT
    [ 0.289010] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.301538] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.303880] ACPI: Interpreter enabled
    [ 0.303884] ACPI: (supports S0 S3 S4 S5)
    [ 0.303915] ACPI: Using IOAPIC for interrupt routing
    [ 0.304090] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.304140] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 0.365260] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    [ 0.365479] ACPI: No dock devices found.
    [ 0.365484] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.365858] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.366218] PCI host bridge to bus 0000:00
    [ 0.366222] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff]
    [ 0.366225] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.366227] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.366229] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.366232] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.366234] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.366236] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.366238] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.366240] pci_bus 0000:00: root bus resource [mem 0x7f000000-0xffffffff]
    [ 0.366248] pci 0000:00:00.0: [1022:1410] type 00 class 0x060000
    [ 0.366290] pci 0000:00:01.0: [1002:9900] type 00 class 0x030000
    [ 0.366299] pci 0000:00:01.0: reg 10: [mem 0xd0000000-0xd7ffffff pref]
    [ 0.366305] pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    [ 0.366311] pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    [ 0.366349] pci 0000:00:01.0: supports D1 D2
    [ 0.366364] pci 0000:00:01.1: [1002:9902] type 00 class 0x040300
    [ 0.366371] pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    [ 0.366416] pci 0000:00:01.1: supports D1 D2
    [ 0.366434] pci 0000:00:02.0: [1022:1412] type 01 class 0x060400
    [ 0.366480] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.366499] pci 0000:00:04.0: [1022:1414] type 01 class 0x060400
    [ 0.366544] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 0.366562] pci 0000:00:05.0: [1022:1415] type 01 class 0x060400
    [ 0.366609] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    [ 0.366656] pci 0000:00:10.0: [1022:7812] type 00 class 0x0c0330
    [ 0.366677] pci 0000:00:10.0: reg 10: [mem 0xfeb48000-0xfeb49fff 64bit]
    [ 0.366784] pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
    [ 0.366825] pci 0000:00:11.0: [1022:7804] type 00 class 0x010601
    [ 0.366845] pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    [ 0.366854] pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    [ 0.366864] pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    [ 0.366874] pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    [ 0.366883] pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    [ 0.366893] pci 0000:00:11.0: reg 24: [mem 0xfeb4c000-0xfeb4c7ff]
    [ 0.366954] pci 0000:00:12.0: [1022:7807] type 00 class 0x0c0310
    [ 0.366968] pci 0000:00:12.0: reg 10: [mem 0xfeb4b000-0xfeb4bfff]
    [ 0.367041] pci 0000:00:12.2: [1022:7808] type 00 class 0x0c0320
    [ 0.367060] pci 0000:00:12.2: reg 10: [mem 0xfeb4a000-0xfeb4a0ff]
    [ 0.367143] pci 0000:00:12.2: supports D1 D2
    [ 0.367145] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.367170] pci 0000:00:14.0: [1022:780b] type 00 class 0x0c0500
    [ 0.367249] pci 0000:00:14.2: [1022:780d] type 00 class 0x040300
    [ 0.367270] pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 0.367337] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.367353] pci 0000:00:14.3: [1022:780e] type 00 class 0x060100
    [ 0.367430] pci 0000:00:14.4: [1022:780f] type 01 class 0x060401
    [ 0.367481] pci 0000:00:18.0: [1022:1400] type 00 class 0x060000
    [ 0.367502] pci 0000:00:18.1: [1022:1401] type 00 class 0x060000
    [ 0.367523] pci 0000:00:18.2: [1022:1402] type 00 class 0x060000
    [ 0.367543] pci 0000:00:18.3: [1022:1403] type 00 class 0x060000
    [ 0.367567] pci 0000:00:18.4: [1022:1404] type 00 class 0x060000
    [ 0.367586] pci 0000:00:18.5: [1022:1405] type 00 class 0x060000
    [ 0.367640] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-ff]
    [ 0.367654] pci 0000:01:00.0: [1002:6840] type 00 class 0x030000
    [ 0.367670] pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.367682] pci 0000:01:00.0: reg 18: [mem 0xfea20000-0xfea3ffff 64bit]
    [ 0.367690] pci 0000:01:00.0: reg 20: [io 0xe000-0xe0ff]
    [ 0.367705] pci 0000:01:00.0: reg 30: [mem 0xfea00000-0xfea1ffff pref]
    [ 0.367741] pci 0000:01:00.0: supports D1 D2
    [ 0.376701] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.376714] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.376718] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.376722] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.376758] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-ff]
    [ 0.376791] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.376816] pci 0000:02:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 0.376843] pci 0000:02:00.0: reg 18: [mem 0xd8004000-0xd8004fff 64bit pref]
    [ 0.376862] pci 0000:02:00.0: reg 20: [mem 0xd8000000-0xd8003fff 64bit pref]
    [ 0.376936] pci 0000:02:00.0: supports D1 D2
    [ 0.376938] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.386714] pci 0000:00:04.0: PCI bridge to [bus 02]
    [ 0.386724] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    [ 0.386733] pci 0000:00:04.0: bridge window [mem 0xd8000000-0xd80fffff 64bit pref]
    [ 0.386768] pci_bus 0000:03: busn_res: [bus 03-0b] is inserted under [bus 00-ff]
    [ 0.386789] pci 0000:03:00.0: [168c:0032] type 00 class 0x028000
    [ 0.386811] pci 0000:03:00.0: reg 10: [mem 0xfe900000-0xfe97ffff 64bit]
    [ 0.386853] pci 0000:03:00.0: reg 30: [mem 0xfe980000-0xfe98ffff pref]
    [ 0.386901] pci 0000:03:00.0: supports D1 D2
    [ 0.386903] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.396700] pci 0000:00:05.0: PCI bridge to [bus 03-0b]
    [ 0.396714] pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.396736] pci_bus 0000:0c: busn_res: [bus 0c-12] is inserted under [bus 00-ff]
    [ 0.396789] pci 0000:00:14.4: PCI bridge to [bus 0c-12] (subtractive decode)
    [ 0.396799] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 0.396801] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 0.396803] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 0.396805] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.396807] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.396809] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.396812] pci 0000:00:14.4: bridge window [mem 0x7f000000-0xffffffff] (subtractive decode)
    [ 0.396833] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.397145] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
    [ 0.397194] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR14._PRT]
    [ 0.397238] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR15._PRT]
    [ 0.397409] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.397764] pci0000:00: ACPI _OSC control (0x19) granted
    [ 0.404558] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.404636] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.404716] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.404793] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.404855] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.404902] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.404948] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.404994] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
    [ 0.405225] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.405238] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.405241] vgaarb: loaded
    [ 0.405242] vgaarb: bridge control possible 0000:01:00.0
    [ 0.405243] vgaarb: no bridge control possible 0000:00:01.0
    [ 0.405303] PCI: Using ACPI for IRQ routing
    [ 0.413918] PCI: pci_cache_line_size set to 64 bytes
    [ 0.413995] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    [ 0.413997] e820: reserve RAM buffer [mem 0x756a6000-0x77ffffff]
    [ 0.413999] e820: reserve RAM buffer [mem 0x75d16000-0x77ffffff]
    [ 0.414001] e820: reserve RAM buffer [mem 0x76660000-0x77ffffff]
    [ 0.414003] e820: reserve RAM buffer [mem 0x76800000-0x77ffffff]
    [ 0.414110] NetLabel: Initializing
    [ 0.414111] NetLabel: domain hash size = 128
    [ 0.414112] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.414126] NetLabel: unlabeled traffic allowed by default
    [ 0.414142] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.414146] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 0.416190] Switching to clocksource hpet
    [ 0.423964] pnp: PnP ACPI init
    [ 0.423982] ACPI: bus type pnp registered
    [ 0.424210] pnp 00:00: [bus 00-ff]
    [ 0.424213] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.424216] pnp 00:00: [io 0x0000-0x03af window]
    [ 0.424218] pnp 00:00: [io 0x03e0-0x0cf7 window]
    [ 0.424220] pnp 00:00: [io 0x03b0-0x03df window]
    [ 0.424222] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.424224] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.424226] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.424228] pnp 00:00: [mem 0x7f000000-0xffffffff window]
    [ 0.424230] pnp 00:00: [mem 0x00000000 window]
    [ 0.424294] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 0.424339] pnp 00:01: [mem 0xe0000000-0xefffffff]
    [ 0.424389] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.424393] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.424730] pnp 00:02: [io 0x0010-0x001f]
    [ 0.424733] pnp 00:02: [io 0x0022-0x003f]
    [ 0.424737] pnp 00:02: [io 0x0063]
    [ 0.424739] pnp 00:02: [io 0x0065]
    [ 0.424740] pnp 00:02: [io 0x0067-0x006f]
    [ 0.424742] pnp 00:02: [io 0x0072-0x007f]
    [ 0.424744] pnp 00:02: [io 0x0080]
    [ 0.424745] pnp 00:02: [io 0x0084-0x0086]
    [ 0.424747] pnp 00:02: [io 0x0088]
    [ 0.424749] pnp 00:02: [io 0x008c-0x008e]
    [ 0.424750] pnp 00:02: [io 0x0090-0x009f]
    [ 0.424752] pnp 00:02: [io 0x00a2-0x00bf]
    [ 0.424753] pnp 00:02: [io 0x00b1]
    [ 0.424755] pnp 00:02: [io 0x00e0-0x00ef]
    [ 0.424757] pnp 00:02: [io 0x04d0-0x04d1]
    [ 0.424759] pnp 00:02: [io 0x040b]
    [ 0.424760] pnp 00:02: [io 0x04d6]
    [ 0.424762] pnp 00:02: [io 0x0c00-0x0c01]
    [ 0.424763] pnp 00:02: [io 0x0c14]
    [ 0.424765] pnp 00:02: [io 0x0c50-0x0c51]
    [ 0.424767] pnp 00:02: [io 0x0c52]
    [ 0.424768] pnp 00:02: [io 0x0c6c]
    [ 0.424770] pnp 00:02: [io 0x0c6f]
    [ 0.424771] pnp 00:02: [io 0x0cd0-0x0cd1]
    [ 0.424773] pnp 00:02: [io 0x0cd2-0x0cd3]
    [ 0.424775] pnp 00:02: [io 0x0cd4-0x0cd5]
    [ 0.424776] pnp 00:02: [io 0x0cd6-0x0cd7]
    [ 0.424778] pnp 00:02: [io 0x0cd8-0x0cdf]
    [ 0.424780] pnp 00:02: [io 0x0800-0x089f]
    [ 0.424782] pnp 00:02: [io 0x0000-0xffffffffffffffff disabled]
    [ 0.424783] pnp 00:02: [io 0x0000-0x000f]
    [ 0.424785] pnp 00:02: [io 0x0b20-0x0b3f]
    [ 0.424787] pnp 00:02: [io 0x0900-0x090f]
    [ 0.424788] pnp 00:02: [io 0x0910-0x091f]
    [ 0.424790] pnp 00:02: [io 0xfe00-0xfefe]
    [ 0.424792] pnp 00:02: [io 0x0060-0x005f disabled]
    [ 0.424794] pnp 00:02: [io 0x0064-0x0063 disabled]
    [ 0.424796] pnp 00:02: [mem 0xfec00000-0xfec00fff]
    [ 0.424797] pnp 00:02: [mem 0xfee00000-0xfee00fff]
    [ 0.424799] pnp 00:02: [mem 0xfed80000-0xfed8ffff]
    [ 0.424801] pnp 00:02: [mem 0xfed61000-0xfed70fff]
    [ 0.424803] pnp 00:02: [mem 0xfec10000-0xfec10fff]
    [ 0.424804] pnp 00:02: [mem 0xfed00000-0xfed00fff]
    [ 0.424806] pnp 00:02: [mem 0xff010000-0xffffffff]
    [ 0.424888] system 00:02: [io 0x04d0-0x04d1] has been reserved
    [ 0.424890] system 00:02: [io 0x040b] has been reserved
    [ 0.424893] system 00:02: [io 0x04d6] has been reserved
    [ 0.424895] system 00:02: [io 0x0c00-0x0c01] has been reserved
    [ 0.424897] system 00:02: [io 0x0c14] has been reserved
    [ 0.424899] system 00:02: [io 0x0c50-0x0c51] has been reserved
    [ 0.424901] system 00:02: [io 0x0c52] has been reserved
    [ 0.424903] system 00:02: [io 0x0c6c] has been reserved
    [ 0.424905] system 00:02: [io 0x0c6f] has been reserved
    [ 0.424907] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    [ 0.424910] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    [ 0.424912] system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    [ 0.424914] system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    [ 0.424916] system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    [ 0.424918] system 00:02: [io 0x0800-0x089f] has been reserved
    [ 0.424920] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    [ 0.424923] system 00:02: [io 0x0900-0x090f] has been reserved
    [ 0.424925] system 00:02: [io 0x0910-0x091f] has been reserved
    [ 0.424927] system 00:02: [io 0xfe00-0xfefe] has been reserved
    [ 0.424930] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.424933] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.424936] system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 0.424938] system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 0.424941] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 0.424943] system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    [ 0.424946] system 00:02: [mem 0xff010000-0xffffffff] has been reserved
    [ 0.424949] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.424964] pnp 00:03: [dma 4]
    [ 0.424967] pnp 00:03: [io 0x0000-0x000f]
    [ 0.424969] pnp 00:03: [io 0x0081-0x0083]
    [ 0.424970] pnp 00:03: [io 0x0087]
    [ 0.424972] pnp 00:03: [io 0x0089-0x008b]
    [ 0.424974] pnp 00:03: [io 0x008f]
    [ 0.424976] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.425003] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.425014] pnp 00:04: [io 0x0070-0x0071]
    [ 0.425025] pnp 00:04: [irq 8]
    [ 0.425054] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.425063] pnp 00:05: [io 0x0061]
    [ 0.425088] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.425120] pnp 00:06: [io 0x0010-0x001f]
    [ 0.425122] pnp 00:06: [io 0x0022-0x003f]
    [ 0.425124] pnp 00:06: [io 0x0044-0x005f]
    [ 0.425126] pnp 00:06: [io 0x0072-0x007f]
    [ 0.425127] pnp 00:06: [io 0x0080]
    [ 0.425129] pnp 00:06: [io 0x0084-0x0086]
    [ 0.425131] pnp 00:06: [io 0x0088]
    [ 0.425132] pnp 00:06: [io 0x008c-0x008e]
    [ 0.425134] pnp 00:06: [io 0x0090-0x009f]
    [ 0.425135] pnp 00:06: [io 0x00a2-0x00bf]
    [ 0.425137] pnp 00:06: [io 0x00e0-0x00ef]
    [ 0.425139] pnp 00:06: [io 0x04d0-0x04d1]
    [ 0.425188] system 00:06: [io 0x04d0-0x04d1] has been reserved
    [ 0.425191] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.425200] pnp 00:07: [io 0x00f0-0x00ff]
    [ 0.425205] pnp 00:07: [irq 13]
    [ 0.425231] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.425288] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.443157] pnp 00:09: [irq 12]
    [ 0.443218] pnp 00:09: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
    [ 0.443236] pnp 00:0a: [io 0x0060]
    [ 0.443238] pnp 00:0a: [io 0x0064]
    [ 0.443242] pnp 00:0a: [irq 1]
    [ 0.443273] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.443353] pnp 00:0b: [mem 0x77000000-0x7effffff]
    [ 0.443414] system 00:0b: [mem 0x77000000-0x7effffff] could not be reserved
    [ 0.443418] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.443713] pnp 00:0c: [mem 0xfed00000-0xfed003ff]
    [ 0.443758] pnp 00:0c: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.443764] pnp: PnP ACPI: found 13 devices
    [ 0.443765] ACPI: ACPI bus type pnp unregistered
    [ 0.451187] pci 0000:00:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 400000
    [ 0.451201] pci 0000:00:04.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
    [ 0.451206] pci 0000:00:04.0: BAR 14: assigned [mem 0x7f000000-0x7f3fffff]
    [ 0.451210] pci 0000:00:02.0: PCI bridge to [bus 01]
    [ 0.451213] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 0.451217] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 0.451220] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.451224] pci 0000:00:04.0: PCI bridge to [bus 02]
    [ 0.451227] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    [ 0.451230] pci 0000:00:04.0: bridge window [mem 0x7f000000-0x7f3fffff]
    [ 0.451233] pci 0000:00:04.0: bridge window [mem 0xd8000000-0xd80fffff 64bit pref]
    [ 0.451237] pci 0000:00:05.0: PCI bridge to [bus 03-0b]
    [ 0.451241] pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 0.451246] pci 0000:00:14.4: PCI bridge to [bus 0c-12]
    [ 0.451287] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.451289] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.451292] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.451294] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.451296] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.451298] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.451300] pci_bus 0000:00: resource 10 [mem 0x7f000000-0xffffffff]
    [ 0.451302] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.451304] pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 0.451306] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.451308] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    [ 0.451310] pci_bus 0000:02: resource 1 [mem 0x7f000000-0x7f3fffff]
    [ 0.451312] pci_bus 0000:02: resource 2 [mem 0xd8000000-0xd80fffff 64bit pref]
    [ 0.451314] pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]
    [ 0.451316] pci_bus 0000:0c: resource 4 [io 0x0000-0x03af]
    [ 0.451318] pci_bus 0000:0c: resource 5 [io 0x03e0-0x0cf7]
    [ 0.451320] pci_bus 0000:0c: resource 6 [io 0x03b0-0x03df]
    [ 0.451322] pci_bus 0000:0c: resource 7 [io 0x0d00-0xffff]
    [ 0.451324] pci_bus 0000:0c: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.451325] pci_bus 0000:0c: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.451327] pci_bus 0000:0c: resource 10 [mem 0x7f000000-0xffffffff]
    [ 0.451362] NET: Registered protocol family 2
    [ 0.451837] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    [ 0.452998] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.453296] TCP: Hash tables configured (established 262144 bind 65536)
    [ 0.453335] TCP: reno registered
    [ 0.453347] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.453361] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.453447] NET: Registered protocol family 1
    [ 0.453463] pci 0000:00:01.0: Boot video device
    [ 0.453582] PCI: CLS 64 bytes, default 64
    [ 0.453640] Unpacking initramfs...
    [ 0.510882] Freeing initrd memory: 2816k freed
    [ 0.512203] LVT offset 0 assigned for vector 0x400
    [ 0.512237] perf: AMD IBS detected (0x000000ff)
    [ 0.512455] audit: initializing netlink socket (disabled)
    [ 0.512468] type=2000 audit(1355723449.406:1): initialized
    [ 0.525122] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.527134] VFS: Disk quotas dquot_6.5.2
    [ 0.527183] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.527418] msgmni has been set to 3688
    [ 0.527683] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.527727] io scheduler noop registered
    [ 0.527729] io scheduler deadline registered
    [ 0.527791] io scheduler cfq registered (default)
    [ 0.527915] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 0.527996] pcieport 0000:00:04.0: irq 41 for MSI/MSI-X
    [ 0.528143] vesafb: mode is 1366x768x32, linelength=5632, pages=0
    [ 0.528145] vesafb: scrolling: redraw
    [ 0.528147] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    [ 0.528468] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90010900000, using 4224k, total 4224k
    [ 0.542055] Console: switching to colour frame buffer device 170x48
    [ 0.555439] fb0: VESA VGA frame buffer device
    [ 0.555473] GHES: HEST is not enabled!
    [ 0.555630] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.556118] Linux agpgart interface v0.103
    [ 0.556180] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 0.572246] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.572275] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.572411] mousedev: PS/2 mouse device common for all mice
    [ 0.572769] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.572792] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.572801] cpuidle: using governor ladder
    [ 0.572803] cpuidle: using governor menu
    [ 0.572926] drop_monitor: Initializing network drop monitor service
    [ 0.573009] TCP: cubic registered
    [ 0.573123] NET: Registered protocol family 10
    [ 0.573280] NET: Registered protocol family 17
    [ 0.573294] Key type dns_resolver registered
    [ 0.573783] PM: Hibernation image not present or could not be loaded.
    [ 0.573792] registered taskstats version 1
    [ 0.574332] rtc_cmos 00:04: setting system clock to 2012-12-17 05:50:50 UTC (1355723450)
    [ 0.576830] Freeing unused kernel memory: 772k freed
    [ 0.577048] Write protecting the kernel read-only data: 8192k
    [ 0.583860] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.586429] Freeing unused kernel memory: 1404k freed
    [ 0.589845] Freeing unused kernel memory: 568k freed
    [ 0.600025] systemd-udevd[55]: starting version 196
    [ 0.627082] ACPI: bus type usb registered
    [ 0.627127] usbcore: registered new interface driver usbfs
    [ 0.627141] usbcore: registered new interface driver hub
    [ 0.627200] usbcore: registered new device driver usb
    [ 0.627833] SCSI subsystem initialized
    [ 0.628381] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.628445] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 0.628455] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 0.628475] QUIRK: Enable AMD PLL fix
    [ 0.628478] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 0.628511] ehci_hcd 0000:00:12.2: debug port 1
    [ 0.628543] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfeb4a000
    [ 0.629827] ACPI: bus type scsi registered
    [ 0.629977] libata version 3.00 loaded.
    [ 0.636326] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 0.636606] hub 1-0:1.0: USB hub found
    [ 0.636612] hub 1-0:1.0: 5 ports detected
    [ 0.637013] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 0.637053] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 0.637061] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 2
    [ 0.637088] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb4b000
    [ 0.693954] hub 2-0:1.0: USB hub found
    [ 0.693963] hub 2-0:1.0: 5 ports detected
    [ 0.694080] ahci 0000:00:11.0: version 3.0
    [ 0.694154] ahci 0000:00:11.0: irq 42 for MSI/MSI-X
    [ 0.694243] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 3 ports 3 Gbps 0xb impl SATA mode
    [ 0.694248] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 0.695108] scsi0 : ahci
    [ 0.695213] scsi1 : ahci
    [ 0.695295] scsi2 : ahci
    [ 0.695378] scsi3 : ahci
    [ 0.695436] ata1: SATA max UDMA/133 abar m2048@0xfeb4c000 port 0xfeb4c100 irq 42
    [ 0.695439] ata2: SATA max UDMA/133 abar m2048@0xfeb4c000 port 0xfeb4c180 irq 42
    [ 0.695441] ata3: DUMMY
    [ 0.695443] ata4: SATA max UDMA/133 abar m2048@0xfeb4c000 port 0xfeb4c280 irq 42
    [ 0.695479] xhci_hcd 0000:00:10.0: xHCI Host Controller
    [ 0.695489] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
    [ 0.695686] xhci_hcd 0000:00:10.0: irq 18, io mem 0xfeb48000
    [ 0.695739] xhci_hcd 0000:00:10.0: irq 43 for MSI/MSI-X
    [ 0.695745] xhci_hcd 0000:00:10.0: irq 44 for MSI/MSI-X
    [ 0.695751] xhci_hcd 0000:00:10.0: irq 45 for MSI/MSI-X
    [ 0.695757] xhci_hcd 0000:00:10.0: irq 46 for MSI/MSI-X
    [ 0.695762] xhci_hcd 0000:00:10.0: irq 47 for MSI/MSI-X
    [ 0.695992] xHCI xhci_add_endpoint called for root hub
    [ 0.695994] xHCI xhci_check_bandwidth called for root hub
    [ 0.696035] hub 3-0:1.0: USB hub found
    [ 0.696042] hub 3-0:1.0: 2 ports detected
    [ 0.696115] xhci_hcd 0000:00:10.0: xHCI Host Controller
    [ 0.696119] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 4
    [ 0.699282] xHCI xhci_add_endpoint called for root hub
    [ 0.699283] xHCI xhci_check_bandwidth called for root hub
    [ 0.699310] hub 4-0:1.0: USB hub found
    [ 0.699317] hub 4-0:1.0: 2 ports detected
    [ 0.943063] usb 1-3: new high-speed USB device number 2 using ehci_hcd
    [ 1.013112] ata4: SATA link down (SStatus 0 SControl 300)
    [ 1.179709] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.179751] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.183676] ata1.00: ATA-8: Hitachi HTS547575A9E384, JE4OA50A, max UDMA/133
    [ 1.183684] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.185121] ata2.00: ATAPI: TSSTcorp CDDVDW SN-208BB, SC00, max UDMA/100
    [ 1.185658] ata1.00: configured for UDMA/133
    [ 1.185826] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54757 JE4O PQ: 0 ANSI: 5
    [ 1.189681] ata2.00: configured for UDMA/100
    [ 1.202939] scsi 1:0:0:0: CD-ROM TSSTcorp CDDVDW SN-208BB SC00 PQ: 0 ANSI: 5
    [ 1.207231] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
    [ 1.207236] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.207289] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.207293] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.207315] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.250181] sda: sda1 sda2 sda3 sda4
    [ 1.250693] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.267597] sr0: scsi3-mmc drive: 16x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.267602] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.267890] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 1.279691] usb 1-5: new high-speed USB device number 4 using ehci_hcd
    [ 1.513040] tsc: Refined TSC clocksource calibration: 2295.824 MHz
    [ 1.513055] Switching to clocksource tsc
    [ 1.672945] usb 2-4: new full-speed USB device number 2 using ohci_hcd
    [ 1.943639] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.569483] systemd[1]: systemd 196 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 2.580298] systemd[1]: Set hostname to <yuriy-laptop>.
    [ 3.065928] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 3.066183] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 3.066238] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 3.066250] systemd[1]: Starting Remote File Systems.
    [ 3.066263] systemd[1]: Reached target Remote File Systems.
    [ 3.066272] systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device...
    [ 3.066284] systemd[1]: Starting Delayed Shutdown Socket.
    [ 3.066312] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 3.066321] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 3.066343] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 3.066352] systemd[1]: Starting Encrypted Volumes.
    [ 3.066362] systemd[1]: Reached target Encrypted Volumes.
    [ 3.066422] systemd[1]: Starting udev Kernel Socket.
    [ 3.066444] systemd[1]: Listening on udev Kernel Socket.
    [ 3.066489] systemd[1]: Starting udev Control Socket.
    [ 3.066513] systemd[1]: Listening on udev Control Socket.
    [ 3.066547] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 3.066649] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 3.066663] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 3.066698] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 3.066706] systemd[1]: Expecting device dev-sda2.device...
    [ 3.066718] systemd[1]: Expecting device dev-sda3.device...
    [ 3.066728] systemd[1]: Expecting device dev-sda1.device...
    [ 3.066739] systemd[1]: Starting Journal Socket.
    [ 3.066789] systemd[1]: Listening on Journal Socket.
    [ 3.066799] systemd[1]: Mounting Temporary Directory...
    [ 3.103035] systemd[1]: Started File System Check on Root Device.
    [ 3.103066] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 3.151793] systemd[1]: Started Load Kernel Modules.
    [ 3.151820] systemd[1]: Mounted FUSE Control File System.
    [ 3.151833] systemd[1]: Starting Setup Virtual Console...
    [ 3.162564] systemd[1]: Mounted Configuration File System.
    [ 3.162590] systemd[1]: Mounting Debug File System...
    [ 3.181524] systemd[1]: Mounting POSIX Message Queue File System...
    [ 3.201314] systemd[1]: Starting udev Kernel Device Manager...
    [ 3.207334] systemd[1]: Starting udev Coldplug all Devices...
    [ 3.273254] systemd[1]: Starting Apply Kernel Variables...
    [ 3.307498] systemd[1]: Started Set Up Additional Binary Formats.
    [ 3.307617] systemd[1]: Mounting Huge Pages File System...
    [ 3.316569] systemd[1]: Starting Journal Service...
    [ 3.323392] systemd[1]: Started Journal Service.
    [ 3.368044] systemd-udevd[119]: starting version 196
    [ 3.829410] EXT4-fs (sda4): re-mounted. Opts: (null)
    [ 4.415075] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 4.415091] ACPI: Power Button [PWRB]
    [ 4.425955] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    [ 4.436321] ACPI: Lid Switch [LID]
    [ 4.436570] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 4.436585] ACPI: Power Button [PWRF]
    [ 4.444687] microcode: CPU0: patch_level=0x0600110f
    [ 4.448080] thermal LNXTHERM:00: registered as thermal_zone0
    [ 4.448088] ACPI: Thermal Zone [TZ00] (62 C)
    [ 4.466478] ACPI: AC Adapter [ACAD] (on-line)
    [ 4.473366] acpi device:26: registered as cooling_device0
    [ 4.477820] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    [ 4.477998] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/LNXVIDEO:00/input/input4
    [ 4.566071] ACPI: acpi_idle registered with cpuidle
    [ 4.642950] [Firmware Bug]: battery: (dis)charge rate invalid.
    [ 4.643062] ACPI: Battery Slot [BAT1] (battery present)
    [ 4.661115] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 4.664201] samsung_laptop: detected SABI interface: SwSmi@
    [ 4.664207] samsung_laptop: Backlight controlled by ACPI video driver
    [ 4.694555] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 4.791067] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.886430] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
    [ 4.886587] microcode: CPU1: patch_level=0x0600110f
    [ 4.886923] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
    [ 4.887077] microcode: CPU2: patch_level=0x0600110f
    [ 4.887373] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
    [ 4.887531] microcode: CPU3: patch_level=0x0600110f
    [ 4.887766] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
    [ 4.887959] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 4.949286] hda-intel: Force to non-snoop mode
    [ 4.949336] snd_hda_intel 0000:00:01.1: irq 48 for MSI/MSI-X
    [ 5.137059] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 5.137275] r8169 0000:02:00.0: irq 49 for MSI/MSI-X
    [ 5.137467] r8169 0000:02:00.0: eth0: RTL8168f/8111f at 0xffffc90000326000, b8:88:e3:60:0c:a7, XID 08000800 IRQ 49
    [ 5.137470] r8169 0000:02:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 5.163115] ath: phy0: ASPM enabled: 0x42
    [ 5.163121] ath: EEPROM regdomain: 0x65
    [ 5.163122] ath: EEPROM indicates we should expect a direct regpair map
    [ 5.163126] ath: Country alpha2 being used: 00
    [ 5.163127] ath: Regpair used: 0x65
    [ 5.207249] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 5.211222] scsi4 : SCSI emulation for RTS5139 USB card reader
    [ 5.211430] scsi 4:0:0:0: Direct-Access Generic- xD/SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
    [ 5.215168] sd 4:0:0:0: [sdb] Attached SCSI removable disk
    [ 5.218369] usbcore: registered new interface driver rts5139
    [ 5.331457] Linux media interface: v0.10
    [ 5.367503] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
    [ 5.367731] Registered led device: ath9k-phy0
    [ 5.367738] ieee80211 phy0: Atheros AR9485 Rev:1 mem=0xffffc90010e00000, irq=17
    [ 5.377769] Bluetooth: Core ver 2.16
    [ 5.377796] NET: Registered protocol family 31
    [ 5.377798] Bluetooth: HCI device and connection manager initialized
    [ 5.377800] Bluetooth: HCI socket layer initialized
    [ 5.377802] Bluetooth: L2CAP socket layer initialized
    [ 5.377808] Bluetooth: SCO socket layer initialized
    [ 5.381061] Linux video capture interface: v2.00
    [ 5.415688] usbcore: registered new interface driver btusb
    [ 5.457102] uvcvideo: Found UVC 1.00 device WebCam SC-03FFL11739P (0ac8:c349)
    [ 5.459404] input: WebCam SC-03FFL11739P as /devices/pci0000:00/0000:00:12.2/usb1/1-5/1-5:1.0/input/input6
    [ 5.459582] usbcore: registered new interface driver uvcvideo
    [ 5.459584] USB Video Class driver (1.1.1)
    [ 5.622781] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input7
    [ 5.728628] usb 2-4: USB disconnect, device number 2
    [ 5.729583] usbcore: registered new interface driver ath3k
    [ 5.931233] kvm: Nested Virtualization enabled
    [ 5.931238] kvm: Nested Paging enabled
    [ 5.955358] powernow-k8: Found 1 AMD A10-4600M APU with Radeon(tm) HD Graphics (4 cpu cores) (version 2.20.00)
    [ 5.955375] powernow-k8: Core Performance Boosting: on.
    [ 5.955442] powernow-k8: 0 : pstate 0 (2300 MHz)
    [ 5.955443] powernow-k8: 1 : pstate 1 (2000 MHz)
    [ 5.955445] powernow-k8: 2 : pstate 2 (1800 MHz)
    [ 5.955446] powernow-k8: 3 : pstate 3 (1600 MHz)
    [ 5.955447] powernow-k8: 4 : pstate 4 (1400 MHz)
    [ 5.967938] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input8
    [ 5.975508] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
    [ 5.975885] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
    [ 6.009313] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.5, id: 0x1c0b1, caps: 0xf00233/0x240000/0xa2400, board id: 1871, fw id: 1128454
    [ 6.070499] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input11
    [ 6.118919] Adding 4883756k swap on /dev/sda2. Priority:-1 extents:1 across:4883756k
    [ 6.206190] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.206203] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.206211] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207037] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.207047] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207055] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207114] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.207121] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207128] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207161] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.207167] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207174] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207301] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.207312] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207321] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207355] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.207360] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207368] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207403] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.207408] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.207417] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.208325] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.208335] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.208343] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.208367] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.209654] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.222981] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.223128] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.223153] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.224031] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.224252] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.224263] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.224317] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.224324] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.224334] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.224368] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.224373] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.224380] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.224455] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.224464] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.224474] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.225928] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.226019] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226029] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226069] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.226075] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226081] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226114] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.226120] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226128] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226159] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.226166] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226173] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226211] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.226218] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226229] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226268] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.226274] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226284] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.226304] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.226533] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.228056] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.228065] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.228073] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.236212] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.236242] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.236251] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.236258] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.236296] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.236300] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.236305] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.236331] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.236352] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.236471] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.236523] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.237113] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.237282] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.237823] ACPI Error: [SSZE] Namespace lookup failure, AE_ALREADY_EXISTS (20120711/dsfield-211)
    [ 6.237833] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD.AHKS] (Node ffff880072ac4320), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.237843] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SBRG.ACAD._PSR] (Node ffff880072ac2de8), AE_ALREADY_EXISTS (20120711/psparse-536)
    [ 6.238959] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.239003] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.239188] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.240830] ACPI Exception: AE_ALREADY_EXISTS, Error reading AC Adapter state (20120711/ac-122)
    [ 6.252891] ACPI: Marking method AHKS as Serialized because of AE_ALREADY_EXISTS error
    [ 6.252900] ACPI: Marking method _PSR as Serialized because of AE_ALREADY_EXISTS error
    [ 6.828101] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 6.875270] EXT4-fs (sda1): mounted filesystem without journal. Opts: stripe=4
    [ 6.894680] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.023412] systemd-journald[123]: Received SIGUSR1
    [ 7.538792] r8169 0000:02:00.0: eth0: link down
    [ 7.538842] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 8.437497] systemd-logind[757]: Watching system buttons on /dev/input/event3 (Power Button)
    [ 8.437662] systemd-logind[757]: Watching system buttons on /dev/input/event4 (Video Bus)
    [ 8.437813] systemd-logind[757]: Watching system buttons on /dev/input/event1 (Power Button)
    [ 8.437958] systemd-logind[757]: Watching system buttons on /dev/input/event2 (Lid Switch)
    [ 25.318255] usb 2-4: new full-speed USB device number 3 using ohci_hcd
    [ 25.457589] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 26.409117] wlan0: authenticate with f4:71:68:75:1a:82
    [ 26.416963] wlan0: send auth to f4:71:68:75:1a:82 (try 1/3)
    [ 26.418947] wlan0: authenticated
    [ 26.424725] wlan0: associate with f4:71:68:75:1a:82 (try 1/3)
    [ 26.427507] wlan0: RX AssocResp from f4:71:68:75:1a:82 (capab=0x21 status=0 aid=5)
    [ 26.427596] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 26.427740] wlan0: associated
    [ 51.150964] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=600
    [ 51.248527] EXT4-fs (sda1): re-mounted. Opts: stripe=4
    [ 51.594328] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=600
    [ 60.414242] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 60.660798] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=0
    [ 60.751146] EXT4-fs (sda1): re-mounted. Opts: stripe=4
    [ 60.868213] EXT4-fs (sda3): re-mounted. Opts: data=ordered,commit=0
    [ 127.471176] cfg80211: Calling CRDA for country: GB
    [ 134.415519] wlan0: authenticate with f4:71:68:75:1a:82
    [ 134.423747] wlan0: send auth to f4:71:68:75:1a:82 (try 1/3)
    [ 134.425810] wlan0: authenticated
    [ 134.431448] wlan0: associate with f4:71:68:75:1a:82 (try 1/3)
    [ 134.435422] wlan0: RX AssocResp from f4:71:68:75:1a:82 (capab=0x21 status=0 aid=5)
    [ 134.435522] wlan0: associated
    [ 167.260048] cfg80211: Calling CRDA to update world regulatory domain
    [ 168.583448] wlan0: authenticate with f4:71:68:75:1a:82
    [ 168.591708] wlan0: send auth to f4:71:68:75:1a:82 (try 1/3)
    [ 168.593789] wlan0: authenticated
    [ 168.599325] wlan0: associate with f4:71:68:75:1a:82 (try 1/3)
    [ 168.802646] wlan0: associate with f4:71:68:75:1a:82 (try 2/3)
    [ 168.807366] wlan0: RX AssocResp from f4:71:68:75:1a

    are there any other directories in /sys/class/backlight, aside from acpi_video0?

  • Xorg - Intel GMA945 - Can't get it to work

    Hi,
    It's been quite some time now that i am trying to run my X server on my Macbook. The graphics processor is an Intel GMA945, I've tried all version of xf86-video-intel, with xorg.conf, without, with different settings and options in xorg.conf. Nothing works.
    In most cases with the most recent version of xf86-video-intel (git or testing/), I just get a grey/back screen with my cursor, which eventually freezes after some time. The whole system is not frozen I can still SSH, but the whole display is stuck. CTRL-ALT-F[1-9] won't work, the only thing I can do is reboot. With the driver version in extra/ it works most of the time, if I specify to the driver in my xorg.conf to use XAA (instead of EXA or UXA which simply won't launch). But that leads to miscellaneous problems, such as font scrambling, and random freezes etc. And when it works, with xcompmgr launched there are some issues.
    The funny thing is that I've been able to run the latest drivers with UXA, compositing, DRI2 and all (even played OpenGL games! \o/), but after a reboot it all went back to the old crap.
    I love Arch, I love linux, I love open source, but I'm sick of it not working T__T. I am not blaming anyone, I could go ahead and but I can understand better why people don't use it (:
    Thanks for any help

    I updated all graphics related packages to git versions. That is:
    intel-dri
    mesa
    libgl
    dri2proto
    glproto
    xf86-video-intel
    The only I got my X to launch without freezing was to add:
      Option        "DRI" "false"
    To the Device section.
    But this setup doesn't work properly. I get random freezes. I can still move the mouse and see the cursor moving on screen, but nothing else. Changing to a VT1 (CTRL ALT F1) or any other one, "un-freezes" the X server. And when I return to X I can see that things I typed had been taken into account. (For example while writing this message, it hanged, I continued typing some characters, and when I came back to X after doing the "un-freezing" thing, the things I typed were there).
    Also my fonts and others things like images (suck as the website icon on the firefox tab) get scrambled too.
    I tried without a xorg.conf, X launches but I can only see my cursor and a black screen. I can move the cursor but can't do anything else, like changing to another VT.
    Here are some informations:
    less /var/log/kernel.log
    Jul 9 22:26:38 rithmo kernel: Linux version 2.6.30-ARCH (root@LX-Laptop) (gcc version 4.4.0 20090526 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Jun 19 21:25:17 UTC 2009
    Jul 9 22:26:38 rithmo kernel: KERNEL supported cpus:
    Jul 9 22:26:38 rithmo kernel: Intel GenuineIntel
    Jul 9 22:26:38 rithmo kernel: AMD AuthenticAMD
    Jul 9 22:26:38 rithmo kernel: NSC Geode by NSC
    Jul 9 22:26:38 rithmo kernel: Cyrix CyrixInstead
    Jul 9 22:26:38 rithmo kernel: Centaur CentaurHauls
    Jul 9 22:26:38 rithmo kernel: Transmeta GenuineTMx86
    Jul 9 22:26:38 rithmo kernel: Transmeta TransmetaCPU
    Jul 9 22:26:38 rithmo kernel: UMC UMC UMC UMC
    Jul 9 22:26:38 rithmo kernel: BIOS-provided physical RAM map:
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 00000000000ede00 - 0000000000100000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 0000000000100000 - 000000007e0d0000 (usable)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 000000007e0d0000 - 000000007e2d1000 (ACPI NVS)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 000000007e2d1000 - 000000007eebf000 (ACPI data)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 000000007eebf000 - 000000007eeef000 (ACPI NVS)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 000000007eeef000 - 000000007ef00000 (ACPI data)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 000000007ef00000 - 0000000080000000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Jul 9 22:26:38 rithmo kernel: BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    Jul 9 22:26:38 rithmo kernel: DMI 2.4 present.
    Jul 9 22:26:38 rithmo kernel: last_pfn = 0x7e0d0 max_arch_pfn = 0x100000
    Jul 9 22:26:38 rithmo kernel: MTRR default type: uncachable
    Jul 9 22:26:38 rithmo kernel: MTRR fixed ranges enabled:
    Jul 9 22:26:38 rithmo kernel: 00000-9FFFF write-back
    Jul 9 22:26:38 rithmo kernel: A0000-BFFFF uncachable
    Jul 9 22:26:38 rithmo kernel: C0000-CFFFF write-protect
    Jul 9 22:26:38 rithmo kernel: D0000-DFFFF uncachable
    Jul 9 22:26:38 rithmo kernel: E0000-FFFFF write-protect
    Jul 9 22:26:38 rithmo kernel: MTRR variable ranges enabled:
    Jul 9 22:26:38 rithmo kernel: 0 base 0FFE00000 mask FFFE00000 write-protect
    Jul 9 22:26:38 rithmo kernel: 1 base 000000000 mask F80000000 write-back
    Jul 9 22:26:38 rithmo kernel: 2 base 07F000000 mask FFF000000 uncachable
    Jul 9 22:26:38 rithmo kernel: 3 base 07EF00000 mask FFFF00000 uncachable
    Jul 9 22:26:38 rithmo kernel: 4 disabled
    Jul 9 22:26:38 rithmo kernel: 5 disabled
    Jul 9 22:26:38 rithmo kernel: 6 disabled
    Jul 9 22:26:38 rithmo kernel: 7 disabled
    Jul 9 22:26:38 rithmo kernel: PAT not supported by CPU.
    Jul 9 22:26:38 rithmo kernel: e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved)
    Jul 9 22:26:38 rithmo kernel: Scanning 1 areas for low memory corruption
    Jul 9 22:26:38 rithmo kernel: modified physical RAM map:
    Jul 9 22:26:38 rithmo kernel: modified: 0000000000000000 - 0000000000002000 (usable)
    Jul 9 22:26:38 rithmo kernel: modified: 0000000000002000 - 0000000000006000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 0000000000006000 - 000000000009fc00 (usable)
    Jul 9 22:26:38 rithmo kernel: modified: 000000000009fc00 - 00000000000a0000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 00000000000ede00 - 0000000000100000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 0000000000100000 - 000000007e0d0000 (usable)
    Jul 9 22:26:38 rithmo kernel: modified: 000000007e0d0000 - 000000007e2d1000 (ACPI NVS)
    Jul 9 22:26:38 rithmo kernel: modified: 000000007e2d1000 - 000000007eebf000 (ACPI data)
    Jul 9 22:26:38 rithmo kernel: modified: 000000007eebf000 - 000000007eeef000 (ACPI NVS)
    Jul 9 22:26:38 rithmo kernel: modified: 000000007eeef000 - 000000007ef00000 (ACPI data)
    Jul 9 22:26:38 rithmo kernel: modified: 000000007ef00000 - 0000000080000000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 00000000e0000000 - 00000000f0000000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 00000000fec00000 - 00000000fec01000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 00000000fed14000 - 00000000fed1a000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 00000000fed1c000 - 00000000fed20000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 00000000fee00000 - 00000000fee01000 (reserved)
    Jul 9 22:26:38 rithmo kernel: modified: 00000000ffe00000 - 0000000100000000 (reserved)
    Jul 9 22:26:38 rithmo kernel: init_memory_mapping: 0000000000000000-00000000377fe000
    Jul 9 22:26:38 rithmo kernel: 0000000000 - 0000400000 page 4k
    Jul 9 22:26:38 rithmo kernel: 0000400000 - 0037400000 page 2M
    Jul 9 22:26:38 rithmo kernel: 0037400000 - 00377fe000 page 4k
    Jul 9 22:26:38 rithmo kernel: kernel direct mapping tables up to 377fe000 @ 7000-c000
    Jul 9 22:26:38 rithmo kernel: RAMDISK: 7e000000 - 7e0bff0b
    Jul 9 22:26:38 rithmo kernel: Allocated new RAMDISK: 0062a000 - 006e9f0b
    Jul 9 22:26:38 rithmo kernel: Move RAMDISK from 000000007e000000 - 000000007e0bff0a to 0062a000 - 006e9f0a
    Jul 9 22:26:38 rithmo kernel: ACPI: RSDP 000fe020 00024 (v02 APPLE )
    Jul 9 22:26:38 rithmo kernel: ACPI: XSDT 7eefd120 00074 (v01 APPLE Apple00 00000061 01000013)
    Jul 9 22:26:38 rithmo kernel: ACPI: FACP 7eefb000 000F4 (v03 APPLE Apple00 00000061 Loki 0000005F)
    Jul 9 22:26:38 rithmo kernel: ACPI: DSDT 7eef0000 04221 (v01 APPLE MacBook 00010001 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: ACPI: FACS 7eec1000 00040
    Jul 9 22:26:38 rithmo kernel: ACPI: HPET 7eefa000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Jul 9 22:26:38 rithmo kernel: ACPI: APIC 7eef9000 00068 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Jul 9 22:26:38 rithmo kernel: ACPI: MCFG 7eef8000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
    Jul 9 22:26:38 rithmo kernel: ACPI: ASF! 7eef7000 0009C (v32 APPLE Apple00 00000001 Loki 0000005F)
    Jul 9 22:26:38 rithmo kernel: ACPI: SBST 7eef6000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Jul 9 22:26:38 rithmo kernel: ACPI: ECDT 7eef5000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Jul 9 22:26:38 rithmo kernel: ACPI: SSDT 7eebc000 0064F (v01 APPLE SataPri 00001000 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: ACPI: SSDT 7eebb000 0069C (v01 APPLE SataSec 00001000 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: ACPI: SSDT 7eeef000 004DC (v01 APPLE CpuPm 00003000 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: ACPI: Local APIC address 0xfee00000
    Jul 9 22:26:38 rithmo kernel: 1128MB HIGHMEM available.
    Jul 9 22:26:38 rithmo kernel: 887MB LOWMEM available.
    Jul 9 22:26:38 rithmo kernel: mapped low ram: 0 - 377fe000
    Jul 9 22:26:38 rithmo kernel: low ram: 0 - 377fe000
    Jul 9 22:26:38 rithmo kernel: node 0 low ram: 00000000 - 377fe000
    Jul 9 22:26:38 rithmo kernel: node 0 bootmap 00008000 - 0000ef00
    Jul 9 22:26:38 rithmo kernel: (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
    Jul 9 22:26:38 rithmo kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    Jul 9 22:26:38 rithmo kernel: #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    Jul 9 22:26:38 rithmo kernel: #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    Jul 9 22:26:38 rithmo kernel: #3 [0000100000 - 0000626e44] TEXT DATA BSS ==> [0000100000 - 0000626e44]
    Jul 9 22:26:38 rithmo kernel: #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
    Jul 9 22:26:38 rithmo kernel: #5 [0000627000 - 000062920d] BRK ==> [0000627000 - 000062920d]
    Jul 9 22:26:38 rithmo kernel: #6 [0000007000 - 0000008000] PGTABLE ==> [0000007000 - 0000008000]
    Jul 9 22:26:38 rithmo kernel: #7 [000062a000 - 00006e9f0b] NEW RAMDISK ==> [000062a000 - 00006e9f0b]
    Jul 9 22:26:38 rithmo kernel: #8 [0000008000 - 000000f000] BOOTMAP ==> [0000008000 - 000000f000]
    Jul 9 22:26:38 rithmo kernel: Zone PFN ranges:
    Jul 9 22:26:38 rithmo kernel: DMA 0x00000000 -> 0x00001000
    Jul 9 22:26:38 rithmo kernel: Normal 0x00001000 -> 0x000377fe
    Jul 9 22:26:38 rithmo kernel: HighMem 0x000377fe -> 0x0007e0d0
    Jul 9 22:26:38 rithmo kernel: Movable zone start PFN for each node
    Jul 9 22:26:38 rithmo kernel: early_node_map[3] active PFN ranges
    Jul 9 22:26:38 rithmo kernel: 0: 0x00000000 -> 0x00000002
    Jul 9 22:26:38 rithmo kernel: 0: 0x00000006 -> 0x0000009f
    Jul 9 22:26:38 rithmo kernel: 0: 0x00000100 -> 0x0007e0d0
    Jul 9 22:26:38 rithmo kernel: On node 0 totalpages: 516203
    Jul 9 22:26:38 rithmo kernel: free_area_init_node: node 0, pgdat c04c2380, node_mem_map c1000000
    Jul 9 22:26:38 rithmo kernel: DMA zone: 32 pages used for memmap
    Jul 9 22:26:38 rithmo kernel: DMA zone: 0 pages reserved
    Jul 9 22:26:38 rithmo kernel: DMA zone: 3963 pages, LIFO batch:0
    Jul 9 22:26:38 rithmo kernel: Normal zone: 1744 pages used for memmap
    Jul 9 22:26:38 rithmo kernel: Normal zone: 221486 pages, LIFO batch:31
    Jul 9 22:26:38 rithmo kernel: HighMem zone: 2258 pages used for memmap
    Jul 9 22:26:38 rithmo kernel: HighMem zone: 286720 pages, LIFO batch:31
    Jul 9 22:26:38 rithmo kernel: Using APIC driver default
    Jul 9 22:26:38 rithmo kernel: ACPI: PM-Timer IO Port: 0x408
    Jul 9 22:26:38 rithmo kernel: ACPI: Local APIC address 0xfee00000
    Jul 9 22:26:38 rithmo kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jul 9 22:26:38 rithmo kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jul 9 22:26:38 rithmo kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Jul 9 22:26:38 rithmo kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jul 9 22:26:38 rithmo kernel: ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    Jul 9 22:26:38 rithmo kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    Jul 9 22:26:38 rithmo kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jul 9 22:26:38 rithmo kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jul 9 22:26:38 rithmo kernel: ACPI: IRQ0 used by override.
    Jul 9 22:26:38 rithmo kernel: ACPI: IRQ2 used by override.
    Jul 9 22:26:38 rithmo kernel: ACPI: IRQ9 used by override.
    Jul 9 22:26:38 rithmo kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Jul 9 22:26:38 rithmo kernel: Using ACPI (MADT) for SMP configuration information
    Jul 9 22:26:38 rithmo kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Jul 9 22:26:38 rithmo kernel: SMP: Allowing 2 CPUs, 0 hotplug CPUs
    Jul 9 22:26:38 rithmo kernel: nr_irqs_gsi: 24
    Jul 9 22:26:38 rithmo kernel: PM: Registered nosave memory: 0000000000002000 - 0000000000006000
    Jul 9 22:26:38 rithmo kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Jul 9 22:26:38 rithmo kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000ee000
    Jul 9 22:26:38 rithmo kernel: PM: Registered nosave memory: 00000000000ee000 - 0000000000100000
    Jul 9 22:26:38 rithmo kernel: Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
    Jul 9 22:26:38 rithmo kernel: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    Jul 9 22:26:38 rithmo kernel: PERCPU: Embedded 11 pages at c1fd2000, static data 24444 bytes
    Jul 9 22:26:38 rithmo kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 512169
    Jul 9 22:26:38 rithmo kernel: Kernel command line: root=/dev/disk/by-uuid/d1739595-05b6-43fc-a83f-f859b06f9614 ro quiet vga=792 resume=/dev/sda3 3
    Jul 9 22:26:38 rithmo kernel: Enabling fast FPU save and restore... done.
    Jul 9 22:26:38 rithmo kernel: Enabling unmasked SIMD FPU exception support... done.
    Jul 9 22:26:38 rithmo kernel: Initializing CPU#0
    Jul 9 22:26:38 rithmo kernel: NR_IRQS:512
    Jul 9 22:26:38 rithmo kernel: PID hash table entries: 4096 (order: 12, 16384 bytes)
    Jul 9 22:26:38 rithmo kernel: Extended CMOS year: 2000
    Jul 9 22:26:38 rithmo kernel: Fast TSC calibration failed
    Jul 9 22:26:38 rithmo kernel: TSC: Unable to calibrate against PIT
    Jul 9 22:26:38 rithmo kernel: TSC: using PMTIMER reference calibration
    Jul 9 22:26:38 rithmo kernel: Detected 1830.868 MHz processor.
    Jul 9 22:26:38 rithmo kernel: Console: colour dummy device 80x25
    Jul 9 22:26:38 rithmo kernel: console [tty0] enabled
    Jul 9 22:26:38 rithmo kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Jul 9 22:26:38 rithmo kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Jul 9 22:26:38 rithmo kernel: Initializing HighMem for node 0 (000377fe:0007e0d0)
    Jul 9 22:26:38 rithmo kernel: Memory: 2040720k/2065216k available (2902k kernel code, 23172k reserved, 1051k data, 392k init, 1155912k highmem)
    Jul 9 22:26:38 rithmo kernel: virtual kernel memory layout:
    Jul 9 22:26:38 rithmo kernel: fixmap : 0xfff4e000 - 0xfffff000 ( 708 kB)
    Jul 9 22:26:38 rithmo kernel: pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    Jul 9 22:26:38 rithmo kernel: vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    Jul 9 22:26:38 rithmo kernel: lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    Jul 9 22:26:38 rithmo kernel: .init : 0xc04e3000 - 0xc0545000 ( 392 kB)
    Jul 9 22:26:38 rithmo kernel: .data : 0xc03d599f - 0xc04dc6a8 (1051 kB)
    Jul 9 22:26:38 rithmo kernel: .text : 0xc0100000 - 0xc03d599f (2902 kB)
    Jul 9 22:26:38 rithmo kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Jul 9 22:26:38 rithmo kernel: SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Jul 9 22:26:38 rithmo kernel: hpet clockevent registered
    Jul 9 22:26:38 rithmo kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Jul 9 22:26:38 rithmo kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3663.30 BogoMIPS (lpj=6102893)
    Jul 9 22:26:38 rithmo kernel: Security Framework initialized
    Jul 9 22:26:38 rithmo kernel: Mount-cache hash table entries: 512
    Jul 9 22:26:38 rithmo kernel: CPU: L1 I cache: 32K, L1 D cache: 32K
    Jul 9 22:26:38 rithmo kernel: CPU: L2 cache: 2048K
    Jul 9 22:26:38 rithmo kernel: CPU: Physical Processor ID: 0
    Jul 9 22:26:38 rithmo kernel: CPU: Processor Core ID: 0
    Jul 9 22:26:38 rithmo kernel: Intel machine check architecture supported.
    Jul 9 22:26:38 rithmo kernel: Intel machine check reporting enabled on CPU#0.
    Jul 9 22:26:38 rithmo kernel: using mwait in idle threads.
    Jul 9 22:26:38 rithmo kernel: Checking 'hlt' instruction... OK.
    Jul 9 22:26:38 rithmo kernel: ACPI: Core revision 20090320
    Jul 9 22:26:38 rithmo kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jul 9 22:26:38 rithmo kernel: CPU0: Genuine Intel(R) CPU 1400 @ 1.83GHz stepping 08
    Jul 9 22:26:38 rithmo kernel: Booting processor 1 APIC 0x1 ip 0x6000
    Jul 9 22:26:38 rithmo kernel: Initializing CPU#1
    Jul 9 22:26:38 rithmo kernel: Calibrating delay using timer specific routine.. 3663.35 BogoMIPS (lpj=6102967)
    Jul 9 22:26:38 rithmo kernel: CPU: L1 I cache: 32K, L1 D cache: 32K
    Jul 9 22:26:38 rithmo kernel: CPU: L2 cache: 2048K
    Jul 9 22:26:38 rithmo kernel: CPU: Physical Processor ID: 0
    Jul 9 22:26:38 rithmo kernel: CPU: Processor Core ID: 1
    Jul 9 22:26:38 rithmo kernel: Intel machine check architecture supported.
    Jul 9 22:26:38 rithmo kernel: Intel machine check reporting enabled on CPU#1.
    Jul 9 22:26:38 rithmo kernel: CPU1: Genuine Intel(R) CPU 1400 @ 1.83GHz stepping 08
    Jul 9 22:26:38 rithmo kernel: checking TSC synchronization [CPU#0 -> CPU#1]: passed.
    Jul 9 22:26:38 rithmo kernel: Brought up 2 CPUs
    Jul 9 22:26:38 rithmo kernel: Total of 2 processors activated (7326.66 BogoMIPS).
    Jul 9 22:26:38 rithmo kernel: CPU0 attaching sched-domain:
    Jul 9 22:26:38 rithmo kernel: domain 0: span 0-1 level MC
    Jul 9 22:26:38 rithmo kernel: groups: 0 1
    Jul 9 22:26:38 rithmo kernel: CPU1 attaching sched-domain:
    Jul 9 22:26:38 rithmo kernel: domain 0: span 0-1 level MC
    Jul 9 22:26:38 rithmo kernel: groups: 1 0
    Jul 9 22:26:38 rithmo kernel: net_namespace: 1056 bytes
    Jul 9 22:26:38 rithmo kernel: Booting paravirtualized kernel on bare hardware
    Jul 9 22:26:38 rithmo kernel: NET: Registered protocol family 16
    Jul 9 22:26:38 rithmo kernel: ACPI: bus type pci registered
    Jul 9 22:26:38 rithmo kernel: PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
    Jul 9 22:26:38 rithmo kernel: PCI: MCFG area at e0000000 reserved in E820
    Jul 9 22:26:38 rithmo kernel: PCI: Using MMCONFIG for extended config space
    Jul 9 22:26:38 rithmo kernel: PCI: Using configuration type 1 for base access
    Jul 9 22:26:38 rithmo kernel: bio: create slab <bio-0> at 0
    Jul 9 22:26:38 rithmo kernel: ACPI: EC: EC description table is found, configuring boot EC
    Jul 9 22:26:38 rithmo kernel: ACPI: EC: non-query interrupt received, switching to interrupt mode
    Jul 9 22:26:38 rithmo kernel: ACPI: BIOS _OSI(Linux) query ignored
    Jul 9 22:26:38 rithmo kernel: ACPI: Interpreter enabled
    Jul 9 22:26:38 rithmo kernel: ACPI: (supports S0 S3 S4 S5)
    Jul 9 22:26:38 rithmo kernel: ACPI: Using IOAPIC for interrupt routing
    Jul 9 22:26:38 rithmo kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Jul 9 22:26:38 rithmo kernel: ACPI: EC: driver started in interrupt mode
    Jul 9 22:26:38 rithmo kernel: ACPI: No dock devices found.
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:02.0: reg 10 32bit mmio: [0x90380000-0x903fffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:02.0: reg 14 io port: [0x20f0-0x20f7]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:02.0: reg 18 32bit mmio: [0x80000000-0x8fffffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:02.0: reg 1c 32bit mmio: [0x90400000-0x9043ffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:02.1: reg 10 32bit mmio: [0x90300000-0x9037ffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:07.0: reg 10 32bit mmio: [0x90444000-0x90444fff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1b.0: reg 10 64bit mmio: [0x90440000-0x90443fff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1b.0: PME# disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: PME# disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: PME# disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1d.0: reg 20 io port: [0x20a0-0x20bf]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1d.1: reg 20 io port: [0x2080-0x209f]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1d.2: reg 20 io port: [0x2060-0x207f]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1d.3: reg 20 io port: [0x2040-0x205f]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1d.7: reg 10 32bit mmio: [0x90445400-0x904457ff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1d.7: PME# disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH6 ACPI/GPIO/TCO
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.0: quirk: region 0500-053f claimed by ICH6 GPIO
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 0003)
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0300 (mask 001f)
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.1: reg 10 io port: [0x20e8-0x20ef]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.1: reg 14 io port: [0x2104-0x2107]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.1: reg 18 io port: [0x20e0-0x20e7]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.1: reg 1c io port: [0x2100-0x2103]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.1: reg 20 io port: [0x20c0-0x20cf]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: reg 10 io port: [0x20d8-0x20df]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: reg 14 io port: [0x20fc-0x20ff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: reg 18 io port: [0x20d0-0x20d7]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: reg 1c io port: [0x20f8-0x20fb]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: reg 20 io port: [0x2020-0x202f]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: reg 24 32bit mmio: [0x90445000-0x904453ff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.2: PME# disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1f.3: reg 20 io port: [0xefa0-0xefbf]
    Jul 9 22:26:38 rithmo kernel: pci 0000:01:00.0: reg 10 64bit mmio: [0x90200000-0x90203fff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:01:00.0: reg 18 io port: [0x1000-0x10ff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:01:00.0: reg 30 32bit mmio: [0xfffe0000-0xffffffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:01:00.0: supports D1 D2
    Jul 9 22:26:38 rithmo kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jul 9 22:26:38 rithmo kernel: pci 0000:01:00.0: PME# disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: bridge io port: [0x1000-0x1fff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: bridge 32bit mmio: [0x90200000-0x902fffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:02:00.0: reg 10 64bit mmio: [0x90100000-0x9010ffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: bridge 32bit mmio: [0x90100000-0x901fffff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:03:03.0: reg 10 32bit mmio: [0x90000000-0x90000fff]
    Jul 9 22:26:38 rithmo kernel: pci 0000:03:03.0: supports D1 D2
    Jul 9 22:26:38 rithmo kernel: pci 0000:03:03.0: PME# supported from D0 D1 D2 D3hot
    Jul 9 22:26:38 rithmo kernel: pci 0000:03:03.0: PME# disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: transparent bridge
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: bridge 32bit mmio: [0x90000000-0x900fffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:00: on NUMA node 0
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jul 9 22:26:38 rithmo kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11 12 14 15)
    Jul 9 22:26:38 rithmo kernel: PCI: Using ACPI for IRQ routing
    Jul 9 22:26:38 rithmo kernel: NetLabel: Initializing
    Jul 9 22:26:38 rithmo kernel: NetLabel: domain hash size = 128
    Jul 9 22:26:38 rithmo kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jul 9 22:26:38 rithmo kernel: NetLabel: unlabeled traffic allowed by default
    Jul 9 22:26:38 rithmo kernel: pnp: PnP ACPI init
    Jul 9 22:26:38 rithmo kernel: ACPI: bus type pnp registered
    Jul 9 22:26:38 rithmo kernel: pnp 00:08: io resource (0x1640-0x164f) overlaps 0000:00:1c.0 BAR 13 (0x1000-0x1fff), disabling
    Jul 9 22:26:38 rithmo kernel: pnp: PnP ACPI: found 10 devices
    Jul 9 22:26:38 rithmo kernel: ACPI: ACPI bus type pnp unregistered
    Jul 9 22:26:38 rithmo kernel: system 00:01: iomem range 0xe0000000-0xefffffff has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:01: iomem range 0xfed14000-0xfed17fff has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:01: iomem range 0xfed18000-0xfed18fff has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:01: iomem range 0xfed19000-0xfed19fff has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:01: iomem range 0xfed1c000-0xfed1ffff has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:01: iomem range 0xfed20000-0xfed8ffff has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:06: iomem range 0xfed00000-0xfed003ff has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:08: ioport range 0x680-0x6ef has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:08: ioport range 0x800-0x80f has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:08: ioport range 0x810-0x817 has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:08: ioport range 0x400-0x47f has been reserved
    Jul 9 22:26:38 rithmo kernel: system 00:08: ioport range 0x500-0x53f has been reserved
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: IO window: 0x1000-0x1fff
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: MEM window: 0x90200000-0x902fffff
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: PREFETCH window: 0x00000090500000-0x000000905fffff
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: PCI bridge, secondary bus 0000:02
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: IO window: disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: MEM window: 0x90100000-0x901fffff
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: PREFETCH window: disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: IO window: disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: MEM window: 0x90000000-0x900fffff
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: PREFETCH window: disabled
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.0: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1c.1: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: power state changed by ACPI to D0
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:1e.0: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:00: resource 0 io: [0x00-0xffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:01: resource 0 io: [0x1000-0x1fff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:01: resource 1 mem: [0x90200000-0x902fffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:01: resource 2 pref mem [0x90500000-0x905fffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:02: resource 1 mem: [0x90100000-0x901fffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:03: resource 1 mem: [0x90000000-0x900fffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:03: resource 3 io: [0x00-0xffff]
    Jul 9 22:26:38 rithmo kernel: pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffff]
    Jul 9 22:26:38 rithmo kernel: NET: Registered protocol family 2
    Jul 9 22:26:38 rithmo kernel: IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    Jul 9 22:26:38 rithmo kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Jul 9 22:26:38 rithmo kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Jul 9 22:26:38 rithmo kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Jul 9 22:26:38 rithmo kernel: TCP reno registered
    Jul 9 22:26:38 rithmo kernel: NET: Registered protocol family 1
    Jul 9 22:26:38 rithmo kernel: Unpacking initramfs...
    Jul 9 22:26:38 rithmo kernel: Freeing initrd memory: 767k freed
    Jul 9 22:26:38 rithmo kernel: apm: BIOS not found.
    Jul 9 22:26:38 rithmo kernel: Scanning for low memory corruption every 60 seconds
    Jul 9 22:26:38 rithmo kernel: audit: initializing netlink socket (disabled)
    Jul 9 22:26:38 rithmo kernel: type=2000 audit(1247192786.346:1): initialized
    Jul 9 22:26:38 rithmo kernel: highmem bounce pool size: 64 pages
    Jul 9 22:26:38 rithmo kernel: VFS: Disk quotas dquot_6.5.2
    Jul 9 22:26:38 rithmo kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Jul 9 22:26:38 rithmo kernel: msgmni has been set to 1731
    Jul 9 22:26:38 rithmo kernel: alg: No test for stdrng (krng)
    Jul 9 22:26:38 rithmo kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Jul 9 22:26:38 rithmo kernel: io scheduler noop registered
    Jul 9 22:26:38 rithmo kernel: io scheduler anticipatory registered
    Jul 9 22:26:38 rithmo kernel: io scheduler deadline registered
    Jul 9 22:26:38 rithmo kernel: io scheduler cfq registered (default)
    Jul 9 22:26:38 rithmo kernel: pci 0000:00:02.0: Boot video device
    Jul 9 22:26:38 rithmo kernel: pcieport-driver 0000:00:1c.0: irq 24 for MSI/MSI-X
    Jul 9 22:26:38 rithmo kernel: pcieport-driver 0000:00:1c.0: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: pcieport-driver 0000:00:1c.1: irq 25 for MSI/MSI-X
    Jul 9 22:26:38 rithmo kernel: pcieport-driver 0000:00:1c.1: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: vesafb: framebuffer at 0x80000000, mapped to 0xf8080000, using 6144k, total 16064k
    Jul 9 22:26:38 rithmo kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=4
    Jul 9 22:26:38 rithmo kernel: vesafb: scrolling: redraw
    Jul 9 22:26:38 rithmo kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Jul 9 22:26:38 rithmo kernel: Console: switching to colour frame buffer device 128x48
    Jul 9 22:26:38 rithmo kernel: fb0: VESA VGA frame buffer device
    Jul 9 22:26:38 rithmo kernel: efifb: dmi detected MacBook1,1 - framebuffer at 80000000 (1280x800, stride 8192)
    Jul 9 22:26:38 rithmo kernel: isapnp: Scanning for PnP cards...
    Jul 9 22:26:38 rithmo kernel: Switched to high resolution mode on CPU 1
    Jul 9 22:26:38 rithmo kernel: Switched to high resolution mode on CPU 0
    Jul 9 22:26:38 rithmo kernel: isapnp: No Plug & Play device found
    Jul 9 22:26:38 rithmo kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jul 9 22:26:38 rithmo kernel: input: Macintosh mouse button emulation as /devices/virtual/input/input0
    Jul 9 22:26:38 rithmo kernel: PNP: No PS/2 controller found. Probing ports directly.
    Jul 9 22:26:38 rithmo kernel: i8042.c: No controller found.
    Jul 9 22:26:38 rithmo kernel: mice: PS/2 mouse device common for all mice
    Jul 9 22:26:38 rithmo kernel: cpuidle: using governor ladder
    Jul 9 22:26:38 rithmo kernel: cpuidle: using governor menu
    Jul 9 22:26:38 rithmo kernel: TCP cubic registered
    Jul 9 22:26:38 rithmo kernel: NET: Registered protocol family 17
    Jul 9 22:26:38 rithmo kernel: Using IPI No-Shortcut mode
    Jul 9 22:26:38 rithmo kernel: registered taskstats version 1
    Jul 9 22:26:38 rithmo kernel: Initalizing network drop monitor service
    Jul 9 22:26:38 rithmo kernel: Freeing unused kernel memory: 392k freed
    Jul 9 22:26:38 rithmo kernel: SCSI subsystem initialized
    Jul 9 22:26:38 rithmo kernel: libata version 3.00 loaded.
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.1: power state changed by ACPI to D0
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.1: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.1: PCI INT A disabled
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.2: enabling device (0005 -> 0007)
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.2: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: pata_acpi 0000:00:1f.2: PCI INT B disabled
    Jul 9 22:26:38 rithmo kernel: ata_piix 0000:00:1f.1: version 2.13
    Jul 9 22:26:38 rithmo kernel: ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Jul 9 22:26:38 rithmo kernel: ata_piix 0000:00:1f.1: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: scsi0 : ata_piix
    Jul 9 22:26:38 rithmo kernel: scsi1 : ata_piix
    Jul 9 22:26:38 rithmo kernel: ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x20c0 irq 14
    Jul 9 22:26:38 rithmo kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x20c8 irq 15
    Jul 9 22:26:38 rithmo kernel: ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jul 9 22:26:38 rithmo kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 -- -- ]
    Jul 9 22:26:38 rithmo kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: scsi2 : ata_piix
    Jul 9 22:26:38 rithmo kernel: scsi3 : ata_piix
    Jul 9 22:26:38 rithmo kernel: ata3: SATA max UDMA/133 cmd 0x20d8 ctl 0x20fc bmdma 0x2020 irq 19
    Jul 9 22:26:38 rithmo kernel: ata4: SATA max UDMA/133 cmd 0x20d0 ctl 0x20f8 bmdma 0x2028 irq 19
    Jul 9 22:26:38 rithmo kernel: ata1.00: ATAPI: MATSHITACD-RW CW-8221, GA0J, max UDMA/33
    Jul 9 22:26:38 rithmo kernel: ata1.00: configured for UDMA/33
    Jul 9 22:26:38 rithmo kernel: scsi 0:0:0:0: CD-ROM MATSHITA CD-RW CW-8221 GA0J PQ: 0 ANSI: 5
    Jul 9 22:26:38 rithmo kernel: ata3.01: ATA-8: SAMSUNG HM500LI, 2TF00_00, max UDMA7
    Jul 9 22:26:38 rithmo kernel: ata3.01: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    Jul 9 22:26:38 rithmo kernel: ata3.01: configured for UDMA/133
    Jul 9 22:26:38 rithmo kernel: scsi 2:0:1:0: Direct-Access ATA SAMSUNG HM500LI 2TF0 PQ: 0 ANSI: 5
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver usbfs
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver hub
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new device driver usb
    Jul 9 22:26:38 rithmo kernel: Driver 'sd' needs updating - please use bus_type methods
    Jul 9 22:26:38 rithmo kernel: sd 2:0:1:0: [sda] 976773168 512-byte hardware sectors: (500 GB/465 GiB)
    Jul 9 22:26:38 rithmo kernel: sd 2:0:1:0: [sda] Write Protect is off
    Jul 9 22:26:38 rithmo kernel: sd 2:0:1:0: [sda] Mode Sense: 00 3a 00 00
    Jul 9 22:26:38 rithmo kernel: sd 2:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jul 9 22:26:38 rithmo kernel: sda:<6>ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: irq 21, io mem 0x90445400
    Jul 9 22:26:38 rithmo kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Jul 9 22:26:38 rithmo kernel: usb usb1: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: hub 1-0:1.0: USB hub found
    Jul 9 22:26:38 rithmo kernel: hub 1-0:1.0: 8 ports detected
    Jul 9 22:26:38 rithmo kernel: sda1 sda2 sda3 sda4
    Jul 9 22:26:38 rithmo kernel: sd 2:0:1:0: [sda] Attached SCSI disk
    Jul 9 22:26:38 rithmo kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.0: irq 21, io base 0x000020a0
    Jul 9 22:26:38 rithmo kernel: usb usb2: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: hub 2-0:1.0: USB hub found
    Jul 9 22:26:38 rithmo kernel: hub 2-0:1.0: 2 ports detected
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00002080
    Jul 9 22:26:38 rithmo kernel: usb usb3: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: hub 3-0:1.0: USB hub found
    Jul 9 22:26:38 rithmo kernel: hub 3-0:1.0: 2 ports detected
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x00002060
    Jul 9 22:26:38 rithmo kernel: usb usb4: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: hub 4-0:1.0: USB hub found
    Jul 9 22:26:38 rithmo kernel: hub 4-0:1.0: 2 ports detected
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    Jul 9 22:26:38 rithmo kernel: uhci_hcd 0000:00:1d.3: irq 16, io base 0x00002040
    Jul 9 22:26:38 rithmo kernel: usb usb5: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: hub 5-0:1.0: USB hub found
    Jul 9 22:26:38 rithmo kernel: hub 5-0:1.0: 2 ports detected
    Jul 9 22:26:38 rithmo kernel: Driver 'sr' needs updating - please use bus_type methods
    Jul 9 22:26:38 rithmo kernel: sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
    Jul 9 22:26:38 rithmo kernel: Uniform CD-ROM driver Revision: 3.20
    Jul 9 22:26:38 rithmo kernel: sr 0:0:0:0: Attached scsi CD-ROM sr0
    Jul 9 22:26:38 rithmo kernel: usb 1-4: new high speed USB device using ehci_hcd and address 4
    Jul 9 22:26:38 rithmo kernel: PM: Starting manual resume from disk
    Jul 9 22:26:38 rithmo kernel: kjournald starting. Commit interval 5 seconds
    Jul 9 22:26:38 rithmo kernel: EXT3-fs: mounted filesystem with writeback data mode.
    Jul 9 22:26:38 rithmo kernel: usb 1-4: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: usb 2-2: new full speed USB device using uhci_hcd and address 2
    Jul 9 22:26:38 rithmo kernel: usb 2-2: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: usb 3-1: new low speed USB device using uhci_hcd and address 2
    Jul 9 22:26:38 rithmo kernel: usb 3-1: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: rtc_cmos 00:09: RTC can wake from S4
    Jul 9 22:26:38 rithmo kernel: rtc_cmos 00:09: rtc core: registered rtc_cmos as rtc0
    Jul 9 22:26:38 rithmo kernel: rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Jul 9 22:26:38 rithmo kernel: usb 4-2: new full speed USB device using uhci_hcd and address 2
    Jul 9 22:26:38 rithmo kernel: usb 4-2: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: usb 5-1: new full speed USB device using uhci_hcd and address 2
    Jul 9 22:26:38 rithmo kernel: usb 5-1: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: udev: starting version 141
    Jul 9 22:26:38 rithmo kernel: sky2 driver version 1.22
    Jul 9 22:26:38 rithmo kernel: sky2 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jul 9 22:26:38 rithmo kernel: sky2 0000:01:00.0: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: sky2 0000:01:00.0: Yukon-2 EC chip revision 2
    Jul 9 22:26:38 rithmo kernel: sky2 0000:01:00.0: irq 26 for MSI/MSI-X
    Jul 9 22:26:38 rithmo kernel: sky2 eth0: addr 00:17:f2:2d:06:51
    Jul 9 22:26:38 rithmo kernel: cfg80211: Using static regulatory domain info
    Jul 9 22:26:38 rithmo kernel: cfg80211: Regulatory domain: US
    Jul 9 22:26:38 rithmo kernel: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    Jul 9 22:26:38 rithmo kernel: (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
    Jul 9 22:26:38 rithmo kernel: (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    Jul 9 22:26:38 rithmo kernel: (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    Jul 9 22:26:38 rithmo kernel: (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    Jul 9 22:26:38 rithmo kernel: (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    Jul 9 22:26:38 rithmo kernel: (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
    Jul 9 22:26:38 rithmo kernel: cfg80211: Calling CRDA for country: US
    Jul 9 22:26:38 rithmo kernel: ath5k 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jul 9 22:26:38 rithmo kernel: ath5k 0000:02:00.0: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: ath5k 0000:02:00.0: registered as 'phy0'
    Jul 9 22:26:38 rithmo kernel: phy0: Selected rate control algorithm 'minstrel'
    Jul 9 22:26:38 rithmo kernel: ath5k phy0: Atheros AR5414 chip found (MAC: 0xa3, PHY: 0x61)
    Jul 9 22:26:38 rithmo kernel: HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Jul 9 22:26:38 rithmo kernel: HDA Intel 0000:00:1b.0: setting latency timer to 64
    Jul 9 22:26:38 rithmo kernel: hda_codec: STAC922x, Apple subsys_id=106b0a00
    Jul 9 22:26:38 rithmo kernel: input: HDA Intel Line In at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/input/input1
    Jul 9 22:26:38 rithmo kernel: input: HDA Intel Mic at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/input/input2
    Jul 9 22:26:38 rithmo kernel: input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/input/input3
    Jul 9 22:26:38 rithmo kernel: Disabling lock debugging due to kernel taint
    Jul 9 22:26:38 rithmo kernel: ndiswrapper version 1.54 loaded (smp=yes, preempt=yes)
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver ndiswrapper
    Jul 9 22:26:38 rithmo kernel: i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jul 9 22:26:38 rithmo kernel: coretemp coretemp.0: Errata AE18 not fixed, update BIOS or microcode of the CPU!
    Jul 9 22:26:38 rithmo kernel: coretemp coretemp.1: Errata AE18 not fixed, update BIOS or microcode of the CPU!
    Jul 9 22:26:38 rithmo kernel: ACPI: SSDT 7eeb9c90 0022A (v01 APPLE Cpu0Ist 00003000 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: ACPI: SSDT 7eeb8c10 002C3 (v01 APPLE Cpu0Cst 00003001 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: Monitor-Mwait will be used to enter C-1 state
    Jul 9 22:26:38 rithmo kernel: Monitor-Mwait will be used to enter C-2 state
    Jul 9 22:26:38 rithmo kernel: Monitor-Mwait will be used to enter C-3 state
    Jul 9 22:26:38 rithmo kernel: Marking TSC unstable due to TSC halts in idle
    Jul 9 22:26:38 rithmo kernel: ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    Jul 9 22:26:38 rithmo kernel: processor ACPI_CPU:00: registered as cooling_device0
    Jul 9 22:26:38 rithmo kernel: ACPI: Processor [CPU0] (supports 8 throttling states)
    Jul 9 22:26:38 rithmo kernel: ACPI: SSDT 7eeb9f10 00087 (v01 APPLE Cpu1Ist 00003000 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: ACPI: SSDT 7eeb8f10 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20050309)
    Jul 9 22:26:38 rithmo kernel: ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
    Jul 9 22:26:38 rithmo kernel: processor ACPI_CPU:01: registered as cooling_device1
    Jul 9 22:26:38 rithmo kernel: ACPI: Processor [CPU1] (supports 8 throttling states)
    Jul 9 22:26:38 rithmo kernel: Linux video capture interface: v2.00
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver uvcvideo
    Jul 9 22:26:38 rithmo kernel: USB Video Class driver (v0.1.0)
    Jul 9 22:26:38 rithmo kernel: fuse init (API version 7.11)
    Jul 9 22:26:38 rithmo kernel: ACPI: AC Adapter [ADP1] (on-line)
    Jul 9 22:26:38 rithmo kernel: ACPI: Battery Slot [BAT0] (battery present)
    Jul 9 22:26:38 rithmo kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jul 9 22:26:38 rithmo kernel: ACPI: Power Button [PWRF]
    Jul 9 22:26:38 rithmo kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input5
    Jul 9 22:26:38 rithmo kernel: ACPI: Lid Switch [LID0]
    Jul 9 22:26:38 rithmo kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input6
    Jul 9 22:26:38 rithmo kernel: ACPI: Power Button [PWRB]
    Jul 9 22:26:38 rithmo kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input7
    Jul 9 22:26:38 rithmo kernel: ACPI: Sleep Button [SLPB]
    Jul 9 22:26:38 rithmo kernel: Linux agpgart interface v0.103
    Jul 9 22:26:38 rithmo kernel: agpgart-intel 0000:00:00.0: Intel 945GM Chipset
    Jul 9 22:26:38 rithmo kernel: agpgart-intel 0000:00:00.0: detected 16124K stolen memory
    Jul 9 22:26:38 rithmo kernel: agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
    Jul 9 22:26:38 rithmo kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
    Jul 9 22:26:38 rithmo kernel: iTCO_vendor_support: vendor-support=0
    Jul 9 22:26:38 rithmo kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
    Jul 9 22:26:38 rithmo kernel: iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x0460)
    Jul 9 22:26:38 rithmo kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Jul 9 22:26:38 rithmo kernel: intel_rng: FWH not detected
    Jul 9 22:26:38 rithmo kernel: applesmc: Apple MacBook detected:
    Jul 9 22:26:38 rithmo kernel: applesmc: - Model with accelerometer
    Jul 9 22:26:38 rithmo kernel: applesmc: - Model without light sensors and backlight
    Jul 9 22:26:38 rithmo kernel: applesmc: - Model with 10 temperature sensors
    Jul 9 22:26:38 rithmo kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/input/input9
    Jul 9 22:26:38 rithmo kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    Jul 9 22:26:38 rithmo kernel: applesmc: device successfully initialized (0xe0, 0x00).
    Jul 9 22:26:38 rithmo kernel: applesmc: device successfully initialized.
    Jul 9 22:26:38 rithmo kernel: applesmc: 1 fans found.
    Jul 9 22:26:38 rithmo kernel: tpm_inf_pnp 00:03: Found TPM with ID IFX0101
    Jul 9 22:26:38 rithmo kernel: tpm_inf_pnp 00:03: TPM found: config base 0x4e, data base 0x4700, chip version 0x000b, vendor id 0x15d1 (Infineon), product id 0x000b (SLB 9635 TT 1.2)
    Jul 9 22:26:38 rithmo kernel: input: applesmc as /devices/platform/applesmc.768/input/input10
    Jul 9 22:26:38 rithmo kernel: applesmc: driver successfully loaded.
    Jul 9 22:26:38 rithmo kernel: appletouch: Geyser mode initialized.
    Jul 9 22:26:38 rithmo kernel: input: appletouch as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input11
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver appletouch
    Jul 9 22:26:38 rithmo kernel: sr 0:0:0:0: Attached scsi generic sg0 type 5
    Jul 9 22:26:38 rithmo kernel: sd 2:0:1:0: Attached scsi generic sg1 type 0
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver hiddev
    Jul 9 22:26:38 rithmo kernel: input: Razer Razer Diamondback Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input12
    Jul 9 22:26:38 rithmo kernel: generic-usb 0003:1532:0002.0003: input,hidraw0: USB HID v1.10 Mouse [Razer Razer Diamondback Optical Mouse] on usb-0000:00:1d.1-1/input0
    Jul 9 22:26:38 rithmo kernel: generic-usb 0003:05AC:8240.0004: hiddev0,hidraw1: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.2-2/input0
    Jul 9 22:26:38 rithmo kernel: ohci1394 0000:03:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    Jul 9 22:26:38 rithmo kernel: input: HID 05ac:1000 as /devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.0/input/input13
    Jul 9 22:26:38 rithmo kernel: generic-usb 0003:05AC:1000.0005: input,hidraw2: USB HID v1.11 Keyboard [HID 05ac:1000] on usb-0000:00:1d.3-1/input0
    Jul 9 22:26:38 rithmo kernel: input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input14
    Jul 9 22:26:38 rithmo kernel: apple 0003:05AC:0218.0001: input,hidraw3: USB HID v1.11 Keyboard [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input0
    Jul 9 22:26:38 rithmo kernel: input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.2/input/input15
    Jul 9 22:26:38 rithmo kernel: apple 0003:05AC:0218.0002: input,hidraw4: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-2/input2
    Jul 9 22:26:38 rithmo kernel: input: HID 05ac:1000 as /devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.1/input/input16
    Jul 9 22:26:38 rithmo kernel: generic-usb 0003:05AC:1000.0006: input,hidraw5: USB HID v1.11 Mouse [HID 05ac:1000] on usb-0000:00:1d.3-1/input1
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver usbhid
    Jul 9 22:26:38 rithmo kernel: usbhid: v2.6:USB HID core driver
    Jul 9 22:26:38 rithmo kernel: ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[19] MMIO=[90000000-900007ff] Max Packet=[2048] IR/IT contexts=[8/8]
    Jul 9 22:26:38 rithmo kernel: usb 1-4: firmware: requesting isight.fw
    Jul 9 22:26:38 rithmo kernel: usbcore: registered new interface driver isight_firmware
    Jul 9 22:26:38 rithmo kernel: usb 1-4: USB disconnect, address 4
    Jul 9 22:26:38 rithmo kernel: EXT3 FS on sda4, internal journal
    Jul 9 22:26:38 rithmo kernel: Adding 1953116k swap on /dev/sda3. Priority:-1 extents:1 across:1953116k
    Jul 9 22:26:38 rithmo kernel: Clocksource tsc unstable (delta = -290561024 ns)
    Jul 9 22:26:38 rithmo kernel: ieee1394: Host added: ID:BUS[0-00:1023] GUID[0017f2fffe6b321e]
    Jul 9 22:26:38 rithmo kernel: usb 1-4: new high speed USB device using ehci_hcd and address 7
    Jul 9 22:26:38 rithmo kernel: usb 1-4: configuration #1 chosen from 1 choice
    Jul 9 22:26:38 rithmo kernel: uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8501)
    Jul 9 22:26:38 rithmo kernel: uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
    Jul 9 22:26:49 rithmo kernel: wlan0: direct probe to AP 00:1f:33:ba:cf:90 try 1
    Jul 9 22:26:49 rithmo kernel: wlan0 direct probe responded
    Jul 9 22:26:49 rithmo kernel: wlan0: authenticate with AP 00:1f:33:ba:cf:90
    Jul 9 22:26:49 rithmo kernel: wlan0: authenticated
    Jul 9 22:26:49 rithmo kernel: wlan0: associate with AP 00:1f:33:ba:cf:90
    Jul 9 22:26:49 rithmo kernel: wlan0: RX AssocResp from 00:1f:33:ba:cf:90 (capab=0x411 status=0 aid=3)
    Jul 9 22:26:49 rithmo kernel: wlan0: associated
    Jul 9 22:27:32 rithmo kernel: [drm] Initialized drm 1.1.0 20060810
    Jul 9 22:27:32 rithmo kernel: pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jul 9 22:27:32 rithmo kernel: pci 0000:00:02.0: setting latency timer to 64
    Jul 9 22:27:32 rithmo kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Jul 9 22:27:54 rithmo kernel: NET: Registered protocol family 10
    Jul 9 22:27:54 rithmo kernel: lo: Disabled Privacy Extensions
    Jul 9 22:28:05 rithmo kernel: wlan0: no IPv6 routers present
    Jul 9 22:35:27 rithmo kernel: ACPI: EC: GPE storm detected, transactions will use polling mode
    Xorg log will be in the next post (too long).
    Afaik, even when X fails to launch the window manager (the black screen with cursor state), the log file looks the same.
    Thanks for reading!

  • Getting and fsck error on startup about /bin/plymouth

    Hello,
    Yesterday I was rebooting my laptop when this happened, during the booting up there was an usual filesystem check and the it gave me an error and asked me to enter my root password for maintenance or press ctrl+D to continue I just continued to the DM and did run
    journalctl -xb
    I run openbox with compton and conky and basic apps I do not have KDE installed although I did try installing kde5 but  was unable to install completely due to some depenecides not installing.
    this is the output:
    -- Logs begin at Mon 2014-06-30 10:27:20 IST, end at Mon 2014-07-28 07:02:38 IST. --
    Jul 28 06:47:43 sentinel systemd-journal[118]: Runtime journal is using 6.2M (max allowed 49.8M, trying to leave 74.7M free of 491.9M available → current limit 49.8M).
    Jul 28 06:47:43 sentinel systemd-journal[118]: Runtime journal is using 6.2M (max allowed 49.8M, trying to leave 74.7M free of 491.9M available → current limit 49.8M).
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys cpuset
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys cpu
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys cpuacct
    Jul 28 06:47:43 sentinel kernel: Linux version 3.14.4-1-ARCH (nobody@var-lib-archbuild-testing-i686-tobias) (gcc version 4.9.0 20140507 (prerelease) (GCC) ) #1 SMP PREEMPT Tue May 13 16:44:54 CEST 2014
    Jul 28 06:47:43 sentinel kernel: e820: BIOS-provided physical RAM map:
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000000d2000-0x00000000000d3fff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003f6cffff] usable
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x000000003f6d0000-0x000000003f6e2fff] ACPI NVS
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x000000003f6e3000-0x000000003fffffff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Jul 28 06:47:43 sentinel kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    Jul 28 06:47:43 sentinel kernel: Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    Jul 28 06:47:43 sentinel kernel: SMBIOS 2.4 present.
    Jul 28 06:47:43 sentinel kernel: DMI: LENOVO LENOVO3000 Y410 /IGT30, BIOS 05CN39WW(V1.10) 08/29/2007
    Jul 28 06:47:43 sentinel kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jul 28 06:47:43 sentinel kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jul 28 06:47:43 sentinel kernel: e820: last_pfn = 0x3f6d0 max_arch_pfn = 0x100000
    Jul 28 06:47:43 sentinel kernel: MTRR default type: uncachable
    Jul 28 06:47:43 sentinel kernel: MTRR fixed ranges enabled:
    Jul 28 06:47:43 sentinel kernel: 00000-9FFFF write-back
    Jul 28 06:47:43 sentinel kernel: A0000-BFFFF uncachable
    Jul 28 06:47:43 sentinel kernel: C0000-FFFFF write-protect
    Jul 28 06:47:43 sentinel kernel: MTRR variable ranges enabled:
    Jul 28 06:47:43 sentinel kernel: 0 base 000000000 mask FC0000000 write-back
    Jul 28 06:47:43 sentinel kernel: 1 base 03F700000 mask FFFF00000 uncachable
    Jul 28 06:47:43 sentinel kernel: 2 base 03F800000 mask FFF800000 uncachable
    Jul 28 06:47:43 sentinel kernel: 3 disabled
    Jul 28 06:47:43 sentinel kernel: 4 disabled
    Jul 28 06:47:43 sentinel kernel: 5 disabled
    Jul 28 06:47:43 sentinel kernel: 6 disabled
    Jul 28 06:47:43 sentinel kernel: 7 disabled
    Jul 28 06:47:43 sentinel kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jul 28 06:47:43 sentinel kernel: found SMP MP-table at [mem 0x000f70d0-0x000f70df] mapped at [c00f70d0]
    Jul 28 06:47:43 sentinel kernel: Scanning 1 areas for low memory corruption
    Jul 28 06:47:43 sentinel kernel: initial memory mapped: [mem 0x00000000-0x01bfffff]
    Jul 28 06:47:43 sentinel kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Jul 28 06:47:43 sentinel kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jul 28 06:47:43 sentinel kernel: [mem 0x00000000-0x000fffff] page 4k
    Jul 28 06:47:43 sentinel kernel: init_memory_mapping: [mem 0x37000000-0x373fffff]
    Jul 28 06:47:43 sentinel kernel: [mem 0x37000000-0x373fffff] page 2M
    Jul 28 06:47:43 sentinel kernel: init_memory_mapping: [mem 0x30000000-0x36ffffff]
    Jul 28 06:47:43 sentinel kernel: [mem 0x30000000-0x36ffffff] page 2M
    Jul 28 06:47:43 sentinel kernel: init_memory_mapping: [mem 0x00100000-0x2fffffff]
    Jul 28 06:47:43 sentinel kernel: [mem 0x00100000-0x003fffff] page 4k
    Jul 28 06:47:43 sentinel kernel: [mem 0x00400000-0x2fffffff] page 2M
    Jul 28 06:47:43 sentinel kernel: init_memory_mapping: [mem 0x37400000-0x377fdfff]
    Jul 28 06:47:43 sentinel kernel: [mem 0x37400000-0x377fdfff] page 4k
    Jul 28 06:47:43 sentinel kernel: BRK [0x01798000, 0x01798fff] PGTABLE
    Jul 28 06:47:43 sentinel kernel: RAMDISK: [mem 0x37958000-0x37ca3fff]
    Jul 28 06:47:43 sentinel kernel: Allocated new RAMDISK: [mem 0x374b2000-0x377fda97]
    Jul 28 06:47:43 sentinel kernel: Move RAMDISK from [mem 0x37958000-0x37ca3a97] to [mem 0x374b2000-0x377fda97]
    Jul 28 06:47:43 sentinel kernel: ACPI: RSDP 000f7050 000024 (v02 LENOVO)
    Jul 28 06:47:43 sentinel kernel: ACPI: XSDT 3f6d7561 00008C (v01 LENOVO CB-01 06040000 LTP 00000000)
    Jul 28 06:47:43 sentinel kernel: ACPI: FACP 3f6dfc3a 0000F4 (v03 LENOVO CB-01 06040000 ALAN 00000001)
    Jul 28 06:47:43 sentinel kernel: ACPI: DSDT 3f6d92a6 006920 (v02 LENOVO CB-01 06040000 INTL 20060608)
    Jul 28 06:47:43 sentinel kernel: ACPI: FACS 3f6e2fc0 000040
    Jul 28 06:47:43 sentinel kernel: ACPI: HPET 3f6dfd2e 000038 (v01 LENOVO CB-01 06040000 LOHR 0000005A)
    Jul 28 06:47:43 sentinel kernel: ACPI: MCFG 3f6dfd66 00003C (v01 LENOVO CB-01 06040000 LOHR 0000005A)
    Jul 28 06:47:43 sentinel kernel: ACPI: TCPA 3f6dfda2 000032 (v01 LENOVO CB-01 06040000 LOHR 0000005A)
    Jul 28 06:47:43 sentinel kernel: ACPI: TMOR 3f6dfdd4 000026 (v01 LENOVO CB-01 06040000 PTL 00000003)
    Jul 28 06:47:43 sentinel kernel: ACPI: SLIC 3f6dfdfa 000176 (v01 LENOVO CB-01 06040000 TBD 00000001)
    Jul 28 06:47:43 sentinel kernel: ACPI: APIC 3f6dff70 000068 (v01 LENOVO CB-01 06040000 LTP 00000000)
    Jul 28 06:47:43 sentinel kernel: ACPI: BOOT 3f6dffd8 000028 (v01 LENOVO CB-01 06040000 LTP 00000001)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d8c57 00064F (v01 SataRe SataPri 00001000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d85c5 000692 (v01 SataRe SataSec 00001000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d7b79 00025F (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d7ad3 0000A6 (v01 PmRef Cpu1Tst 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d75ed 0004E6 (v01 PmRef CpuPm 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: Local APIC address 0xfee00000
    Jul 28 06:47:43 sentinel kernel: 126MB HIGHMEM available.
    Jul 28 06:47:43 sentinel kernel: 887MB LOWMEM available.
    Jul 28 06:47:43 sentinel kernel: mapped low ram: 0 - 377fe000
    Jul 28 06:47:43 sentinel kernel: low ram: 0 - 377fe000
    Jul 28 06:47:43 sentinel kernel: BRK [0x01799000, 0x01799fff] PGTABLE
    Jul 28 06:47:43 sentinel kernel: Zone ranges:
    Jul 28 06:47:43 sentinel kernel: DMA [mem 0x00001000-0x00ffffff]
    Jul 28 06:47:43 sentinel kernel: Normal [mem 0x01000000-0x377fdfff]
    Jul 28 06:47:43 sentinel kernel: HighMem [mem 0x377fe000-0x3f6cffff]
    Jul 28 06:47:43 sentinel kernel: Movable zone start for each node
    Jul 28 06:47:43 sentinel kernel: Early memory node ranges
    Jul 28 06:47:43 sentinel kernel: node 0: [mem 0x00001000-0x0009efff]
    Jul 28 06:47:43 sentinel kernel: node 0: [mem 0x00100000-0x3f6cffff]
    Jul 28 06:47:43 sentinel kernel: On node 0 totalpages: 259694
    Jul 28 06:47:43 sentinel kernel: free_area_init_node: node 0, pgdat c15fc600, node_mem_map f6cc2020
    Jul 28 06:47:43 sentinel kernel: DMA zone: 32 pages used for memmap
    Jul 28 06:47:43 sentinel kernel: DMA zone: 0 pages reserved
    Jul 28 06:47:43 sentinel kernel: DMA zone: 3998 pages, LIFO batch:0
    Jul 28 06:47:43 sentinel kernel: Normal zone: 1744 pages used for memmap
    Jul 28 06:47:43 sentinel kernel: Normal zone: 223230 pages, LIFO batch:31
    Jul 28 06:47:43 sentinel kernel: HighMem zone: 254 pages used for memmap
    Jul 28 06:47:43 sentinel kernel: HighMem zone: 32466 pages, LIFO batch:7
    Jul 28 06:47:43 sentinel kernel: Using APIC driver default
    Jul 28 06:47:43 sentinel kernel: ACPI: PM-Timer IO Port: 0x1008
    Jul 28 06:47:43 sentinel kernel: ACPI: Local APIC address 0xfee00000
    Jul 28 06:47:43 sentinel kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jul 28 06:47:43 sentinel kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jul 28 06:47:43 sentinel kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Jul 28 06:47:43 sentinel kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jul 28 06:47:43 sentinel kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jul 28 06:47:43 sentinel kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Jul 28 06:47:43 sentinel kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    Jul 28 06:47:43 sentinel kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jul 28 06:47:43 sentinel kernel: ACPI: IRQ0 used by override.
    Jul 28 06:47:43 sentinel kernel: ACPI: IRQ2 used by override.
    Jul 28 06:47:43 sentinel kernel: ACPI: IRQ9 used by override.
    Jul 28 06:47:43 sentinel kernel: Using ACPI (MADT) for SMP configuration information
    Jul 28 06:47:43 sentinel kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Jul 28 06:47:43 sentinel kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    Jul 28 06:47:43 sentinel kernel: nr_irqs_gsi: 40
    Jul 28 06:47:43 sentinel kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Jul 28 06:47:43 sentinel kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000d1fff]
    Jul 28 06:47:43 sentinel kernel: PM: Registered nosave memory: [mem 0x000d2000-0x000d3fff]
    Jul 28 06:47:43 sentinel kernel: PM: Registered nosave memory: [mem 0x000d4000-0x000dbfff]
    Jul 28 06:47:43 sentinel kernel: PM: Registered nosave memory: [mem 0x000dc000-0x000fffff]
    Jul 28 06:47:43 sentinel kernel: e820: [mem 0x40000000-0xdfffffff] available for PCI devices
    Jul 28 06:47:43 sentinel kernel: Booting paravirtualized kernel on bare hardware
    Jul 28 06:47:43 sentinel kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    Jul 28 06:47:43 sentinel kernel: PERCPU: Embedded 14 pages/cpu @f6ca0000 s33792 r0 d23552 u57344
    Jul 28 06:47:43 sentinel kernel: pcpu-alloc: s33792 r0 d23552 u57344 alloc=14*4096
    Jul 28 06:47:43 sentinel kernel: pcpu-alloc: [0] 0 [0] 1
    Jul 28 06:47:43 sentinel kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257918
    Jul 28 06:47:43 sentinel kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=45e3c622-e8c8-40b6-be7c-0c847fe91502 rw quiet
    Jul 28 06:47:43 sentinel kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Jul 28 06:47:43 sentinel kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Jul 28 06:47:43 sentinel kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Jul 28 06:47:43 sentinel kernel: Initializing CPU#0
    Jul 28 06:47:43 sentinel kernel: allocated 2078328 bytes of page_cgroup
    Jul 28 06:47:43 sentinel kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jul 28 06:47:43 sentinel kernel: Initializing HighMem for node 0 (000377fe:0003f6d0)
    Jul 28 06:47:43 sentinel kernel: Initializing Movable for node 0 (00000000:00000000)
    Jul 28 06:47:43 sentinel kernel: Memory: 1016448K/1038776K available (4445K kernel code, 470K rwdata, 1280K rodata, 568K init, 956K bss, 22328K reserved, 129864K highmem)
    Jul 28 06:47:43 sentinel kernel: virtual kernel memory layout:
    fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc160f000 - 0xc169d000 ( 568 kB)
    .data : 0xc1457b12 - 0xc160eb40 (1756 kB)
    .text : 0xc1000000 - 0xc1457b12 (4446 kB)
    Jul 28 06:47:43 sentinel kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Jul 28 06:47:43 sentinel kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Jul 28 06:47:43 sentinel kernel: Preemptible hierarchical RCU implementation.
    Jul 28 06:47:43 sentinel kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jul 28 06:47:43 sentinel kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jul 28 06:47:43 sentinel kernel: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
    Jul 28 06:47:43 sentinel kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    Jul 28 06:47:43 sentinel kernel: NR_IRQS:2304 nr_irqs:512 16
    Jul 28 06:47:43 sentinel kernel: CPU 0 irqstacks, hard=f6408000 soft=f640a000
    Jul 28 06:47:43 sentinel kernel: Console: colour dummy device 80x25
    Jul 28 06:47:43 sentinel kernel: console [tty0] enabled
    Jul 28 06:47:43 sentinel kernel: hpet clockevent registered
    Jul 28 06:47:43 sentinel kernel: tsc: Fast TSC calibration using PIT
    Jul 28 06:47:43 sentinel kernel: tsc: Detected 1463.025 MHz processor
    Jul 28 06:47:43 sentinel kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 2927.96 BogoMIPS (lpj=4876750)
    Jul 28 06:47:43 sentinel kernel: pid_max: default: 32768 minimum: 301
    Jul 28 06:47:43 sentinel kernel: ACPI: Core revision 20131218
    Jul 28 06:47:43 sentinel kernel: ACPI: All ACPI Tables successfully acquired
    Jul 28 06:47:43 sentinel kernel: Security Framework initialized
    Jul 28 06:47:43 sentinel kernel: Yama: becoming mindful.
    Jul 28 06:47:43 sentinel kernel: Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    Jul 28 06:47:43 sentinel kernel: Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys memory
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys devices
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys freezer
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys net_cls
    Jul 28 06:47:43 sentinel kernel: Initializing cgroup subsys blkio
    Jul 28 06:47:43 sentinel kernel: CPU: Physical Processor ID: 0
    Jul 28 06:47:43 sentinel kernel: CPU: Processor Core ID: 0
    Jul 28 06:47:43 sentinel kernel: mce: CPU supports 6 MCE banks
    Jul 28 06:47:43 sentinel kernel: CPU0: Thermal monitoring handled by SMI
    Jul 28 06:47:43 sentinel kernel: 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
    Jul 28 06:47:43 sentinel kernel: Freeing SMP alternatives memory: 16K (c169d000 - c16a1000)
    Jul 28 06:47:43 sentinel kernel: ftrace: allocating 18913 entries in 37 pages
    Jul 28 06:47:43 sentinel kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Jul 28 06:47:43 sentinel kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jul 28 06:47:43 sentinel kernel: smpboot: CPU0: Intel(R) Pentium(R) Dual CPU T2310 @ 1.46GHz (fam: 06, model: 0f, stepping: 0d)
    Jul 28 06:47:43 sentinel kernel: Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    Jul 28 06:47:43 sentinel kernel: perf_event_intel: PEBS disabled due to CPU errata
    Jul 28 06:47:43 sentinel kernel: ... version: 2
    Jul 28 06:47:43 sentinel kernel: ... bit width: 40
    Jul 28 06:47:43 sentinel kernel: ... generic registers: 2
    Jul 28 06:47:43 sentinel kernel: ... value mask: 000000ffffffffff
    Jul 28 06:47:43 sentinel kernel: ... max period: 000000007fffffff
    Jul 28 06:47:43 sentinel kernel: ... fixed-purpose events: 3
    Jul 28 06:47:43 sentinel kernel: ... event mask: 0000000700000003
    Jul 28 06:47:43 sentinel kernel: CPU 1 irqstacks, hard=f64cc000 soft=f64ce000
    Jul 28 06:47:43 sentinel kernel: x86: Booting SMP configuration:
    Jul 28 06:47:43 sentinel kernel: .... node #0, CPUs: #1
    Jul 28 06:47:43 sentinel kernel: Initializing CPU#1
    Jul 28 06:47:43 sentinel kernel: CPU1: Thermal monitoring handled by SMI
    Jul 28 06:47:43 sentinel kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jul 28 06:47:43 sentinel kernel: x86: Booted up 1 node, 2 CPUs
    Jul 28 06:47:43 sentinel kernel: smpboot: Total of 2 processors activated (5854.93 BogoMIPS)
    Jul 28 06:47:43 sentinel kernel: devtmpfs: initialized
    Jul 28 06:47:43 sentinel kernel: PM: Registering ACPI NVS region [mem 0x3f6d0000-0x3f6e2fff] (77824 bytes)
    Jul 28 06:47:43 sentinel kernel: pinctrl core: initialized pinctrl subsystem
    Jul 28 06:47:43 sentinel kernel: RTC time: 1:17:37, date: 07/28/14
    Jul 28 06:47:43 sentinel kernel: NET: Registered protocol family 16
    Jul 28 06:47:43 sentinel kernel: cpuidle: using governor ladder
    Jul 28 06:47:43 sentinel kernel: cpuidle: using governor menu
    Jul 28 06:47:43 sentinel kernel: ACPI: bus type PCI registered
    Jul 28 06:47:43 sentinel kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jul 28 06:47:43 sentinel kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jul 28 06:47:43 sentinel kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jul 28 06:47:43 sentinel kernel: PCI: Using MMCONFIG for extended config space
    Jul 28 06:47:43 sentinel kernel: PCI: Using configuration type 1 for base access
    Jul 28 06:47:43 sentinel kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Jul 28 06:47:43 sentinel kernel: mtrr: probably your BIOS does not setup all CPUs.
    Jul 28 06:47:43 sentinel kernel: mtrr: corrected configuration.
    Jul 28 06:47:43 sentinel kernel: bio: create slab <bio-0> at 0
    Jul 28 06:47:43 sentinel kernel: ACPI: Added _OSI(Module Device)
    Jul 28 06:47:43 sentinel kernel: ACPI: Added _OSI(Processor Device)
    Jul 28 06:47:43 sentinel kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jul 28 06:47:43 sentinel kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jul 28 06:47:43 sentinel kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d8307 0001F6 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: Dynamic OEM Table Load:
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT (null) 0001F6 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d7dd8 0004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: Dynamic OEM Table Load:
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT (null) 0004AA (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d84fd 0000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: Dynamic OEM Table Load:
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT (null) 0000C8 (v01 PmRef Cpu1Ist 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT 3f6d8282 000085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: Dynamic OEM Table Load:
    Jul 28 06:47:43 sentinel kernel: ACPI: SSDT (null) 000085 (v01 PmRef Cpu1Cst 00003000 INTL 20050624)
    Jul 28 06:47:43 sentinel kernel: ACPI: Interpreter enabled
    Jul 28 06:47:43 sentinel kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131218/hwxface-580)
    Jul 28 06:47:43 sentinel kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
    Jul 28 06:47:43 sentinel kernel: ACPI: (supports S0 S3 S4 S5)
    Jul 28 06:47:43 sentinel kernel: ACPI: Using IOAPIC for interrupt routing
    Jul 28 06:47:43 sentinel kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Jul 28 06:47:43 sentinel kernel: ACPI: No dock devices found.
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: host bridge window [mem 0x40000000-0xdfffffff] (ignored)
    Jul 28 06:47:43 sentinel kernel: acpi PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored)
    Jul 28 06:47:43 sentinel kernel: PCI: root bus 00: using default resources
    Jul 28 06:47:43 sentinel kernel: PCI host bridge to bus 0000:00
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:00.0: [8086:2a00] type 00 class 0x060000
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:02.0: [8086:2a02] type 00 class 0x030000
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf8000000-0xf80fffff 64bit]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:02.0: reg 0x20: [io 0x1800-0x1807]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:02.1: [8086:2a03] type 00 class 0x038000
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:02.1: reg 0x10: [mem 0xf8100000-0xf81fffff 64bit]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.0: reg 0x20: [io 0x1820-0x183f]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.1: [8086:2835] type 00 class 0x0c0300
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.1: reg 0x20: [io 0x1840-0x185f]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.1: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xf8504000-0xf85043ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1a.7: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf8300000-0xf8303fff 64bit]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: [8086:2841] type 01 class 0x060400
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: [8086:2843] type 01 class 0x060400
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: [8086:2845] type 01 class 0x060400
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.0: reg 0x20: [io 0x1860-0x187f]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.1: reg 0x20: [io 0x1880-0x189f]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.2: reg 0x20: [io 0x18a0-0x18bf]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xf8504400-0xf85047ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.0: [8086:2815] type 00 class 0x060100
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.0: address space collision: [io 0x1000-0x107f] conflicts with ACPI CPU throttle [??? 0x00001010-0x00001015 flags 0x80000000]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 007f)
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0068 (mask 0007)
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: [8086:2828] type 00 class 0x010180
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: reg 0x10: [io 0x0000-0x0007]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: reg 0x14: [io 0x0000-0x0003]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: reg 0x18: [io 0x0000-0x0007]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x0000-0x0003]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: reg 0x20: [io 0x18e0-0x18ef]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: reg 0x24: [io 0x18d0-0x18df]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.3: [8086:283e] type 00 class 0x0c0500
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x00000000-0x000000ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.3: reg 0x20: [io 0x1c00-0x1c1f]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc3ffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: bridge window [mem 0xcc000000-0xcdffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:04:00.0: [8086:4222] type 00 class 0x028000
    Jul 28 06:47:43 sentinel kernel: pci 0000:04:00.0: reg 0x10: [mem 0xf0000000-0xf0000fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: PCI bridge to [bus 04]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: bridge window [mem 0xf0000000-0xf3ffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: bridge window [mem 0xfa000000-0xfbffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: acpiphp: Slot [1] registered
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: PCI bridge to [bus 05]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf7ffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: bridge window [mem 0xfc000000-0xfdffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:06:00.0: [14e4:1713] type 00 class 0x020000
    Jul 28 06:47:43 sentinel kernel: pci 0000:06:00.0: reg 0x10: [mem 0xb8000000-0xb800ffff 64bit]
    Jul 28 06:47:43 sentinel kernel: pci 0000:06:00.0: PME# supported from D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:06:00.0: System wakeup disabled by ACPI
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: PCI bridge to [bus 06]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: bridge window [mem 0xb8000000-0xbbffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.0: [1180:0832] type 00 class 0x0c0010
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.0: proprietary Ricoh MMC controller disabled (via firewire function)
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.0: MMC cards are now supported by standard SDHCI controller
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.0: reg 0x10: [mem 0xf8200000-0xf82007ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.0: supports D1 D2
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.1: [1180:0822] type 00 class 0x080500
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.1: reg 0x10: [mem 0xf8200800-0xf82008ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.1: supports D1 D2
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.1: PME# supported from D0 D1 D2 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.2: [1180:0592] type 00 class 0x088000
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.2: reg 0x10: [mem 0xf8201000-0xf82010ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.2: supports D1 D2
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.2: PME# supported from D0 D1 D2 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.3: [1180:0852] type 00 class 0x088000
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.3: reg 0x10: [mem 0xf8201400-0xf82014ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.3: supports D1 D2
    Jul 28 06:47:43 sentinel kernel: pci 0000:08:06.3: PME# supported from D0 D1 D2 D3hot D3cold
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1e.0: bridge window [mem 0xf8200000-0xf82fffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:00: on NUMA node 0
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *7 10 12 14 15)
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jul 28 06:47:43 sentinel kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jul 28 06:47:43 sentinel kernel: ACPI: Enabled 4 GPEs in block 00 to 1F
    Jul 28 06:47:43 sentinel kernel: ACPI : EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    Jul 28 06:47:43 sentinel kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Jul 28 06:47:43 sentinel kernel: vgaarb: loaded
    Jul 28 06:47:43 sentinel kernel: vgaarb: bridge control possible 0000:00:02.0
    Jul 28 06:47:43 sentinel kernel: PCI: Using ACPI for IRQ routing
    Jul 28 06:47:43 sentinel kernel: PCI: pci_cache_line_size set to 64 bytes
    Jul 28 06:47:43 sentinel kernel: e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    Jul 28 06:47:43 sentinel kernel: e820: reserve RAM buffer [mem 0x3f6d0000-0x3fffffff]
    Jul 28 06:47:43 sentinel kernel: NetLabel: Initializing
    Jul 28 06:47:43 sentinel kernel: NetLabel: domain hash size = 128
    Jul 28 06:47:43 sentinel kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jul 28 06:47:43 sentinel kernel: NetLabel: unlabeled traffic allowed by default
    Jul 28 06:47:43 sentinel kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Jul 28 06:47:43 sentinel kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Jul 28 06:47:43 sentinel kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Jul 28 06:47:43 sentinel kernel: Switched to clocksource hpet
    Jul 28 06:47:43 sentinel kernel: pnp: PnP ACPI init
    Jul 28 06:47:43 sentinel kernel: ACPI: bus type PNP registered
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xfed14000-0xfed17fff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jul 28 06:47:43 sentinel kernel: pnp 00:01: [dma 4]
    Jul 28 06:47:43 sentinel kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Jul 28 06:47:43 sentinel kernel: pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    Jul 28 06:47:43 sentinel kernel: system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:03: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    Jul 28 06:47:43 sentinel kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jul 28 06:47:43 sentinel kernel: system 00:05: [io 0x0680-0x069f] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:05: [io 0x0800-0x080f] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:05: [io 0x1000-0x107f] could not be reserved
    Jul 28 06:47:43 sentinel kernel: system 00:05: [io 0x1180-0x11bf] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:05: [io 0xfe00] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:05: [io 0xff00-0xff7f] has been reserved
    Jul 28 06:47:43 sentinel kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jul 28 06:47:43 sentinel kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jul 28 06:47:43 sentinel kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    Jul 28 06:47:43 sentinel kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0f13 (active)
    Jul 28 06:47:43 sentinel kernel: pnp: PnP ACPI: found 9 devices
    Jul 28 06:47:43 sentinel kernel: ACPI: bus type PNP unregistered
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.0: BAR 13: [io 0x1000-0x107f] has bogus alignment
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1f.3: BAR 0: assigned [mem 0x40000000-0x400000ff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc3ffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.0: bridge window [mem 0xcc000000-0xcdffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: PCI bridge to [bus 04]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: bridge window [mem 0xf0000000-0xf3ffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.1: bridge window [mem 0xfa000000-0xfbffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: PCI bridge to [bus 05]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: bridge window [mem 0xf4000000-0xf7ffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.2: bridge window [mem 0xfc000000-0xfdffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: PCI bridge to [bus 06]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: bridge window [mem 0xb8000000-0xbbffffff]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1c.3: bridge window [mem 0xc8000000-0xc9ffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1e.0: PCI bridge to [bus 08]
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:1e.0: bridge window [mem 0xf8200000-0xf82fffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc3ffffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:02: resource 2 [mem 0xcc000000-0xcdffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:04: resource 1 [mem 0xf0000000-0xf3ffffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:04: resource 2 [mem 0xfa000000-0xfbffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:05: resource 0 [io 0x4000-0x4fff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:05: resource 1 [mem 0xf4000000-0xf7ffffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:05: resource 2 [mem 0xfc000000-0xfdffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:06: resource 0 [io 0x5000-0x5fff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:06: resource 1 [mem 0xb8000000-0xbbffffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:06: resource 2 [mem 0xc8000000-0xc9ffffff 64bit pref]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:08: resource 1 [mem 0xf8200000-0xf82fffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:08: resource 4 [io 0x0000-0xffff]
    Jul 28 06:47:43 sentinel kernel: pci_bus 0000:08: resource 5 [mem 0x00000000-0xffffffff]
    Jul 28 06:47:43 sentinel kernel: NET: Registered protocol family 2
    Jul 28 06:47:43 sentinel kernel: TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    Jul 28 06:47:43 sentinel kernel: TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    Jul 28 06:47:43 sentinel kernel: TCP: Hash tables configured (established 8192 bind 8192)
    Jul 28 06:47:43 sentinel kernel: TCP: reno registered
    Jul 28 06:47:43 sentinel kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Jul 28 06:47:43 sentinel kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Jul 28 06:47:43 sentinel kernel: NET: Registered protocol family 1
    Jul 28 06:47:43 sentinel kernel: pci 0000:00:02.0: Boot video device
    Jul 28 06:47:43 sentinel kernel: PCI: CLS 64 bytes, default 64
    Jul 28 06:47:43 sentinel kernel: Unpacking initramfs...
    Jul 28 06:47:43 sentinel kernel: Freeing initrd memory: 3376K (f74b2000 - f77fe000)
    Jul 28 06:47:43 sentinel kernel: Simple Boot Flag at 0x37 set to 0x1
    Jul 28 06:47:43 sentinel kernel: apm: BIOS not found.
    Jul 28 06:47:43 sentinel kernel: Scanning for low memory corruption every 60 seconds
    Jul 28 06:47:43 sentinel kernel: futex hash table entries: 512 (order: 3, 32768 bytes)
    Jul 28 06:47:43 sentinel kernel: bounce pool size: 64 pages
    Jul 28 06:47:43 sentinel kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Jul 28 06:47:43 sentinel kernel: zbud: loaded
    Jul 28 06:47:43 sentinel kernel: VFS: Disk quotas dquot_6.5.2
    Jul 28 06:47:43 sentinel kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Jul 28 06:47:43 sentinel kernel: msgmni has been set to 1738
    Jul 28 06:47:43 sentinel kernel: Key type big_key registered
    Jul 28 06:47:43 sentinel kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jul 28 06:47:43 sentinel kernel: io scheduler noop registered
    Jul 28 06:47:43 sentinel kernel: io scheduler deadline registered
    Jul 28 06:47:43 sentinel kernel: io scheduler cfq registered (default)
    Jul 28 06:47:43 sentinel kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    Jul 28 06:47:43 sentinel kernel: pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    Jul 28 06:47:43 sentinel kernel: pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
    Jul 28 06:47:43 sentinel kernel: pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
    Jul 28 06:47:43 sentinel kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jul 28 06:47:43 sentinel kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jul 28 06:47:43 sentinel kernel: vesafb: mode is 1280x800x32, linelength=5120, pages=0
    Jul 28 06:47:43 sentinel kernel: vesafb: scrolling: redraw
    Jul 28 06:47:43 sentinel kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Jul 28 06:47:43 sentinel kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xf8080000, using 4032k, total 4032k
    Jul 28 06:47:43 sentinel kernel: Console: switching to colour frame buffer device 160x50
    Jul 28 06:47:43 sentinel kernel: fb0: VESA VGA frame buffer device
    Jul 28 06:47:43 sentinel kernel: intel_idle: does not run on family 6 model 15
    Jul 28 06:47:43 sentinel kernel: GHES: HEST is not enabled!
    Jul 28 06:47:43 sentinel kernel: isapnp: Scanning for PnP cards...
    Jul 28 06:47:43 sentinel kernel: isapnp: No Plug & Play device found
    Jul 28 06:47:43 sentinel kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jul 28 06:47:43 sentinel kernel: rtc_cmos 00:06: RTC can wake from S4
    Jul 28 06:47:43 sentinel kernel: rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    Jul 28 06:47:43 sentinel kernel: rtc_cmos 00:06: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Jul 28 06:47:43 sentinel kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Jul 28 06:47:43 sentinel kernel: TCP: cubic registered
    Jul 28 06:47:43 sentinel kernel: NET: Registered protocol family 10
    Jul 28 06:47:43 sentinel kernel: NET: Registered protocol family 17
    Jul 28 06:47:43 sentinel kernel: Using IPI No-Shortcut mode
    Jul 28 06:47:43 sentinel kernel: registered taskstats version 1
    Jul 28 06:47:43 sentinel kernel: Magic number: 6:931:256
    Jul 28 06:47:43 sentinel kernel: rtc_cmos 00:06: setting system clock to 2014-07-28 01:17:37 UTC (1406510257)
    Jul 28 06:47:43 sentinel kernel: PM: Hibernation image not present or could not be loaded.
    Jul 28 06:47:43 sentinel kernel: Freeing unused kernel memory: 568K (c160f000 - c169d000)
    Jul 28 06:47:43 sentinel kernel: Write protecting the kernel text: 4448k
    Jul 28 06:47:43 sentinel kernel: Write protecting the kernel read-only data: 1284k
    Jul 28 06:47:43 sentinel kernel: random: systemd-tmpfile urandom read with 0 bits of entropy available
    Jul 28 06:47:43 sentinel systemd-udevd[47]: starting version 215
    Jul 28 06:47:43 sentinel kernel: ACPI: bus type USB registered
    Jul 28 06:47:43 sentinel kernel: usbcore: registered new interface driver usbfs
    Jul 28 06:47:43 sentinel kernel: usbcore: registered new interface driver hub
    Jul 28 06:47:43 sentinel kernel: usbcore: registered new device driver usb
    Jul 28 06:47:43 sentinel kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jul 28 06:47:43 sentinel kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001820
    Jul 28 06:47:43 sentinel kernel: hub 1-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 1-0:1.0: 2 ports detected
    Jul 28 06:47:43 sentinel kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jul 28 06:47:43 sentinel kernel: ehci-pci: EHCI PCI platform driver
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001840
    Jul 28 06:47:43 sentinel kernel: SCSI subsystem initialized
    Jul 28 06:47:43 sentinel kernel: hub 2-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 2-0:1.0: 2 ports detected
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 3
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1a.7: debug port 1
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1a.7: irq 18, io mem 0xf8504000
    Jul 28 06:47:43 sentinel kernel: sdhci: Secure Digital Host Controller Interface driver
    Jul 28 06:47:43 sentinel kernel: sdhci: Copyright(c) Pierre Ossman
    Jul 28 06:47:43 sentinel kernel: sdhci-pci 0000:08:06.1: SDHCI controller found [1180:0822] (rev 22)
    Jul 28 06:47:43 sentinel kernel: sdhci-pci 0000:08:06.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 28 06:47:43 sentinel kernel: sdhci-pci 0000:08:06.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 28 06:47:43 sentinel kernel: mmc0: SDHCI controller on PCI [0000:08:06.1] using DMA
    Jul 28 06:47:43 sentinel kernel: libata version 3.00 loaded.
    Jul 28 06:47:43 sentinel kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jul 28 06:47:43 sentinel kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Jul 28 06:47:43 sentinel kernel: hub 3-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 3-0:1.0: 4 ports detected
    Jul 28 06:47:43 sentinel kernel: hub 1-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 1-0:1.0: 2 ports detected
    Jul 28 06:47:43 sentinel kernel: hub 2-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 2-0:1.0: 2 ports detected
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 4
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1d.7: debug port 1
    Jul 28 06:47:43 sentinel kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xf8504400
    Jul 28 06:47:43 sentinel kernel: firewire_ohci 0000:08:06.0: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
    Jul 28 06:47:43 sentinel kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Jul 28 06:47:43 sentinel kernel: hub 4-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 4-0:1.0: 6 ports detected
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
    Jul 28 06:47:43 sentinel kernel: hub 5-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 5-0:1.0: 2 ports detected
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
    Jul 28 06:47:43 sentinel kernel: hub 6-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 6-0:1.0: 2 ports detected
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
    Jul 28 06:47:43 sentinel kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
    Jul 28 06:47:43 sentinel kernel: hub 7-0:1.0: USB hub found
    Jul 28 06:47:43 sentinel kernel: hub 7-0:1.0: 2 ports detected
    Jul 28 06:47:43 sentinel kernel: ata_piix 0000:00:1f.2: version 2.13
    Jul 28 06:47:43 sentinel kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ]
    Jul 28 06:47:43 sentinel kernel: scsi0 : ata_piix
    Jul 28 06:47:43 sentinel kernel: scsi1 : ata_piix
    Jul 28 06:47:43 sentinel kernel: ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x18e0 irq 14
    Jul 28 06:47:43 sentinel kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x18e8 irq 15
    Jul 28 06:47:43 sentinel kernel: usb 4-4: new high-speed USB device number 2 using ehci-pci
    Jul 28 06:47:43 sentinel kernel: ata2.00: ATAPI: MATSHITADVD-RAM UJ-85JS, FYX4, max UDMA/66
    Jul 28 06:47:43 sentinel kernel: ata1.00: ATA-8: FUJITSU MHW2120BH, 00000012, max UDMA/100
    Jul 28 06:47:43 sentinel kernel: ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
    Jul 28 06:47:43 sentinel kernel: ata2.00: configured for UDMA/66
    Jul 28 06:47:43 sentinel kernel: ata1.00: configured for UDMA/100
    Jul 28 06:47:43 sentinel kernel: scsi 0:0:0:0: Direct-Access ATA FUJITSU MHW2120B 0000 PQ: 0 ANSI: 5
    Jul 28 06:47:43 sentinel kernel: scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ-85JS FYX4 PQ: 0 ANSI: 5
    Jul 28 06:47:43 sentinel kernel: sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    Jul 28 06:47:43 sentinel kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jul 28 06:47:43 sentinel kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jul 28 06:47:43 sentinel kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jul 28 06:47:43 sentinel kernel: sda: sda1 sda2 sda3 sda4
    Jul 28 06:47:43 sentinel kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jul 28 06:47:43 sentinel kernel: sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
    Jul 28 06:47:43 sentinel kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jul 28 06:47:43 sentinel kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jul 28 06:47:43 sentinel kernel: tsc: Refined TSC clocksource calibration: 1462.999 MHz
    Jul 28 06:47:43 sentinel kernel: firewire_core 0000:08:06.0: created device fw0: GUID 00023f79af40a4d3, S400
    Jul 28 06:47:43 sentinel kernel: Switched to clocksource tsc
    Jul 28 06:47:43 sentinel kernel: random: nonblocking pool is initialized
    Jul 28 06:47:43 sentinel kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    Jul 28 06:47:43 sentinel kernel: EXT4-fs (sda2): re-mounted. Opts: data=ordered
    Jul 28 06:47:43 sentinel systemd-journal[118]: Journal started
    -- Subject: The Journal has been started
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- The system journal process has been starting up, opened the journal
    -- files for writing and is now ready to process requests.
    Jul 28 06:47:43 sentinel systemd-udevd[141]: starting version 215
    Jul 28 06:47:44 sentinel kernel: Monitor-Mwait will be used to enter C-1 state
    Jul 28 06:47:44 sentinel kernel: Monitor-Mwait will be used to enter C-2 state
    Jul 28 06:47:44 sentinel kernel: Monitor-Mwait will be used to enter C-3 state
    Jul 28 06:47:44 sentinel kernel: tsc: Marking TSC unstable due to TSC halts in idle
    Jul 28 06:47:44 sentinel kernel: ACPI: acpi_idle registered with cpuidle
    Jul 28 06:47:44 sentinel kernel: Switched to clocksource hpet
    Jul 28 06:47:44 sentinel kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    Jul 28 06:47:44 sentinel kernel: ACPI: Lid Switch [LID0]
    Jul 28 06:47:44 sentinel kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    Jul 28 06:47:44 sentinel kernel: ACPI: Power Button [PWRB]
    Jul 28 06:47:44 sentinel kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
    Jul 28 06:47:44 sentinel kernel: ACPI: Sleep Button [SLPB]
    Jul 28 06:47:44 sentinel kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    Jul 28 06:47:44 sentinel kernel: ACPI: Power Button [PWRF]
    Jul 28 06:47:44 sentinel kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Jul 28 06:47:44 sentinel kernel: wmi: Mapper loaded
    Jul 28 06:47:44 sentinel kernel: ACPI: Battery Slot [BAT1] (battery present)
    Jul 28 06:47:44 sentinel kernel: ACPI: AC Adapter [ACAD] (on-line)
    Jul 28 06:47:44 sentinel kernel: Linux agpgart interface v0.103
    Jul 28 06:47:44 sentinel kernel: ACPI Warning: SystemIO range 0x00001028-0x0000102f conflicts with OpRegion 0x00001000-0x0000107f (\PMIO) (20131218/utaddress-258)
    Jul 28 06:47:44 sentinel kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jul 28 06:47:44 sentinel kernel: ACPI Warning: SystemIO range 0x000011b0-0x000011bf conflicts with OpRegion 0x00001180-0x000011bb (\GPIO) (20131218/utaddress-258)
    Jul 28 06:47:44 sentinel kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jul 28 06:47:44 sentinel kernel: ACPI Warning: SystemIO range 0x00001180-0x000011af conflicts with OpRegion 0x00001180-0x000011bb (\GPIO) (20131218/utaddress-258)
    Jul 28 06:47:44 sentinel kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jul 28 06:47:44 sentinel kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Jul 28 06:47:45 sentinel kernel: agpgart-intel 0000:00:00.0: Intel 965GM Chipset
    Jul 28 06:47:45 sentinel kernel: agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    Jul 28 06:47:45 sentinel kernel: agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    Jul 28 06:47:45 sentinel kernel: agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    Jul 28 06:47:45 sentinel kernel: ACPI: Invalid active0 threshold
    Jul 28 06:47:45 sentinel kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Jul 28 06:47:45 sentinel kernel: ACPI: Thermal Zone [TZ00] (44 C)
    Jul 28 06:47:45 sentinel kernel: ACPI Warning: SystemIO range 0x00001c00-0x00001c1f conflicts with OpRegion 0x00001c00-0x00001c0f (\_SB_.PCI0.SBUS.SMBI) (20131218/utaddress-258)
    Jul 28 06:47:45 sentinel kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jul 28 06:47:45 sentinel kernel: [drm] Initialized drm 1.1.0 20060810
    Jul 28 06:47:45 sentinel kernel: ideapad_laptop: timeout in read_ec_cmd
    Jul 28 06:47:45 sentinel kernel: input: Ideapad extra buttons as /devices/platform/VPC2004:00/input/input6
    Jul 28 06:47:45 sentinel kernel: cfg80211: Calling CRDA to update world regulatory domain
    Jul 28 06:47:45 sentinel kernel: pps_core: LinuxPPS API ver. 1 registered
    Jul 28 06:47:45 sentinel kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    Jul 28 06:47:45 sentinel kernel: r852: driver loaded successfully
    Jul 28 06:47:45 sentinel kernel: PTP clock support registered
    Jul 28 06:47:45 sentinel kernel: [drm] Memory usable by graphics device = 512M
    Jul 28 06:47:45 sentinel kernel: checking generic (d0000000 3f0000) vs hw (d0000000 10000000)
    Jul 28 06:47:45 sentinel kernel: fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    Jul 28 06:47:45 sentinel kernel: Console: switching to colour dummy device 80x25
    Jul 28 06:47:45 sentinel kernel: i915 0000:00:02.0: irq 44 for MSI/MSI-X
    Jul 28 06:47:45 sentinel kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Jul 28 06:47:45 sentinel kernel: [drm] Driver supports precise vblank timestamp query.
    Jul 28 06:47:45 sentinel kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    Jul 28 06:47:45 sentinel kernel: [drm] initialized overlay support
    Jul 28 06:47:46 sentinel kernel: tg3.c:v3.136 (Jan 03, 2014)
    Jul 28 06:47:46 sentinel kernel: tg3 0000:06:00.0 eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:1b:38:98:bc:f2
    Jul 28 06:47:46 sentinel kernel: tg3 0000:06:00.0 eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0])
    Jul 28 06:47:46 sentinel kernel: tg3 0000:06:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    Jul 28 06:47:46 sentinel kernel: tg3 0000:06:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    Jul 28 06:47:46 sentinel kernel: iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
    Jul 28 06:47:46 sentinel kernel: iwl3945: Copyright(c) 2003-2011 Intel Corporation
    Jul 28 06:47:46 sentinel kernel: iwl3945 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
    Jul 28 06:47:46 sentinel kernel: snd_hda_intel: unknown parameter 'vid' ignored
    Jul 28 06:47:46 sentinel kernel: snd_hda_intel: unknown parameter 'pid' ignored
    Jul 28 06:47:46 sentinel kernel: fbcon: inteldrmfb (fb0) is primary device
    Jul 28 06:47:46 sentinel kernel: iwl3945 0000:04:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
    Jul 28 06:47:46 sentinel kernel: iwl3945 0000:04:00.0: Detected Intel Wireless WiFi Link 3945ABG
    Jul 28 06:47:46 sentinel kernel: iwl3945 0000:04:00.0: irq 45 for MSI/MSI-X
    Jul 28 06:47:46 sentinel kernel: r592: driver successfully loaded
    Jul 28 06:47:46 sentinel kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
    Jul 28 06:47:46 sentinel kernel: media: Linux media interface: v0.10
    Jul 28 06:47:46 sentinel kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
    Jul 28 06:47:46 sentinel kernel: microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa1
    Jul 28 06:47:46 sentinel kernel: microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa1
    Jul 28 06:47:46 sentinel kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Jul 28 06:47:46 sentinel kernel: Adding 2000088k swap on /dev/sda3. Priority:-1 extents:1 across:2000088k FS
    Jul 28 06:47:46 sentinel kernel: iTCO_vendor_support: vendor-support=0
    Jul 28 06:47:46 sentinel systemd-udevd[152]: renamed network interface wlan0 to wlp4s0
    Jul 28 06:47:46 sentinel kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    Jul 28 06:47:46 sentinel kernel: iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x1060)
    Jul 28 06:47:46 sentinel kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Jul 28 06:47:46 sentinel kernel: Console: switching to colour frame buffer device 160x50
    Jul 28 06:47:46 sentinel kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    Jul 28 06:47:46 sentinel kernel: i915 0000:00:02.0: registered panic notifier
    Jul 28 06:47:46 sentinel kernel: Linux video capture interface: v2.00
    Jul 28 06:47:46 sentinel systemd-udevd[148]: renamed network interface eth0 to enp6s0
    Jul 28 06:47:46 sentinel kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    Jul 28 06:47:46 sentinel kernel: ideapad_laptop: timeout in write_ec_cmd
    Jul 28 06:47:46 sentinel kernel: acpi device:09: registered as cooling_device2
    Jul 28 06:47:46 sentinel kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input9
    Jul 28 06:47:46 sentinel kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Jul 28 06:47:46 sentinel kernel: snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    Jul 28 06:47:47 sentinel kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input10
    Jul 28 06:47:47 sentinel kernel: uvcvideo: Found UVC 1.00 device USB 2.0 Camera (04f2:b008)
    Jul 28 06:47:47 sentinel kernel: input: USB 2.0 Camera as /devices/pci0000:00/0000:00:1d.7/usb4/4-4/4-4:1.0/input/input11
    Jul 28 06:47:47 sentinel kernel: usbcore: registered new interface driver uvcvideo
    Jul 28 06:47:47 sentinel kernel: USB Video Class driver (1.1.1)
    Jul 28 06:47:47 sentinel kernel: input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    Jul 28 06:47:47 sentinel kernel: input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    Jul 28 06:47:47 sentinel systemd-fsck[178]: /dev/sda4: recovering journal
    Jul 28 06:47:47 sentinel kernel: input: ALPS PS/2 Device as /devices/platform/i8042/serio1/input/input12
    Jul 28 06:47:47 sentinel kernel: input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input8
    Jul 28 06:47:47 sentinel kernel: mousedev: PS/2 mouse device common for all mice
    Jul 28 06:47:47 sentinel kernel: usb 1-2: new full-speed USB device number 2 using uhci_hcd
    Jul 28 06:47:48 sentinel systemd-fsck[178]: /dev/sda4 contains a file system with errors, check forced.
    Jul 28 06:47:48 sentinel kernel: Bluetooth: Core ver 2.18
    Jul 28 06:47:48 sentinel kernel: NET: Registered protocol family 31
    Jul 28 06:47:48 sentinel kernel: Bluetooth: HCI device and connection manager initialized
    Jul 28 06:47:48 sentinel kernel: Bluetooth: HCI socket layer initialized
    Jul 28 06:47:48 sentinel kernel: Bluetooth: L2CAP socket layer initialized
    Jul 28 06:47:48 sentinel kernel: Bluetooth: SCO socket layer initialized
    Jul 28 06:47:48 sentinel kernel: usbcore: registered new interface driver btusb
    Jul 28 06:47:48 sentinel kernel: hda-codec: out of range cmd 1:a:100:fffffffe
    Jul 28 06:47:50 sentinel systemd-fsck[178]: /dev/sda4: Inode 2753367, i_blocks is 1552, should be 1536. FIXED.
    Jul 28 06:47:50 sentinel systemd-fsck[178]: /dev/sda4: Inodes that were part of a corrupted orphan linked list found.
    Jul 28 06:47:50 sentinel systemd-fsck[178]: /dev/sda4: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
    Jul 28 06:47:50 sentinel systemd-fsck[178]: (i.e., without -a or -p options)
    Jul 28 06:47:50 sentinel systemd-fsck[178]: fsck failed with error code 4.
    Jul 28 06:47:50 sentinel systemd-fsck[178]: Running request emergency.target/start/replace
    Jul 28 06:47:50 sentinel kernel: EXT4-fs (sda4): warning: mounting fs with errors, running e2fsck is recommended
    Jul 28 06:47:50 sentinel kernel: EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
    Jul 28 06:47:51 sentinel systemd-journal[118]: Permanent journal is using 520.1M (max allowed 2.8G, trying to leave 354.1M free of 18.5G available → current limit 2.8G).
    Jul 28 06:47:51 sentinel systemd-journal[118]: Time spent on flushing to /var is 509.727ms for 733 entries.
    Jul 28 06:47:50 sentinel systemd[203]: Failed at step EXEC spawning /bin/plymouth: No such file or directory
    -- Subject: Process /bin/plymouth could not be executed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- The process /bin/plymouth could not be executed and failed.
    -- The error number returned while executing this process is 2.
    Jul 28 06:48:05 sentinel dbus[241]: [system] Successfully activated service 'org.freedesktop.systemd1'
    Jul 28 06:48:05 sentinel systemd-logind[240]: New seat seat0.
    -- Subject: A new seat seat0 is now available
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
    -- A new seat seat0 has been configured and is now available.
    Jul 28 06:48:05 sentinel systemd-logind[240]: Watching system buttons on /dev/input/event4 (Power Button)
    Jul 28 06:48:05 sentinel systemd-logind[240]: Watching system buttons on /dev/input/event7 (Video Bus)
    Jul 28 06:48:05 sentinel systemd-logind[240]: Watching system buttons on /dev/input/event2 (Power Button)
    Jul 28 06:48:05 sentinel systemd-logind[240]: Watching system buttons on /dev/input/event1 (Lid Switch)
    Jul 28 06:48:05 sentinel systemd-logind[240]: Watching system buttons on /

    I'm not a hardware person, but I doubt it can be repaired.
    You might put it in a USB enclosure and try to access the data from another computer. Some have had luck with this treatment.
    -Jerry

  • Trubleshoot after full update

    hi,
    after full update and reboot i got  to emergency mode.
    journalctl -xb
    -- Logs begin at Mon 2014-03-03 11:19:31 IST, end at Sun 2014-06-08 01:13:42 IDT. --
    Jun 08 01:12:02 up systemd-journal[135]: Runtime journal is using 8.0M (max allowed 100.9M, trying to leave 151.3M free of 1001.1M available → current limit 100.9M).
    Jun 08 01:12:02 up systemd-journal[135]: Runtime journal is using 8.0M (max allowed 100.9M, trying to leave 151.3M free of 1001.1M available → current limit 100.9M).
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys cpuset
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys cpu
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys cpuacct
    Jun 08 01:12:02 up kernel: Linux version 3.14.5-1-ARCH (nobody@var-lib-archbuild-testing-i686-tobias) (gcc version 4.9.0 20140521 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Jun 1 07:38:50 CEST 2014
    Jun 08 01:12:02 up kernel: e820: BIOS-provided physical RAM map:
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007fedffff] usable
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x000000007fee0000-0x000000007fee2fff] ACPI NVS
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x000000007fee3000-0x000000007feeffff] ACPI data
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x000000007fef0000-0x000000007fefffff] reserved
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    Jun 08 01:12:02 up kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
    Jun 08 01:12:02 up kernel: Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    Jun 08 01:12:02 up kernel: SMBIOS 2.4 present.
    Jun 08 01:12:02 up kernel: DMI: System manufacturer System Product Name/M2N-E, BIOS ASUS M2N-E ACPI BIOS Revision 1401 04/01/2008
    Jun 08 01:12:02 up kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Jun 08 01:12:02 up kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jun 08 01:12:02 up kernel: e820: last_pfn = 0x7fee0 max_arch_pfn = 0x100000
    Jun 08 01:12:02 up kernel: MTRR default type: uncachable
    Jun 08 01:12:02 up kernel: MTRR fixed ranges enabled:
    Jun 08 01:12:02 up kernel: 00000-9FFFF write-back
    Jun 08 01:12:02 up kernel: A0000-BFFFF uncachable
    Jun 08 01:12:02 up kernel: C0000-C7FFF write-protect
    Jun 08 01:12:02 up kernel: C8000-FFFFF uncachable
    Jun 08 01:12:02 up kernel: MTRR variable ranges enabled:
    Jun 08 01:12:02 up kernel: 0 base 0000000000 mask FF80000000 write-back
    Jun 08 01:12:02 up kernel: 1 base 007FF00000 mask FFFFF00000 uncachable
    Jun 08 01:12:02 up kernel: 2 disabled
    Jun 08 01:12:02 up kernel: 3 disabled
    Jun 08 01:12:02 up kernel: 4 disabled
    Jun 08 01:12:02 up kernel: 5 disabled
    Jun 08 01:12:02 up kernel: 6 disabled
    Jun 08 01:12:02 up kernel: 7 disabled
    Jun 08 01:12:02 up kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jun 08 01:12:02 up kernel: found SMP MP-table at [mem 0x000f5a10-0x000f5a1f] mapped at [c00f5a10]
    Jun 08 01:12:02 up kernel: Scanning 1 areas for low memory corruption
    Jun 08 01:12:02 up kernel: initial memory mapped: [mem 0x00000000-0x01bfffff]
    Jun 08 01:12:02 up kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Jun 08 01:12:02 up kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jun 08 01:12:02 up kernel: [mem 0x00000000-0x000fffff] page 4k
    Jun 08 01:12:02 up kernel: init_memory_mapping: [mem 0x37000000-0x373fffff]
    Jun 08 01:12:02 up kernel: [mem 0x37000000-0x373fffff] page 2M
    Jun 08 01:12:02 up kernel: init_memory_mapping: [mem 0x30000000-0x36ffffff]
    Jun 08 01:12:02 up kernel: [mem 0x30000000-0x36ffffff] page 2M
    Jun 08 01:12:02 up kernel: init_memory_mapping: [mem 0x00100000-0x2fffffff]
    Jun 08 01:12:02 up kernel: [mem 0x00100000-0x003fffff] page 4k
    Jun 08 01:12:02 up kernel: [mem 0x00400000-0x2fffffff] page 2M
    Jun 08 01:12:02 up kernel: init_memory_mapping: [mem 0x37400000-0x377fdfff]
    Jun 08 01:12:02 up kernel: [mem 0x37400000-0x377fdfff] page 4k
    Jun 08 01:12:02 up kernel: BRK [0x01798000, 0x01798fff] PGTABLE
    Jun 08 01:12:02 up kernel: RAMDISK: [mem 0x7fbaf000-0x7fedefff]
    Jun 08 01:12:02 up kernel: Allocated new RAMDISK: [mem 0x374ce000-0x377fd275]
    Jun 08 01:12:02 up kernel: Move RAMDISK from [mem 0x7fbaf000-0x7fede275] to [mem 0x374ce000-0x377fd275]
    Jun 08 01:12:02 up kernel: ACPI: RSDP 000f77a0 000024 (v02 Nvidia)
    Jun 08 01:12:02 up kernel: ACPI: XSDT 7fee3100 00004C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
    Jun 08 01:12:02 up kernel: ACPI: FACP 7feeac80 0000F4 (v03 Nvidia ASUSACPI 42302E31 AWRD 00000000)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aEventBlock: 32/8 (20131218/tbfadt-603)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/8 (20131218/tbfadt-603)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/PmTimerBlock: 32/8 (20131218/tbfadt-603)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 64/8 (20131218/tbfadt-603)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe1Block: 128/8 (20131218/tbfadt-603)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aEventBlock: 8, using default 32 (20131218/tbfadt-684)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 8, using default 16 (20131218/tbfadt-684)
    Jun 08 01:12:02 up kernel: ACPI BIOS Warning (bug): Invalid length for FADT/PmTimerBlock: 8, using default 32 (20131218/tbfadt-684)
    Jun 08 01:12:02 up kernel: ACPI: DSDT 7fee3280 007985 (v01 NVIDIA AWRDACPI 00001000 MSFT 03000000)
    Jun 08 01:12:02 up kernel: ACPI: FACS 7fee0000 000040
    Jun 08 01:12:02 up kernel: ACPI: SSDT 7feeaec0 0001C4 (v01 PTLTD POWERNOW 00000001 LTP 00000001)
    Jun 08 01:12:02 up kernel: ACPI: HPET 7feeb100 000038 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000098)
    Jun 08 01:12:02 up kernel: ACPI: MCFG 7feeb180 00003C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
    Jun 08 01:12:02 up kernel: ACPI: APIC 7feeadc0 000098 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
    Jun 08 01:12:02 up kernel: ACPI: Local APIC address 0xfee00000
    Jun 08 01:12:02 up kernel: 1158MB HIGHMEM available.
    Jun 08 01:12:02 up kernel: 887MB LOWMEM available.
    Jun 08 01:12:02 up kernel: mapped low ram: 0 - 377fe000
    Jun 08 01:12:02 up kernel: low ram: 0 - 377fe000
    Jun 08 01:12:02 up kernel: BRK [0x01799000, 0x01799fff] PGTABLE
    Jun 08 01:12:02 up kernel: Zone ranges:
    Jun 08 01:12:02 up kernel: DMA [mem 0x00001000-0x00ffffff]
    Jun 08 01:12:02 up kernel: Normal [mem 0x01000000-0x377fdfff]
    Jun 08 01:12:02 up kernel: HighMem [mem 0x377fe000-0x7fedffff]
    Jun 08 01:12:02 up kernel: Movable zone start for each node
    Jun 08 01:12:02 up kernel: Early memory node ranges
    Jun 08 01:12:02 up kernel: node 0: [mem 0x00001000-0x0009efff]
    Jun 08 01:12:02 up kernel: node 0: [mem 0x00100000-0x7fedffff]
    Jun 08 01:12:02 up kernel: On node 0 totalpages: 523902
    Jun 08 01:12:02 up kernel: free_area_init_node: node 0, pgdat c15fc640, node_mem_map f64ce020
    Jun 08 01:12:02 up kernel: DMA zone: 32 pages used for memmap
    Jun 08 01:12:02 up kernel: DMA zone: 0 pages reserved
    Jun 08 01:12:02 up kernel: DMA zone: 3998 pages, LIFO batch:0
    Jun 08 01:12:02 up kernel: Normal zone: 1744 pages used for memmap
    Jun 08 01:12:02 up kernel: Normal zone: 223230 pages, LIFO batch:31
    Jun 08 01:12:02 up kernel: HighMem zone: 2318 pages used for memmap
    Jun 08 01:12:02 up kernel: HighMem zone: 296674 pages, LIFO batch:31
    Jun 08 01:12:02 up kernel: Using APIC driver default
    Jun 08 01:12:02 up kernel: Detected use of extended apic ids on hypertransport bus
    Jun 08 01:12:02 up kernel: ACPI: PM-Timer IO Port: 0x1008
    Jun 08 01:12:02 up kernel: ACPI: Local APIC address 0xfee00000
    Jun 08 01:12:02 up kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jun 08 01:12:02 up kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jun 08 01:12:02 up kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    Jun 08 01:12:02 up kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    Jun 08 01:12:02 up kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Jun 08 01:12:02 up kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jun 08 01:12:02 up kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Jun 08 01:12:02 up kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Jun 08 01:12:02 up kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Jun 08 01:12:02 up kernel: IOAPIC[0]: apic_id 4, version 17, address 0xfec00000, GSI 0-23
    Jun 08 01:12:02 up kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jun 08 01:12:02 up kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jun 08 01:12:02 up kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    Jun 08 01:12:02 up kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    Jun 08 01:12:02 up kernel: ACPI: IRQ0 used by override.
    Jun 08 01:12:02 up kernel: ACPI: IRQ2 used by override.
    Jun 08 01:12:02 up kernel: ACPI: IRQ9 used by override.
    Jun 08 01:12:02 up kernel: ACPI: IRQ14 used by override.
    Jun 08 01:12:02 up kernel: ACPI: IRQ15 used by override.
    Jun 08 01:12:02 up kernel: Using ACPI (MADT) for SMP configuration information
    Jun 08 01:12:02 up kernel: ACPI: HPET id: 0x10de8201 base: 0xfefff000
    Jun 08 01:12:02 up kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    Jun 08 01:12:02 up kernel: nr_irqs_gsi: 40
    Jun 08 01:12:02 up kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Jun 08 01:12:02 up kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
    Jun 08 01:12:02 up kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
    Jun 08 01:12:02 up kernel: e820: [mem 0x7ff00000-0xefffffff] available for PCI devices
    Jun 08 01:12:02 up kernel: Booting paravirtualized kernel on bare hardware
    Jun 08 01:12:02 up kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
    Jun 08 01:12:02 up kernel: PERCPU: Embedded 14 pages/cpu @f648a000 s33792 r0 d23552 u57344
    Jun 08 01:12:02 up kernel: pcpu-alloc: s33792 r0 d23552 u57344 alloc=14*4096
    Jun 08 01:12:02 up kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    Jun 08 01:12:02 up kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 522126
    Jun 08 01:12:02 up kernel: Kernel command line: root=/dev/sda5 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Jun 08 01:12:02 up kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Jun 08 01:12:02 up kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Jun 08 01:12:02 up kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Jun 08 01:12:02 up kernel: Initializing CPU#0
    Jun 08 01:12:02 up kernel: allocated 4191992 bytes of page_cgroup
    Jun 08 01:12:02 up kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jun 08 01:12:02 up kernel: Initializing HighMem for node 0 (000377fe:0007fee0)
    Jun 08 01:12:02 up kernel: Initializing Movable for node 0 (00000000:00000000)
    Jun 08 01:12:02 up kernel: Memory: 2062936K/2095608K available (4445K kernel code, 470K rwdata, 1280K rodata, 568K init, 956K bss, 32672K reserved, 1186696K highmem)
    Jun 08 01:12:02 up kernel: virtual kernel memory layout:
    fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc160f000 - 0xc169d000 ( 568 kB)
    .data : 0xc1457b12 - 0xc160ebc0 (1756 kB)
    .text : 0xc1000000 - 0xc1457b12 (4446 kB)
    Jun 08 01:12:02 up kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Jun 08 01:12:02 up kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Jun 08 01:12:02 up kernel: Preemptible hierarchical RCU implementation.
    Jun 08 01:12:02 up kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jun 08 01:12:02 up kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jun 08 01:12:02 up kernel: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
    Jun 08 01:12:02 up kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    Jun 08 01:12:02 up kernel: NR_IRQS:2304 nr_irqs:712 16
    Jun 08 01:12:02 up kernel: CPU 0 irqstacks, hard=f5808000 soft=f580a000
    Jun 08 01:12:02 up kernel: spurious 8259A interrupt: IRQ7.
    Jun 08 01:12:02 up kernel: Console: colour VGA+ 80x25
    Jun 08 01:12:02 up kernel: console [tty0] enabled
    Jun 08 01:12:02 up kernel: hpet clockevent registered
    Jun 08 01:12:02 up kernel: tsc: Fast TSC calibration using PIT
    Jun 08 01:12:02 up kernel: tsc: Detected 2009.051 MHz processor
    Jun 08 01:12:02 up kernel: tsc: Marking TSC unstable due to TSCs unsynchronized
    Jun 08 01:12:02 up kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4019.52 BogoMIPS (lpj=6696836)
    Jun 08 01:12:02 up kernel: pid_max: default: 32768 minimum: 301
    Jun 08 01:12:02 up kernel: ACPI: Core revision 20131218
    Jun 08 01:12:02 up kernel: ACPI: All ACPI Tables successfully acquired
    Jun 08 01:12:02 up kernel: Security Framework initialized
    Jun 08 01:12:02 up kernel: Yama: becoming mindful.
    Jun 08 01:12:02 up kernel: Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    Jun 08 01:12:02 up kernel: Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys memory
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys devices
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys freezer
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys net_cls
    Jun 08 01:12:02 up kernel: Initializing cgroup subsys blkio
    Jun 08 01:12:02 up kernel: CPU: Physical Processor ID: 0
    Jun 08 01:12:02 up kernel: CPU: Processor Core ID: 0
    Jun 08 01:12:02 up kernel: mce: CPU supports 5 MCE banks
    Jun 08 01:12:02 up kernel: LVT offset 0 assigned for vector 0xf9
    Jun 08 01:12:02 up kernel: process: using AMD E400 aware idle routine
    Jun 08 01:12:02 up kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
    Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
    tlb_flushall_shift: 6
    Jun 08 01:12:02 up kernel: Freeing SMP alternatives memory: 16K (c169d000 - c16a1000)
    Jun 08 01:12:02 up kernel: ftrace: allocating 18915 entries in 37 pages
    Jun 08 01:12:02 up kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Jun 08 01:12:02 up kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jun 08 01:12:02 up kernel: smpboot: CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (fam: 0f, model: 4b, stepping: 02)
    Jun 08 01:12:02 up kernel: Performance Events: AMD PMU driver.
    Jun 08 01:12:02 up kernel: ... version: 0
    Jun 08 01:12:02 up kernel: ... bit width: 48
    Jun 08 01:12:02 up kernel: ... generic registers: 4
    Jun 08 01:12:02 up kernel: ... value mask: 0000ffffffffffff
    Jun 08 01:12:02 up kernel: ... max period: 00007fffffffffff
    Jun 08 01:12:02 up kernel: ... fixed-purpose events: 0
    Jun 08 01:12:02 up kernel: ... event mask: 000000000000000f
    Jun 08 01:12:02 up kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jun 08 01:12:02 up kernel: CPU 1 irqstacks, hard=f58d8000 soft=f58da000
    Jun 08 01:12:02 up kernel: x86: Booting SMP configuration:
    Jun 08 01:12:02 up kernel: .... node #0, CPUs: #1
    Jun 08 01:12:02 up kernel: Initializing CPU#1
    Jun 08 01:12:02 up kernel: x86: Booted up 1 node, 2 CPUs
    Jun 08 01:12:02 up kernel: smpboot: Total of 2 processors activated (8039.48 BogoMIPS)
    Jun 08 01:12:02 up kernel: devtmpfs: initialized
    Jun 08 01:12:02 up kernel: PM: Registering ACPI NVS region [mem 0x7fee0000-0x7fee2fff] (12288 bytes)
    Jun 08 01:12:02 up kernel: pinctrl core: initialized pinctrl subsystem
    Jun 08 01:12:02 up kernel: RTC time: 1:11:55, date: 06/08/14
    Jun 08 01:12:02 up kernel: NET: Registered protocol family 16
    Jun 08 01:12:02 up kernel: cpuidle: using governor ladder
    Jun 08 01:12:02 up kernel: cpuidle: using governor menu
    Jun 08 01:12:02 up kernel: node 0 link 0: io port [a000, ffff]
    Jun 08 01:12:02 up kernel: TOM: 0000000080000000 aka 2048M
    Jun 08 01:12:02 up kernel: node 0 link 0: mmio [a0000, bffff]
    Jun 08 01:12:02 up kernel: node 0 link 0: mmio [80000000, efffffff]
    Jun 08 01:12:02 up kernel: node 0 link 0: mmio [f4000000, fe02ffff]
    Jun 08 01:12:02 up kernel: node 0 link 0: mmio [f0000000, f02fffff]
    Jun 08 01:12:02 up kernel: bus: [bus 00-02] on node 0 link 0
    Jun 08 01:12:02 up kernel: bus: 00 [io 0x0000-0xffff]
    Jun 08 01:12:02 up kernel: bus: 00 [mem 0x000a0000-0x000bffff]
    Jun 08 01:12:02 up kernel: bus: 00 [mem 0x80000000-0xf3ffffff]
    Jun 08 01:12:02 up kernel: bus: 00 [mem 0xf4000000-0xffffffff]
    Jun 08 01:12:02 up kernel: ACPI: bus type PCI registered
    Jun 08 01:12:02 up kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jun 08 01:12:02 up kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    Jun 08 01:12:02 up kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    Jun 08 01:12:02 up kernel: PCI: Using MMCONFIG for extended config space
    Jun 08 01:12:02 up kernel: PCI: Using configuration type 1 for base access
    Jun 08 01:12:02 up kernel: bio: create slab <bio-0> at 0
    Jun 08 01:12:02 up kernel: ACPI: Added _OSI(Module Device)
    Jun 08 01:12:02 up kernel: ACPI: Added _OSI(Processor Device)
    Jun 08 01:12:02 up kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jun 08 01:12:02 up kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jun 08 01:12:02 up kernel: ACPI: Interpreter enabled
    Jun 08 01:12:02 up kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
    Jun 08 01:12:02 up kernel: ACPI: (supports S0 S1 S3 S4 S5)
    Jun 08 01:12:02 up kernel: ACPI: Using IOAPIC for interrupt routing
    Jun 08 01:12:02 up kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jun 08 01:12:02 up kernel: ACPI: No dock devices found.
    Jun 08 01:12:02 up kernel: ACPI: \_PR_.C002: failed to get CPU APIC ID.
    Jun 08 01:12:02 up kernel: ACPI: \_PR_.C003: failed to get CPU APIC ID.
    Jun 08 01:12:02 up kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jun 08 01:12:02 up kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Jun 08 01:12:02 up kernel: acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Jun 08 01:12:02 up kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    Jun 08 01:12:02 up kernel: PCI host bridge to bus 0000:00
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: root bus resource [mem 0x7ff00000-0xfebfffff]
    Jun 08 01:12:02 up kernel: pci 0000:00:00.0: [10de:0369] type 00 class 0x050000
    Jun 08 01:12:02 up kernel: pci 0000:00:01.0: [10de:0360] type 00 class 0x060100
    Jun 08 01:12:02 up kernel: pci 0000:00:01.1: [10de:0368] type 00 class 0x0c0500
    Jun 08 01:12:02 up kernel: pci 0000:00:01.1: reg 0x10: [io 0xfc00-0xfc3f]
    Jun 08 01:12:02 up kernel: pci 0000:00:01.1: reg 0x20: [io 0x1c00-0x1c3f]
    Jun 08 01:12:02 up kernel: pci 0000:00:01.1: reg 0x24: [io 0x1c40-0x1c7f]
    Jun 08 01:12:02 up kernel: pci 0000:00:01.1: PME# supported from D3hot D3cold
    Jun 08 01:12:02 up kernel: pci 0000:00:02.0: [10de:036c] type 00 class 0x0c0310
    Jun 08 01:12:02 up kernel: pci 0000:00:02.0: reg 0x10: [mem 0xfe02f000-0xfe02ffff]
    Jun 08 01:12:02 up kernel: pci 0000:00:02.0: supports D1 D2
    Jun 08 01:12:02 up kernel: pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jun 08 01:12:02 up kernel: pci 0000:00:02.0: System wakeup disabled by ACPI
    Jun 08 01:12:02 up kernel: pci 0000:00:02.1: [10de:036d] type 00 class 0x0c0320
    Jun 08 01:12:02 up kernel: pci 0000:00:02.1: reg 0x10: [mem 0xfe02e000-0xfe02e0ff]
    Jun 08 01:12:02 up kernel: pci 0000:00:02.1: supports D1 D2
    Jun 08 01:12:02 up kernel: pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    Jun 08 01:12:02 up kernel: pci 0000:00:02.1: System wakeup disabled by ACPI
    Jun 08 01:12:02 up kernel: pci 0000:00:04.0: [10de:036e] type 00 class 0x01018a
    Jun 08 01:12:02 up kernel: pci 0000:00:04.0: reg 0x20: [io 0xf000-0xf00f]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: [10de:037f] type 00 class 0x010185
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: reg 0x10: [io 0x09f0-0x09f7]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: reg 0x14: [io 0x0bf0-0x0bf3]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: reg 0x18: [io 0x0970-0x0977]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: reg 0x1c: [io 0x0b70-0x0b73]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: reg 0x20: [io 0xdc00-0xdc0f]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: reg 0x24: [mem 0xfe02d000-0xfe02dfff]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: [10de:037f] type 00 class 0x010185
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: reg 0x10: [io 0x09e0-0x09e7]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: reg 0x14: [io 0x0be0-0x0be3]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: reg 0x18: [io 0x0960-0x0967]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: reg 0x1c: [io 0x0b60-0x0b63]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: reg 0x20: [io 0xc800-0xc80f]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: reg 0x24: [mem 0xfe02c000-0xfe02cfff]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: [10de:037f] type 00 class 0x010185
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: reg 0x10: [io 0xc400-0xc407]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: reg 0x14: [io 0xc000-0xc003]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: reg 0x18: [io 0xbc00-0xbc07]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: reg 0x1c: [io 0xb800-0xb803]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: reg 0x20: [io 0xb400-0xb40f]
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: reg 0x24: [mem 0xfe02b000-0xfe02bfff]
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: [10de:0370] type 01 class 0x060401
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: System wakeup disabled by ACPI
    Jun 08 01:12:02 up kernel: pci 0000:00:06.1: [10de:0371] type 00 class 0x040300
    Jun 08 01:12:02 up kernel: pci 0000:00:06.1: reg 0x10: [mem 0xfe024000-0xfe027fff]
    Jun 08 01:12:02 up kernel: pci 0000:00:06.1: PME# supported from D3hot D3cold
    Jun 08 01:12:02 up kernel: pci 0000:00:06.1: System wakeup disabled by ACPI
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: [10de:0373] type 00 class 0x068000
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: reg 0x10: [mem 0xfe02a000-0xfe02afff]
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: reg 0x14: [io 0xb000-0xb007]
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: reg 0x18: [mem 0xfe029000-0xfe0290ff]
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: reg 0x1c: [mem 0xfe028000-0xfe02800f]
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: supports D1 D2
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: System wakeup disabled by ACPI
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: [10de:0377] type 01 class 0x060400
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: System wakeup disabled by ACPI
    Jun 08 01:12:02 up kernel: pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
    Jun 08 01:12:02 up kernel: pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
    Jun 08 01:12:02 up kernel: pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
    Jun 08 01:12:02 up kernel: pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: PCI bridge to [bus 01] (subtractive decode)
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: bridge window [mem 0x7ff00000-0xfebfffff] (subtractive decode)
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: [10de:0392] type 00 class 0x030000
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: reg 0x1c: [mem 0xfb000000-0xfbffffff 64bit]
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: reg 0x24: [io 0xac00-0xac7f]
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: reg 0x30: [mem 0xfcfe0000-0xfcffffff pref]
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: PCI bridge to [bus 02]
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: bridge window [io 0xa000-0xafff]
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: bridge window [mem 0xfa000000-0xfcffffff]
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: on NUMA node 0
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 *11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 *10 11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 *10 11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs *5 7 9 10 11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 10 *11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 *10 11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [LSA2] (IRQs 5 7 9 10 *11 14 15)
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0, disabled.
    Jun 08 01:12:02 up kernel: ACPI: Enabled 1 GPEs in block 20 to 5F
    Jun 08 01:12:02 up kernel: vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jun 08 01:12:02 up kernel: vgaarb: loaded
    Jun 08 01:12:02 up kernel: vgaarb: bridge control possible 0000:02:00.0
    Jun 08 01:12:02 up kernel: PCI: Using ACPI for IRQ routing
    Jun 08 01:12:02 up kernel: PCI: pci_cache_line_size set to 64 bytes
    Jun 08 01:12:02 up kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
    Jun 08 01:12:02 up kernel: e820: reserve RAM buffer [mem 0x7fee0000-0x7fffffff]
    Jun 08 01:12:02 up kernel: NetLabel: Initializing
    Jun 08 01:12:02 up kernel: NetLabel: domain hash size = 128
    Jun 08 01:12:02 up kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jun 08 01:12:02 up kernel: NetLabel: unlabeled traffic allowed by default
    Jun 08 01:12:02 up kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Jun 08 01:12:02 up kernel: hpet0: at MMIO 0xfefff000, IRQs 2, 8, 31
    Jun 08 01:12:02 up kernel: hpet0: 3 comparators, 32-bit 25.000000 MHz counter
    Jun 08 01:12:02 up kernel: Switched to clocksource hpet
    Jun 08 01:12:02 up kernel: pnp: PnP ACPI init
    Jun 08 01:12:02 up kernel: ACPI: bus type PNP registered
    Jun 08 01:12:02 up kernel: system 00:00: [io 0x1000-0x107f] has been reserved
    Jun 08 01:12:02 up kernel: system 00:00: [io 0x1080-0x10ff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:00: [io 0x1400-0x147f] has been reserved
    Jun 08 01:12:02 up kernel: system 00:00: [io 0x1480-0x14ff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:00: [io 0x1800-0x187f] has been reserved
    Jun 08 01:12:02 up kernel: system 00:00: [io 0x1880-0x18ff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 08 01:12:02 up kernel: system 00:01: [io 0x04d0-0x04d1] has been reserved
    Jun 08 01:12:02 up kernel: system 00:01: [io 0x0800-0x087f] has been reserved
    Jun 08 01:12:02 up kernel: system 00:01: [io 0x0290-0x0297] has been reserved
    Jun 08 01:12:02 up kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 08 01:12:02 up kernel: pnp 00:02: [dma 4]
    Jun 08 01:12:02 up kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Jun 08 01:12:02 up kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    Jun 08 01:12:02 up kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jun 08 01:12:02 up kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    Jun 08 01:12:02 up kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jun 08 01:12:02 up kernel: pnp 00:07: [dma 2]
    Jun 08 01:12:02 up kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0700 (active)
    Jun 08 01:12:02 up kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    Jun 08 01:12:02 up kernel: pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
    Jun 08 01:12:02 up kernel: system 00:0a: [mem 0xf0000000-0xf3ffffff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0x000cde00-0x000cffff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0x000f0000-0x000f7fff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0x000f8000-0x000fbfff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0x000fc000-0x000fffff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xfefff000-0xfefff0ff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0x7fee0000-0x7fefffff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xffff0000-0xffffffff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0x00100000-0x7fedffff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xfee00000-0xfeefffff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xfefff000-0xfeffffff] could not be reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xfff80000-0xfff80fff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xfff90000-0xfffbffff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0b: [mem 0xfffed000-0xfffeffff] has been reserved
    Jun 08 01:12:02 up kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jun 08 01:12:02 up kernel: pnp: PnP ACPI: found 12 devices
    Jun 08 01:12:02 up kernel: ACPI: bus type PNP unregistered
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: PCI bridge to [bus 01]
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: PCI bridge to [bus 02]
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: bridge window [io 0xa000-0xafff]
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: bridge window [mem 0xfa000000-0xfcffffff]
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:00: resource 8 [mem 0x7ff00000-0xfebfffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:01: resource 4 [io 0x0000-0x0cf7]
    Jun 08 01:12:02 up kernel: pci_bus 0000:01: resource 5 [io 0x0d00-0xffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:01: resource 7 [mem 0x000c0000-0x000dffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:01: resource 8 [mem 0x7ff00000-0xfebfffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:02: resource 0 [io 0xa000-0xafff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:02: resource 1 [mem 0xfa000000-0xfcffffff]
    Jun 08 01:12:02 up kernel: pci_bus 0000:02: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
    Jun 08 01:12:02 up kernel: NET: Registered protocol family 2
    Jun 08 01:12:02 up kernel: TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    Jun 08 01:12:02 up kernel: TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    Jun 08 01:12:02 up kernel: TCP: Hash tables configured (established 8192 bind 8192)
    Jun 08 01:12:02 up kernel: TCP: reno registered
    Jun 08 01:12:02 up kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Jun 08 01:12:02 up kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Jun 08 01:12:02 up kernel: NET: Registered protocol family 1
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
    Jun 08 01:12:02 up kernel: pci 0000:00:05.0: Enabling HT MSI Mapping
    Jun 08 01:12:02 up kernel: pci 0000:00:05.1: Enabling HT MSI Mapping
    Jun 08 01:12:02 up kernel: pci 0000:00:05.2: Enabling HT MSI Mapping
    Jun 08 01:12:02 up kernel: pci 0000:00:06.0: Enabling HT MSI Mapping
    Jun 08 01:12:02 up kernel: pci 0000:00:06.1: Enabling HT MSI Mapping
    Jun 08 01:12:02 up kernel: pci 0000:00:08.0: Enabling HT MSI Mapping
    Jun 08 01:12:02 up kernel: pci 0000:00:0f.0: Enabling HT MSI Mapping
    Jun 08 01:12:02 up kernel: pci 0000:02:00.0: Boot video device
    Jun 08 01:12:02 up kernel: PCI: CLS 32 bytes, default 64
    Jun 08 01:12:02 up kernel: Unpacking initramfs...
    Jun 08 01:12:02 up kernel: Freeing initrd memory: 3264K (f74ce000 - f77fe000)
    Jun 08 01:12:02 up kernel: apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
    Jun 08 01:12:02 up kernel: apm: disabled - APM is not SMP safe.
    Jun 08 01:12:02 up kernel: Scanning for low memory corruption every 60 seconds
    Jun 08 01:12:02 up kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
    Jun 08 01:12:02 up kernel: bounce pool size: 64 pages
    Jun 08 01:12:02 up kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Jun 08 01:12:02 up kernel: zbud: loaded
    Jun 08 01:12:02 up kernel: VFS: Disk quotas dquot_6.5.2
    Jun 08 01:12:02 up kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Jun 08 01:12:02 up kernel: msgmni has been set to 1717
    Jun 08 01:12:02 up kernel: Key type big_key registered
    Jun 08 01:12:02 up kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jun 08 01:12:02 up kernel: io scheduler noop registered
    Jun 08 01:12:02 up kernel: io scheduler deadline registered
    Jun 08 01:12:02 up kernel: io scheduler cfq registered (default)
    Jun 08 01:12:02 up kernel: pcieport 0000:00:0f.0: irq 40 for MSI/MSI-X
    Jun 08 01:12:02 up kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jun 08 01:12:02 up kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jun 08 01:12:02 up kernel: GHES: HEST is not enabled!
    Jun 08 01:12:02 up kernel: isapnp: Scanning for PnP cards...
    Jun 08 01:12:02 up kernel: isapnp: No Plug & Play device found
    Jun 08 01:12:02 up kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jun 08 01:12:02 up kernel: 00:08: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    Jun 08 01:12:02 up kernel: rtc_cmos 00:04: RTC can wake from S4
    Jun 08 01:12:02 up kernel: rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    Jun 08 01:12:02 up kernel: rtc_cmos 00:04: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    Jun 08 01:12:02 up kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Jun 08 01:12:02 up kernel: TCP: cubic registered
    Jun 08 01:12:02 up kernel: NET: Registered protocol family 10
    Jun 08 01:12:02 up kernel: NET: Registered protocol family 17
    Jun 08 01:12:02 up kernel: Using IPI No-Shortcut mode
    Jun 08 01:12:02 up kernel: registered taskstats version 1
    Jun 08 01:12:02 up kernel: Magic number: 2:319:154
    Jun 08 01:12:02 up kernel: acpi device:21: hash matches
    Jun 08 01:12:02 up kernel: rtc_cmos 00:04: setting system clock to 2014-06-08 01:11:56 UTC (1402189916)
    Jun 08 01:12:02 up kernel: PM: Hibernation image not present or could not be loaded.
    Jun 08 01:12:02 up kernel: Freeing unused kernel memory: 568K (c160f000 - c169d000)
    Jun 08 01:12:02 up kernel: Write protecting the kernel text: 4448k
    Jun 08 01:12:02 up kernel: Write protecting the kernel read-only data: 1284k
    Jun 08 01:12:02 up kernel: random: systemd-tmpfile urandom read with 0 bits of entropy available
    Jun 08 01:12:02 up systemd-udevd[47]: starting version 213
    Jun 08 01:12:02 up kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    Jun 08 01:12:02 up kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jun 08 01:12:02 up kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jun 08 01:12:02 up kernel: Floppy drive(s): fd0 is 1.44M
    Jun 08 01:12:02 up kernel: ACPI: bus type USB registered
    Jun 08 01:12:02 up kernel: usbcore: registered new interface driver usbfs
    Jun 08 01:12:02 up kernel: usbcore: registered new interface driver hub
    Jun 08 01:12:02 up kernel: usbcore: registered new device driver usb
    Jun 08 01:12:02 up kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jun 08 01:12:02 up kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Jun 08 01:12:02 up kernel: ohci-pci: OHCI PCI platform driver
    Jun 08 01:12:02 up kernel: ohci-pci 0000:00:02.0: OHCI PCI host controller
    Jun 08 01:12:02 up kernel: ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 1
    Jun 08 01:12:02 up kernel: ohci-pci 0000:00:02.0: irq 23, io mem 0xfe02f000
    Jun 08 01:12:02 up kernel: SCSI subsystem initialized
    Jun 08 01:12:02 up kernel: ehci-pci: EHCI PCI platform driver
    Jun 08 01:12:02 up kernel: libata version 3.00 loaded.
    Jun 08 01:12:02 up kernel: FDC 0 is a post-1991 82077
    Jun 08 01:12:02 up kernel: hub 1-0:1.0: USB hub found
    Jun 08 01:12:02 up kernel: hub 1-0:1.0: 10 ports detected
    Jun 08 01:12:02 up kernel: ehci-pci 0000:00:02.1: EHCI Host Controller
    Jun 08 01:12:02 up kernel: ehci-pci 0000:00:02.1: new USB bus registered, assigned bus number 2
    Jun 08 01:12:02 up kernel: ehci-pci 0000:00:02.1: debug port 1
    Jun 08 01:12:02 up kernel: ehci-pci 0000:00:02.1: cache line size of 32 is not supported
    Jun 08 01:12:02 up kernel: ehci-pci 0000:00:02.1: irq 22, io mem 0xfe02e000
    Jun 08 01:12:02 up kernel: ehci-pci 0000:00:02.1: USB 2.0 started, EHCI 1.00
    Jun 08 01:12:02 up kernel: hub 2-0:1.0: USB hub found
    Jun 08 01:12:02 up kernel: hub 2-0:1.0: 10 ports detected
    Jun 08 01:12:02 up kernel: hub 1-0:1.0: USB hub found
    Jun 08 01:12:02 up kernel: hub 1-0:1.0: 10 ports detected
    Jun 08 01:12:02 up kernel: sata_nv 0000:00:05.0: version 3.5
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APSI] enabled at IRQ 21
    Jun 08 01:12:02 up kernel: sata_nv 0000:00:05.0: Using SWNCQ mode
    Jun 08 01:12:02 up kernel: scsi0 : sata_nv
    Jun 08 01:12:02 up kernel: scsi1 : sata_nv
    Jun 08 01:12:02 up kernel: ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 21
    Jun 08 01:12:02 up kernel: ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 21
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 20
    Jun 08 01:12:02 up kernel: sata_nv 0000:00:05.1: Using SWNCQ mode
    Jun 08 01:12:02 up kernel: scsi2 : sata_nv
    Jun 08 01:12:02 up kernel: scsi3 : sata_nv
    Jun 08 01:12:02 up kernel: ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 20
    Jun 08 01:12:02 up kernel: ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 20
    Jun 08 01:12:02 up kernel: ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 23
    Jun 08 01:12:02 up kernel: sata_nv 0000:00:05.2: Using SWNCQ mode
    Jun 08 01:12:02 up kernel: scsi4 : sata_nv
    Jun 08 01:12:02 up kernel: scsi5 : sata_nv
    Jun 08 01:12:02 up kernel: ata5: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 23
    Jun 08 01:12:02 up kernel: ata6: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 23
    Jun 08 01:12:02 up kernel: pata_amd 0000:00:04.0: version 0.4.1
    Jun 08 01:12:02 up kernel: scsi6 : pata_amd
    Jun 08 01:12:02 up kernel: scsi7 : pata_amd
    Jun 08 01:12:02 up kernel: ata7: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
    Jun 08 01:12:02 up kernel: ata8: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
    Jun 08 01:12:02 up kernel: ata3: SATA link down (SStatus 0 SControl 300)
    Jun 08 01:12:02 up kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Jun 08 01:12:02 up kernel: usb 2-4: new high-speed USB device number 4 using ehci-pci
    Jun 08 01:12:02 up kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jun 08 01:12:02 up kernel: ata1.00: ATA-8: WDC WD6400AAKS-00A7B0, 01.03B01, max UDMA/133
    Jun 08 01:12:02 up kernel: ata1.00: 1250263728 sectors, multi 1: LBA48 NCQ (depth 31/32)
    Jun 08 01:12:02 up kernel: hub 2-4:1.0: USB hub found
    Jun 08 01:12:02 up kernel: hub 2-4:1.0: 4 ports detected
    Jun 08 01:12:02 up kernel: ata1.00: configured for UDMA/133
    Jun 08 01:12:02 up kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD6400AAKS-0 01.0 PQ: 0 ANSI: 5
    Jun 08 01:12:02 up kernel: ata2: SATA link down (SStatus 0 SControl 300)
    Jun 08 01:12:02 up kernel: usb 1-2: new low-speed USB device number 2 using ohci-pci
    Jun 08 01:12:02 up kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Jun 08 01:12:02 up kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Jun 08 01:12:02 up kernel: sd 0:0:0:0: [sda] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
    Jun 08 01:12:02 up kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jun 08 01:12:02 up kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jun 08 01:12:02 up kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jun 08 01:12:02 up kernel: usbcore: registered new interface driver usbhid
    Jun 08 01:12:02 up kernel: usbhid: USB HID core driver
    Jun 08 01:12:02 up kernel: input: Microsoft Comfort Curve Keyboard 3000 as /devices/pci0000:00/0000:00:02.0/usb1/1-2/1-2:1.0/0003:045E:0780.0001/input/input2
    Jun 08 01:12:02 up kernel: hid-generic 0003:045E:0780.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Comfort Curve Keyboard 3000] on usb-0000:00:02.0-2/input0
    Jun 08 01:12:02 up kernel: input: Microsoft Comfort Curve Keyboard 3000 as /devices/pci0000:00/0000:00:02.0/usb1/1-2/1-2:1.1/0003:045E:0780.0002/input/input3
    Jun 08 01:12:02 up kernel: hid-generic 0003:045E:0780.0002: input,hidraw1: USB HID v1.11 Device [Microsoft Comfort Curve Keyboard 3000] on usb-0000:00:02.0-2/input1
    Jun 08 01:12:02 up kernel: sda: sda1 sda2 sda3 < sda5 sda6 sda7 > sda4
    Jun 08 01:12:02 up kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jun 08 01:12:02 up kernel: usb 1-3: new low-speed USB device number 3 using ohci-pci
    Jun 08 01:12:02 up kernel: ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jun 08 01:12:02 up kernel: ata6.00: ATA-7: WDC WD2500KS-00MJB0, 02.01C03, max UDMA/133
    Jun 08 01:12:02 up kernel: ata6.00: 488397168 sectors, multi 1: LBA48
    Jun 08 01:12:02 up kernel: ata6.00: configured for UDMA/133
    Jun 08 01:12:02 up kernel: scsi 5:0:0:0: Direct-Access ATA WDC WD2500KS-00M 02.0 PQ: 0 ANSI: 5
    Jun 08 01:12:02 up kernel: sd 5:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    Jun 08 01:12:02 up kernel: ata8: port disabled--ignoring
    Jun 08 01:12:02 up kernel: sd 5:0:0:0: [sdb] Write Protect is off
    Jun 08 01:12:02 up kernel: sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    Jun 08 01:12:02 up kernel: sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jun 08 01:12:02 up kernel: sdb: sdb1 sdb4
    Jun 08 01:12:02 up kernel: sd 5:0:0:0: [sdb] Attached SCSI disk
    Jun 08 01:12:02 up kernel: input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:02.0/usb1/1-3/1-3:1.0/0003:046D:C025.0003/input/input4
    Jun 08 01:12:02 up kernel: hid-generic 0003:046D:C025.0003: input,hidraw2: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:02.0-3/input0
    Jun 08 01:12:02 up kernel: random: nonblocking pool is initialized
    Jun 08 01:12:02 up kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Jun 08 01:12:02 up systemd[1]: RTC configured in localtime, applying delta of 180 minutes to system time.
    Jun 08 01:12:02 up systemd[1]: systemd 213 running in system mode. (+PAM -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
    Jun 08 01:12:02 up systemd[1]: Detected architecture 'x86'.
    Jun 08 01:12:02 up systemd[1]: Set hostname to <up>.
    Jun 08 01:12:02 up systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jun 08 01:12:02 up systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jun 08 01:12:02 up systemd[1]: Starting Remote File Systems.
    Jun 08 01:12:02 up systemd[1]: Reached target Remote File Systems.
    Jun 08 01:12:02 up systemd[1]: Starting Encrypted Volumes.
    Jun 08 01:12:02 up systemd[1]: Reached target Encrypted Volumes.
    Jun 08 01:12:02 up systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jun 08 01:12:02 up systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jun 08 01:12:02 up systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jun 08 01:12:02 up systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jun 08 01:12:02 up systemd[1]: Starting Paths.
    Jun 08 01:12:02 up systemd[1]: Reached target Paths.
    Jun 08 01:12:02 up systemd[1]: Starting Swap.
    Jun 08 01:12:02 up systemd[1]: Reached target Swap.
    Jun 08 01:12:02 up systemd[1]: Expecting device dev-sda6.device...
    Jun 08 01:12:02 up systemd[1]: Starting Root Slice.
    Jun 08 01:12:02 up systemd[1]: Created slice Root Slice.
    Jun 08 01:12:02 up systemd[1]: Starting User and Session Slice.
    Jun 08 01:12:02 up systemd[1]: Created slice User and Session Slice.
    Jun 08 01:12:02 up systemd[1]: Starting Delayed Shutdown Socket.
    Jun 08 01:12:02 up systemd[1]: Listening on Delayed Shutdown Socket.
    Jun 08 01:12:02 up systemd[1]: Starting Device-mapper event daemon FIFOs.
    Jun 08 01:12:02 up systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Jun 08 01:12:02 up systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jun 08 01:12:02 up systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jun 08 01:12:02 up systemd[1]: Starting udev Kernel Socket.
    Jun 08 01:12:02 up systemd[1]: Listening on udev Kernel Socket.
    Jun 08 01:12:02 up systemd[1]: Starting udev Control Socket.
    Jun 08 01:12:02 up systemd[1]: Listening on udev Control Socket.
    Jun 08 01:12:02 up systemd[1]: Starting LVM2 metadata daemon socket.
    Jun 08 01:12:02 up systemd[1]: Listening on LVM2 metadata daemon socket.
    Jun 08 01:12:02 up systemd[1]: Starting Journal Socket.
    Jun 08 01:12:02 up systemd[1]: Listening on Journal Socket.
    Jun 08 01:12:02 up systemd[1]: Starting System Slice.
    Jun 08 01:12:02 up systemd[1]: Created slice System Slice.
    Jun 08 01:12:02 up systemd[1]: Starting File System Check on Root Device...
    Jun 08 01:12:02 up systemd[1]: Starting system-systemd\x2dfsck.slice.
    Jun 08 01:12:02 up systemd[1]: Created slice system-systemd\x2dfsck.slice.
    Jun 08 01:12:02 up systemd[1]: Mounting Temporary Directory...
    Jun 08 01:12:02 up systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
    Jun 08 01:12:02 up systemd[1]: Starting system-getty.slice.
    Jun 08 01:12:02 up systemd[1]: Created slice system-getty.slice.
    Jun 08 01:12:02 up systemd[1]: Starting Set Up Additional Binary Formats...
    Jun 08 01:12:02 up systemd[1]: Starting udev Coldplug all Devices...
    Jun 08 01:12:02 up systemd[1]: Mounting Huge Pages File System...
    Jun 08 01:12:02 up systemd[1]: Mounting Debug File System...
    Jun 08 01:12:02 up systemd[1]: Starting Load Kernel Modules...
    Jun 08 01:12:02 up systemd[1]: Mounting POSIX Message Queue File System...
    Jun 08 01:12:02 up systemd[1]: Starting Create list of required static device nodes for the current kernel...
    Jun 08 01:12:02 up systemd[1]: Starting Setup Virtual Console...
    Jun 08 01:12:02 up systemd[1]: Starting Apply Kernel Variables...
    Jun 08 01:12:02 up systemd[1]: Starting Journal Service...
    Jun 08 01:12:02 up systemd[1]: Started Journal Service.
    Jun 08 01:12:02 up kernel: vboxdrv: Found 2 processor cores.
    Jun 08 01:12:02 up kernel: vboxdrv: fAsync=1 offMin=0x20125 offMax=0x20125
    Jun 08 01:12:02 up kernel: vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'.
    Jun 08 01:12:02 up kernel: vboxdrv: Successfully loaded version 4.3.12_OSE (interface 0x001a0007).
    Jun 08 01:12:02 up systemd-journal[135]: Journal started
    -- Subject: The Journal has been started
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- The system journal process has been starting up, opened the journal
    -- files for writing and is now ready to process requests.
    Jun 08 01:12:02 up systemd[1]: Starting Slices.
    -- Subject: Unit slices.target has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit slices.target has begun starting up.
    Jun 08 01:12:02 up systemd[1]: Reached target Slices.
    -- Subject: Unit slices.target has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit slices.target has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Mounted Temporary Directory.
    -- Subject: Unit tmp.mount has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit tmp.mount has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Started Setup Virtual Console.
    -- Subject: Unit systemd-vconsole-setup.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-vconsole-setup.service has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 126 (systemd-binfmt)
    Jun 08 01:12:02 up systemd[1]: Mounting Arbitrary Executable File Formats File System...
    -- Subject: Unit proc-sys-fs-binfmt_misc.mount has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit proc-sys-fs-binfmt_misc.mount has begun starting up.
    Jun 08 01:12:02 up systemd[1]: Mounted Huge Pages File System.
    -- Subject: Unit dev-hugepages.mount has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit dev-hugepages.mount has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Mounted Arbitrary Executable File Formats File System.
    -- Subject: Unit proc-sys-fs-binfmt_misc.mount has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit proc-sys-fs-binfmt_misc.mount has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Mounted POSIX Message Queue File System.
    -- Subject: Unit dev-mqueue.mount has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit dev-mqueue.mount has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Mounted Debug File System.
    -- Subject: Unit sys-kernel-debug.mount has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit sys-kernel-debug.mount has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Started Apply Kernel Variables.
    -- Subject: Unit systemd-sysctl.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-sysctl.service has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd-modules-load[130]: Inserted module 'vboxdrv'
    Jun 08 01:12:02 up systemd[1]: Started Create Static Device Nodes in /dev.
    -- Subject: Unit systemd-tmpfiles-setup-dev.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-tmpfiles-setup-dev.service has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Started Load Kernel Modules.
    -- Subject: Unit systemd-modules-load.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-modules-load.service has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Mounted FUSE Control File System.
    -- Subject: Unit sys-fs-fuse-connections.mount has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit sys-fs-fuse-connections.mount has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Mounting Configuration File System...
    -- Subject: Unit sys-kernel-config.mount has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit sys-kernel-config.mount has begun starting up.
    Jun 08 01:12:02 up systemd[1]: Starting udev Kernel Device Manager...
    -- Subject: Unit systemd-udevd.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-udevd.service has begun starting up.
    Jun 08 01:12:02 up systemd-fsck[121]: /dev/sda5: Superblock last write time is in the future.
    Jun 08 01:12:02 up systemd-fsck[121]: (by less than a day, probably due to the hardware clock being incorrectly set). FIXED.
    Jun 08 01:12:02 up systemd[1]: Mounted Configuration File System.
    -- Subject: Unit sys-kernel-config.mount has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit sys-kernel-config.mount has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd[1]: Started udev Kernel Device Manager.
    -- Subject: Unit systemd-udevd.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-udevd.service has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:02 up systemd-udevd[153]: starting version 213
    Jun 08 01:12:02 up systemd-udevd[153]: invalid key/value pair in file /etc/udev/rules.d/50-embedded_devices.rules on line 8,starting at character 97 ('')
    Jun 08 01:12:03 up kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input5
    Jun 08 01:12:03 up kernel: ACPI: Power Button [PWRB]
    Jun 08 01:12:03 up kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
    Jun 08 01:12:03 up kernel: ACPI: Power Button [PWRF]
    Jun 08 01:12:03 up kernel: ACPI: [Package] has zero elements (f5bfc400)
    Jun 08 01:12:03 up kernel: ACPI: Invalid passive threshold
    Jun 08 01:12:03 up kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Jun 08 01:12:03 up kernel: ACPI: Thermal Zone [THRM] (40 C)
    Jun 08 01:12:03 up kernel: ACPI: Fan [FAN] (on)
    Jun 08 01:12:03 up kernel: k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
    Jun 08 01:12:03 up kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
    Jun 08 01:12:04 up kernel: microcode: AMD CPU family 0xf not supported
    Jun 08 01:12:04 up kernel: kvm: Nested Virtualization enabled
    Jun 08 01:12:04 up kernel: ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
    Jun 08 01:12:04 up kernel: hda_intel: msi for device 1043:81f6 set to 0
    Jun 08 01:12:04 up kernel: microcode: AMD CPU family 0xf not supported
    Jun 08 01:12:04 up kernel: powernow-k8: fid 0xc (2000 MHz), vid 0xc
    Jun 08 01:12:04 up kernel: powernow-k8: fid 0xa (1800 MHz), vid 0xe
    Jun 08 01:12:04 up kernel: powernow-k8: fid 0x2 (1000 MHz), vid 0x12
    Jun 08 01:12:04 up kernel: powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (2 cpu cores) (version 2.20.00)
    Jun 08 01:12:04 up kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Jun 08 01:12:04 up kernel: parport_pc 00:09: reported by Plug and Play ACPI
    Jun 08 01:12:04 up kernel: parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
    Jun 08 01:12:04 up kernel: forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
    Jun 08 01:12:04 up kernel: ACPI: PCI Interrupt Link [APCH] enabled at IRQ 21
    Jun 08 01:12:04 up kernel: ppdev: user-space parallel port driver
    Jun 08 01:12:04 up kernel: Linux agpgart interface v0.103
    Jun 08 01:12:04 up kernel: forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:1a:92:20:f8:d7
    Jun 08 01:12:04 up kernel: forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt gbit lnktim msi desc-v3
    Jun 08 01:12:04 up kernel: i2c i2c-0: nForce2 SMBus adapter at 0x1c00
    Jun 08 01:12:04 up kernel: ACPI Warning: SystemIO range 0x00001c40-0x00001c7f conflicts with OpRegion 0x00001c40-0x00001c45 (\_SB_.PCI0.SM01) (20131218/utaddress-258)
    Jun 08 01:12:04 up kernel: ACPI Warning: SystemIO range 0x00001c40-0x00001c7f conflicts with OpRegion 0x00001c40-0x00001c45 (\_SB_.PCI0.SM00) (20131218/utaddress-258)
    Jun 08 01:12:04 up kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jun 08 01:12:04 up kernel: nv_tco: NV TCO WatchDog Timer Driver v0.01
    Jun 08 01:12:04 up kernel: nv_tco: Watchdog reboot not detected
    Jun 08 01:12:04 up kernel: nv_tco: initialized (0x1440). heartbeat=30 sec (nowayout=0)
    Jun 08 01:12:05 up mtp-probe[205]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:02.0/usb1/1-2"
    Jun 08 01:12:05 up mtp-probe[204]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:02.0/usb1/1-3"
    Jun 08 01:12:05 up mtp-probe[204]: bus: 1, device: 3 was not an MTP device
    Jun 08 01:12:05 up mtp-probe[205]: bus: 1, device: 2 was not an MTP device
    Jun 08 01:12:05 up kernel: nvidia: module license 'NVIDIA' taints kernel.
    Jun 08 01:12:05 up kernel: Disabling lock debugging due to kernel taint
    Jun 08 01:12:05 up kernel: ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
    Jun 08 01:12:05 up kernel: vgaarb: device changed decodes: PCI:0000:02:00.0,olddecodes=io+mem,decodes=none:owns=none
    Jun 08 01:12:05 up kernel: NVRM: loading NVIDIA UNIX x86 Kernel Module 304.121 Tue Mar 4 19:50:35 PST 2014
    Jun 08 01:12:05 up kernel: mousedev: PS/2 mouse device common for all mice
    Jun 08 01:12:06 up kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:06.1/input/input9
    Jun 08 01:12:07 up kernel: input: HDA NVidia Line Out Side as /devices/pci0000:00/0000:00:06.1/sound/card0/input15
    Jun 08 01:12:07 up kernel: input: HDA NVidia Line Out CLFE as /devices/pci0000:00/0000:00:06.1/sound/card0/input14
    Jun 08 01:12:07 up kernel: input: HDA NVidia Line Out Surround as /devices/pci0000:00/0000:00:06.1/sound/card0/input13
    Jun 08 01:12:07 up kernel: input: HDA NVidia Line Out Front as /devices/pci0000:00/0000:00:06.1/sound/card0/input12
    Jun 08 01:12:07 up kernel: input: HDA NVidia Line as /devices/pci0000:00/0000:00:06.1/sound/card0/input11
    Jun 08 01:12:07 up kernel: input: HDA NVidia Rear Mic as /devices/pci0000:00/0000:00:06.1/sound/card0/input10
    Jun 08 01:12:07 up systemd[1]: Starting Sound Card.
    -- Subject: Unit sound.target has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit sound.target has begun starting up.
    Jun 08 01:12:07 up systemd[1]: Reached target Sound Card.
    -- Subject: Unit sound.target has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit sound.target has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:09 up systemd-fsck[121]: /dev/sda5: 175829/1228800 files (1.0% non-contiguous), 2992507/4907849 blocks
    Jun 08 01:12:09 up systemd[1]: Started File System Check on Root Device.
    -- Subject: Unit systemd-fsck-root.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-fsck-root.service has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:09 up systemd[1]: Starting Remount Root and Kernel File Systems...
    -- Subject: Unit systemd-remount-fs.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-remount-fs.service has begun starting up.
    Jun 08 01:12:09 up systemd[1]: Started Remount Root and Kernel File Systems.
    -- Subject: Unit systemd-remount-fs.service has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-remount-fs.service has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:09 up systemd[1]: Starting Load/Save Random Seed...
    -- Subject: Unit systemd-random-seed.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-random-seed.service has begun starting up.
    Jun 08 01:12:09 up systemd[1]: Starting Local File Systems (Pre).
    -- Subject: Unit local-fs-pre.target has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit local-fs-pre.target has begun starting up.
    Jun 08 01:12:09 up systemd[1]: Reached target Local File Systems (Pre).
    -- Subject: Unit local-fs-pre.target has finished start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit local-fs-pre.target has finished starting up.
    -- The start-up result is done.
    Jun 08 01:12:09 up kernel: EXT4-fs (sda5): re-mounted. Opts: (null)
    Jun 08 01:12:09 up systemd[1]: St

    It sounds like a known bug for which a fix is already in [testing] and other information is available here on the forums.
    Is your hardware clock set to UTC?  and/or do you dual boot with Windows?

  • Diagnose stuttering?

    Hello,
    there is some strange behaviour of my laptop which makes me think it is ill. It is a kind of stuttering. Don't get me wrong, I can do my work with it normally, but I think my system isn't running perfectly.
    Symptoms:
    1. Jackd is reporting xruns. They occur quite often. About 50-70 times while playing the guitar for about 30 minutes. Furthermore the 'RT' sign in qjackctl is flashing on and off instantly every 1-2 seconds or so. Of course the realtime options is enabled. The preferences are set such that there is a delay of about 20ms.
    2. When executing 'ifconfig eth0 down/up' or changing the network profiles with netcfg2 while moving the mouse, I can notice some mouse cursor stuttering.
    3. When watching a youtube video in Firefox it (the video) is often stuttering 0.5-1s at the beginning while noticing harddisk activity ( Flashing LED).
    I never cared about the last two points but since I played around with Jack it is starting to bother me.
    I don't know if these symptoms are caused by the same problem. But my first thought is that is has something to do with disk access. It seems logical to me that while writing to the harddisk the system has to stay in sleep meanwhile. So I changed to deadline scheduler, but it doesn't really improve the situation. Moreover if disk access would be the reason it would be the same for all the other Jack Notebook users.
    Maybe you experienced similiar things or know a solution for this.
    Here are some hardware specs:
    Notebook Asus M67n
    Centrino Pentium M 1,5 Ghz
    Harddisk Samsung 160GB ~5400 u/min
    2 GB Ram
    Ati Radeon Mobility 9700 64MB
    And some more system information
    lsmod
    [kde4@m67n ~]$ lsmod
    Module Size Used by
    snd_usb_audio 81920 0
    snd_usb_lib 17024 1 snd_usb_audio
    snd_rawmidi 21504 1 snd_usb_lib
    snd_hwdep 8964 1 snd_usb_audio
    radeon 144416 2
    drm 74280 3 radeon
    cpufreq_ondemand 8588 0
    usbhid 46016 0
    hid 41856 1 usbhid
    ff_memless 6664 1 usbhid
    joydev 11584 0
    ppdev 9348 0
    lp 11108 0
    pcspkr 4352 0
    ohci1394 30256 0
    ieee1394 80452 1 ohci1394
    video 18064 0
    output 4608 1 video
    parport_pc 36804 1
    parport 33004 3 ppdev,lp,parport_pc
    irda 112568 0
    crc_ccitt 3840 1 irda
    psmouse 38288 0
    i2c_i801 10768 0
    serio_raw 7172 0
    i2c_core 22420 1 i2c_i801
    sr_mod 16708 0
    cdrom 35360 1 sr_mod
    sg 28852 0
    ehci_hcd 36236 0
    intel_agp 27068 1
    agpgart 30804 2 drm,intel_agp
    uhci_hcd 24080 0
    shpchp 31380 0
    pci_hotplug 28064 1 shpchp
    thermal 17052 2
    evdev 11296 11
    fan 6148 0
    button 7824 0
    battery 12036 1
    ac 6020 0
    vboxdrv 115112 0
    asus_acpi 15772 0
    snd_seq_oss 31872 0
    snd_seq_midi_event 8192 1 snd_seq_oss
    snd_seq 49968 7 snd_seq_oss,snd_seq_midi_event
    snd_seq_device 8332 3 snd_rawmidi,snd_seq_oss,snd_seq
    snd_intel8x0 30748 0
    snd_ac97_codec 100516 1 snd_intel8x0
    snd_pcm_oss 40192 0
    snd_pcm 69636 4 snd_usb_audio,snd_intel8x0,snd_ac97_codec,snd_pcm_oss
    snd_timer 21384 2 snd_seq,snd_pcm
    snd_page_alloc 9224 2 snd_intel8x0,snd_pcm
    snd_mixer_oss 16512 1 snd_pcm_oss
    snd 50724 13 snd_usb_audio,snd_rawmidi,snd_hwdep,snd_seq_oss,snd_seq,snd_seq_device,snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_pcm,snd_timer,snd_mixer_oss
    soundcore 8160 1 snd
    ac97_bus 3584 1 snd_ac97_codec
    usblp 13824 0
    usbcore 134384 7 snd_usb_audio,snd_usb_lib,usbhid,ehci_hcd,uhci_hcd,usblp
    loop 16140 0
    ipw2200 141640 0
    ieee80211 29512 1 ipw2200
    ieee80211_crypt 6532 1 ieee80211
    tg3 121604 0
    libphy 18048 1 tg3
    acpi_cpufreq 12940 0
    freq_table 5632 2 cpufreq_ondemand,acpi_cpufreq
    processor 34732 3 thermal,acpi_cpufreq
    rtc_cmos 11424 0
    rtc_core 17564 1 rtc_cmos
    rtc_lib 4480 1 rtc_core
    jfs 176492 2
    sd_mod 27160 4
    ata_piix 18308 3
    pata_acpi 6016 0
    libata 153888 2 ata_piix,pata_acpi
    scsi_mod 96460 4 sr_mod,sg,sd_mod,libata
    dock 9616 1 libata
    [kde4@m67n ~]$ cat /proc/interrupts
    CPU0
    0: 1768365 XT-PIC-XT timer
    1: 8183 XT-PIC-XT i8042
    2: 0 XT-PIC-XT cascade
    4: 337446 XT-PIC-XT ipw2200, Intel 82801DB-ICH4, eth0
    5: 130988 XT-PIC-XT uhci_hcd:usb2
    7: 1 XT-PIC-XT parport0
    8: 2 XT-PIC-XT rtc0
    9: 6305 XT-PIC-XT acpi
    10: 6 XT-PIC-XT ehci_hcd:usb3, uhci_hcd:usb4, ohci1394
    11: 1562856 XT-PIC-XT uhci_hcd:usb1, radeon@pci:0000:01:00.0
    12: 611 XT-PIC-XT i8042
    14: 33188 XT-PIC-XT ata_piix
    15: 73880 XT-PIC-XT ata_piix
    NMI: 0 Non-maskable interrupts
    LOC: 771268 Local timer interrupts
    RES: 0 Rescheduling interrupts
    CAL: 0 function call interrupts
    TLB: 0 TLB shootdowns
    TRM: 0 Thermal event interrupts
    SPU: 0 Spurious interrupts
    ERR: 0
    MIS: 0
    hwd -e
    1180:0476 CardBus bridge: Ricoh Co Ltd module: -
    RL5c476 II
    1180:0476 CardBus bridge: Ricoh Co Ltd module: -
    RL5c476 II
    14e4:169c Ethernet controller: Broadcom Corporation module: tg3
    NetXtreme BCM5788 Gigabit Ethernet
    1180:0552 FireWire (IEEE 1394): Ricoh Co Ltd module: ohci1394
    R5C552 IEEE 1394 Controller
    8086:3340 Host bridge: Intel Corporation module: agpgart-intel
    82855PM Processor to I/O Controller
    8086:24ca IDE interface: Intel Corporation module: ata_piix
    82801DBM (ICH4-M) IDE Controller
    8086:24cc ISA bridge: Intel Corporation module: -
    82801DBM (ICH4-M) LPC Interface Bridge
    8086:24c6 Modem: Intel Corporation module: -
    82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller
    8086:24c5 Multimedia audio controller: Intel Corporation module: snd_intel8x0
    82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller
    8086:4220 Network controller: Intel Corporation module: ipw2200
    PRO/Wireless 2200BG [Calexico2] Network Connection
    8086:2448 PCI bridge: Intel Corporation module: -
    82801 Mobile PCI Bridge
    8086:3341 PCI bridge: Intel Corporation module: -
    82855PM Processor to AGP Controller
    8086:24c3 SMBus: Intel Corporation module: i801_smbus
    82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller
    8086:24c2 USB Controller: Intel Corporation module: uhci_hcd
    82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1
    8086:24c4 USB Controller: Intel Corporation module: uhci_hcd
    82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2
    8086:24c7 USB Controller: Intel Corporation module: uhci_hcd
    82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3
    8086:24cd USB Controller: Intel Corporation module: ehci_hcd
    82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller
    1002:4e50 VGA compatible controller: ATI Technologies Inc module: fglrx
    RV350 [Mobility Radeon 9600 M10]
    dmesg
    Linux version 2.6.27-ARCH (root@T-POWA-LX) (gcc version 4.3.2 (GCC) ) #1 SMP PREEMPT Sun Dec 21 09:31:10 UTC 2008
    PAT WC disabled due to known CPU erratum.
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000007ff40000 (usable)
    BIOS-e820: 000000007ff40000 - 000000007ff50000 (ACPI data)
    BIOS-e820: 000000007ff50000 - 0000000080000000 (ACPI NVS)
    DMI 2.3 present.
    AMI BIOS detected: BIOS may corrupt low RAM, working it around.
    last_pfn = 0x7ff40 max_arch_pfn = 0x100000
    kernel direct mapping tables up to 38000000 @ 10000-15000
    RAMDISK: 7fe5f000 - 7ff2f732
    Allocated new RAMDISK: 00511000 - 005e1732
    Move RAMDISK from 000000007fe5f000 - 000000007ff2f731 to 00511000 - 005e1731
    ACPI: RSDP 000F5DF0, 0014 (r0 ACPIAM)
    ACPI: RSDT 7FF40000, 002C (r1 A M I OEMRSDT 9000406 MSFT 97)
    ACPI: FACP 7FF40200, 0081 (r1 A M I OEMFACP 9000406 MSFT 97)
    ACPI: DSDT 7FF40400, 629D (r1 1ABSP 1ABSP001 1 MSFT 2000001)
    ACPI: FACS 7FF50000, 0040
    ACPI: OEMB 7FF50040, 0053 (r1 A M I OEMBIOS 9000406 MSFT 97)
    1151MB HIGHMEM available.
    896MB LOWMEM available.
    mapped low ram: 0 - 38000000
    low ram: 00000000 - 38000000
    bootmap 00011000 - 00018000
    (9 early reservations) ==> bootmem [0000000000 - 0038000000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    #3 [0000100000 - 000050d240] TEXT DATA BSS ==> [0000100000 - 000050d240]
    #4 [000050e000 - 0000511000] INIT_PG_TABLE ==> [000050e000 - 0000511000]
    #5 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
    #6 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000]
    #7 [0000511000 - 00005e1732] NEW RAMDISK ==> [0000511000 - 00005e1732]
    #8 [0000011000 - 0000018000] BOOTMAP ==> [0000011000 - 0000018000]
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    Normal 0x00001000 -> 0x00038000
    HighMem 0x00038000 -> 0x0007ff40
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0007ff40
    On node 0 totalpages: 523983
    free_area_init_node: node 0, pgdat c03da300, node_mem_map c1000200
    DMA zone: 3951 pages, LIFO batch:0
    Normal zone: 223520 pages, LIFO batch:31
    HighMem zone: 292417 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x408
    SMP: Allowing 1 CPUs, 0 hotplug CPUs
    Found and enabled local APIC!
    mapped APIC to ffffb000 (fee00000)
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Allocating PCI resources starting at 88000000 (gap: 80000000:80000000)
    PERCPU: Allocating 39324 bytes of per cpu data
    NR_CPUS: 16, nr_cpu_ids: 1, nr_node_ids 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 519888
    Kernel command line: root=/dev/sda2 ro acpi_sleep=s3_bios
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    TSC: PIT calibration confirmed by PMTIMER.
    TSC: using PMTIMER calibration value
    Detected 1500.049 MHz processor.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Memory: 2072868k/2096384k available (2157k kernel code, 22276k reserved, 843k data, 284k init, 1178880k highmem)
    virtual kernel memory layout:
    fixmap : 0xffee8000 - 0xfffff000 (1116 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf8800000 - 0xff7fe000 ( 111 MB)
    lowmem : 0xc0000000 - 0xf8000000 ( 896 MB)
    .init : 0xc03f5000 - 0xc043c000 ( 284 kB)
    .data : 0xc031b6d6 - 0xc03ee320 ( 843 kB)
    .text : 0xc0100000 - 0xc031b6d6 (2157 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    CPA: page pool initialized 1 of 1 pages preallocated
    SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Calibrating delay loop (skipped), value calculated using timer frequency.. 3001.10 BogoMIPS (lpj=5000163)
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 2048K
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 9k freed
    ACPI: Core revision 20080609
    ACPI: Checking initramfs for custom DSDT
    ACPI: setting ELCR to 0200 (from 0c30)
    weird, boot CPU (#0) not listedby the BIOS.
    SMP motherboard not detected.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (3001.10 BogoMIPS).
    net_namespace: 832 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xf0031, last bus=2
    PCI: Using configuration type 1 for base access
    ACPI: EC: Look up EC in DSDT
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    ACPI: EC: driver started in interrupt mode
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI: 0000:00:00.0 reg 10 32bit mmio: [e0000000, efffffff]
    PCI: 0000:00:1d.0 reg 20 io port: [e800, e81f]
    PCI: 0000:00:1d.1 reg 20 io port: [e880, e89f]
    PCI: 0000:00:1d.2 reg 20 io port: [ec00, ec1f]
    PCI: 0000:00:1d.7 reg 10 32bit mmio: [ffaffc00, ffafffff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.7: PME# disabled
    HPET not enabled in BIOS. You might try hpet=force boot option
    pci 0000:00:1f.0: Enabled i801 SMBus device
    pci 0000:00:1f.0: quirk: region 0400-047f claimed by ICH4 ACPI/GPIO/TCO
    pci 0000:00:1f.0: quirk: region 0500-053f claimed by ICH4 GPIO
    PCI: 0000:00:1f.1 reg 10 io port: [0, 7]
    PCI: 0000:00:1f.1 reg 14 io port: [0, 3]
    PCI: 0000:00:1f.1 reg 18 io port: [0, 7]
    PCI: 0000:00:1f.1 reg 1c io port: [0, 3]
    PCI: 0000:00:1f.1 reg 20 io port: [ffa0, ffaf]
    PCI: 0000:00:1f.1 reg 24 32bit mmio: [0, 3ff]
    PCI: 0000:00:1f.3 reg 20 io port: [540, 55f]
    PCI: 0000:00:1f.5 reg 10 io port: [ee00, eeff]
    PCI: 0000:00:1f.5 reg 14 io port: [e000, e03f]
    PCI: 0000:00:1f.5 reg 18 32bit mmio: [ffaff800, ffaff9ff]
    PCI: 0000:00:1f.5 reg 1c 32bit mmio: [ffaff400, ffaff4ff]
    pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
    pci 0000:00:1f.5: PME# disabled
    PCI: 0000:00:1f.6 reg 10 io port: [e400, e4ff]
    PCI: 0000:00:1f.6 reg 14 io port: [e080, e0ff]
    pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
    pci 0000:00:1f.6: PME# disabled
    PCI: 0000:01:00.0 reg 10 32bit mmio: [d0000000, d7ffffff]
    PCI: 0000:01:00.0 reg 14 io port: [d800, d8ff]
    PCI: 0000:01:00.0 reg 18 32bit mmio: [ff8f0000, ff8fffff]
    PCI: 0000:01:00.0 reg 30 32bit mmio: [ff8c0000, ff8dffff]
    pci 0000:01:00.0: supports D1
    pci 0000:01:00.0: supports D2
    PCI: bridge 0000:00:01.0 io port: [d000, dfff]
    PCI: bridge 0000:00:01.0 32bit mmio: [ff800000, ff8fffff]
    PCI: bridge 0000:00:01.0 32bit mmio pref: [ce900000, de9fffff]
    PCI: 0000:02:00.0 reg 10 32bit mmio: [ff9f0000, ff9fffff]
    pci 0000:02:00.0: PME# supported from D3hot D3cold
    pci 0000:02:00.0: PME# disabled
    PCI: 0000:02:01.0 reg 10 32bit mmio: [0, fff]
    pci 0000:02:01.0: supports D1
    pci 0000:02:01.0: supports D2
    pci 0000:02:01.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:02:01.0: PME# disabled
    PCI: 0000:02:01.1 reg 10 32bit mmio: [0, fff]
    pci 0000:02:01.1: supports D1
    pci 0000:02:01.1: supports D2
    pci 0000:02:01.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:02:01.1: PME# disabled
    PCI: 0000:02:01.2 reg 10 32bit mmio: [ff9ef800, ff9effff]
    pci 0000:02:01.2: PME# supported from D0 D3hot D3cold
    pci 0000:02:01.2: PME# disabled
    PCI: 0000:02:02.0 reg 10 32bit mmio: [ff9ee000, ff9eefff]
    pci 0000:02:02.0: PME# supported from D0 D3hot D3cold
    pci 0000:02:02.0: PME# disabled
    pci 0000:00:1e.0: transparent bridge
    PCI: bridge 0000:00:1e.0 32bit mmio: [ff900000, ff9fffff]
    PCI: bridge 0000:00:1e.0 32bit mmio pref: [dea00000, deafffff]
    bus 00 -> node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 6 7 11 12)
    ACPI: PCI Interrupt Link [LNKC] (IRQs *10 12)
    ACPI: PCI Interrupt Link [LNKD] (IRQs *5 6 10)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 6 11) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 7) *0, disabled.
    ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7) *0, disabled.
    ACPI: PCI Interrupt Link [LNKH] (IRQs 4 6 *10 12)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 15 devices
    ACPI: ACPI bus type pnp unregistered
    PCI: Using ACPI for IRQ routing
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    system 00:09: ioport range 0x480-0x48f has been reserved
    system 00:09: ioport range 0x5c0-0x5cf has been reserved
    system 00:0a: ioport range 0x4d0-0x4d1 has been reserved
    system 00:0c: iomem range 0xffc00000-0xffefffff has been reserved
    system 00:0d: ioport range 0x540-0x55f has been reserved
    system 00:0d: ioport range 0x400-0x47f has been reserved
    system 00:0d: ioport range 0x480-0x48f has been reserved
    system 00:0d: ioport range 0x500-0x53f has been reserved
    system 00:0d: ioport range 0x4c0-0x4cf has been reserved
    system 00:0d: iomem range 0xfec00000-0xfec00fff has been reserved
    system 00:0d: iomem range 0xfee00000-0xfee00fff has been reserved
    system 00:0e: iomem range 0x0-0x9ffff could not be reserved
    system 00:0e: iomem range 0xc0000-0xdffff could not be reserved
    system 00:0e: iomem range 0xe0000-0xfffff could not be reserved
    system 00:0e: iomem range 0x100000-0x7fffffff could not be reserved
    pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:01.0: IO window: 0xd000-0xdfff
    pci 0000:00:01.0: MEM window: 0xff800000-0xff8fffff
    pci 0000:00:01.0: PREFETCH window: 0x000000ce900000-0x000000de9fffff
    pci 0000:02:01.0: CardBus bridge, secondary bus 0000:03
    pci 0000:02:01.0: IO window: 0x001000-0x0010ff
    pci 0000:02:01.0: IO window: 0x001400-0x0014ff
    pci 0000:02:01.0: PREFETCH window: 0x8c000000-0x8fffffff
    pci 0000:02:01.0: MEM window: 0x90000000-0x93ffffff
    pci 0000:02:01.1: CardBus bridge, secondary bus 0000:07
    pci 0000:02:01.1: IO window: 0x001800-0x0018ff
    pci 0000:02:01.1: IO window: 0x001c00-0x001cff
    pci 0000:02:01.1: PREFETCH window: 0x94000000-0x97ffffff
    pci 0000:02:01.1: MEM window: 0x98000000-0x9bffffff
    pci 0000:00:1e.0: PCI bridge, secondary bus 0000:02
    pci 0000:00:1e.0: IO window: 0x1000-0x1fff
    pci 0000:00:1e.0: MEM window: 0xff900000-0xff9fffff
    pci 0000:00:1e.0: PREFETCH window: 0x000000dea00000-0x000000deafffff
    pci 0000:00:1e.0: enabling device (0106 -> 0107)
    pci 0000:00:1e.0: setting latency timer to 64
    pci 0000:02:01.0: enabling device (0000 -> 0003)
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 4
    PCI: setting IRQ 4 as level-triggered
    pci 0000:02:01.0: PCI INT A -> Link[LNKB] -> GSI 4 (level, low) -> IRQ 4
    pci 0000:02:01.0: setting latency timer to 64
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    PCI: setting IRQ 11 as level-triggered
    pci 0000:02:01.1: PCI INT B -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:02:01.1: setting latency timer to 64
    bus: 00 index 0 io port: [0, ffff]
    bus: 00 index 1 mmio: [0, ffffffff]
    bus: 01 index 0 io port: [d000, dfff]
    bus: 01 index 1 mmio: [ff800000, ff8fffff]
    bus: 01 index 2 mmio: [ce900000, de9fffff]
    bus: 01 index 3 mmio: [0, 0]
    bus: 02 index 0 io port: [1000, 1fff]
    bus: 02 index 1 mmio: [ff900000, ff9fffff]
    bus: 02 index 2 mmio: [dea00000, deafffff]
    bus: 02 index 3 io port: [0, ffff]
    bus: 02 index 4 mmio: [0, ffffffff]
    bus: 03 index 0 io port: [1000, 10ff]
    bus: 03 index 1 io port: [1400, 14ff]
    bus: 03 index 2 mmio: [8c000000, 8fffffff]
    bus: 03 index 3 mmio: [90000000, 93ffffff]
    bus: 07 index 0 io port: [1800, 18ff]
    bus: 07 index 1 io port: [1c00, 1cff]
    bus: 07 index 2 mmio: [94000000, 97ffffff]
    bus: 07 index 3 mmio: [98000000, 9bffffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs... done
    Freeing initrd memory: 833k freed
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1749
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:01:00.0: Boot video device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver4 ports, IRQ sharing disabled
    serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a NS16550A
    serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 4 (level, low) -> IRQ 4
    serial 0000:00:1f.6: PCI INT B disabled
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:PS2K,PNP0f12:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Detected active multiplexing controller, rev 1.1.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX0 port at 0x60,0x64 irq 12
    serio: i8042 AUX1 port at 0x60,0x64 irq 12
    serio: i8042 AUX2 port at 0x60,0x64 irq 12
    serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 284k freed
    input: AT Translated Set 2 keyboard as /class/input/input1
    Switched to high resolution mode on CPU 0
    No dock devices found.
    SCSI subsystem initialized
    libata version 3.00 loaded.
    pata_acpi 0000:00:1f.1: enabling device (0005 -> 0007)
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
    PCI: setting IRQ 10 as level-triggered
    pata_acpi 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10
    pata_acpi 0000:00:1f.1: setting latency timer to 64
    pata_acpi 0000:00:1f.1: PCI INT A disabled
    ata_piix 0000:00:1f.1: version 2.12
    ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10
    ata_piix 0000:00:1f.1: setting latency timer to 64
    scsi0 : ata_piix
    scsi1 : ata_piix
    ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
    ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
    ata1.00: ATA-8: SAMSUNG HM160HC, LQ100-10, max UDMA/100
    ata1.00: 312581808 sectors, multi 16: LBA48
    ata1.00: configured for UDMA/100
    ata2.00: ATAPI: TOSHIBA ODD-DVD SD-R6372, 1732, max UDMA/33
    ata2.00: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access ATA SAMSUNG HM160HC LQ10 PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM TOSHIBA ODD-DVD SD-R6372 1732 PQ: 0 ANSI: 5
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 312581808 512-byte hardware sectors (160042 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    sd 0:0:0:0: [sda] 312581808 512-byte hardware sectors (160042 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4
    sd 0:0:0:0: [sda] Attached SCSI disk
    JFS: nTxBlock = 8192, nTxLock = 65536
    rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month
    ACPI: Invalid PBLK length [7]
    ACPI: CPU0 (power states: C1[C1] C2[C2])
    processor ACPI0007:00: registered as cooling_device0
    Marking TSC unstable due to TSC halts in idle
    tg3.c:v3.94 (August 14, 2008)
    tg3 0000:02:00.0: PCI INT A -> Link[LNKB] -> GSI 4 (level, low) -> IRQ 4
    eth0: Tigon3 [partno(BCM95788A50) rev 3003 PHY(5705)] (PCI:33MHz:32-bit) 10/100/1000Base-T Ethernet 00:11:2f:48:63:7b
    eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] WireSpeed[0] TSOcap[1]
    eth0: dma_rwctrl[763f0000] dma_mask[32-bit]
    ieee80211_crypt: registered algorithm 'NULL'
    ieee80211: 802.11 data/management/control stack, git-1.1.13
    ieee80211: Copyright (C) 2004-2005 Intel Corporation <[email protected]>
    ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.2.2kmprq
    ipw2200: Copyright(c) 2003-2006 Intel Corporation
    ipw2200 0000:02:02.0: PCI INT A -> Link[LNKB] -> GSI 4 (level, low) -> IRQ 4
    ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
    firmware: requesting ipw2200-bss.fw
    ipw2200: Detected geography ZZM (11 802.11bg channels, 0 802.11a channels)
    loop: module loaded
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    usbcore: registered new interface driver usblp
    Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 4 (level, low) -> IRQ 4
    Intel ICH 0000:00:1f.5: setting latency timer to 64
    intel8x0_measure_ac97_clock: measured 52750 usecs
    intel8x0: clocking to 48000
    Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 4 (level, low) -> IRQ 4
    Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
    MC'97 1 converters and GPIO not ready (0xff00)
    Asus Laptop ACPI Extras version 0.30
    M6NE model detected, supported
    vboxdrv: Trying to deactivate the NMI watchdog permanently...
    vboxdrv: Successfully done.
    vboxdrv: Found 1 processor cores.
    vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    vboxdrv: Successfully loaded version 2.1.0 (interface 0x000a0008).
    ACPI: AC Adapter [AC] (on-line)
    ACPI: Battery Slot [BAT0] (battery absent)
    ACPI: Battery Slot [BAT1] (battery absent)
    input: Power Button (FF) as /class/input/input2
    ACPI: Power Button (FF) [PWRF]
    input: Lid Switch as /class/input/input3
    ACPI: Lid Switch [LID]
    input: Sleep Button (CM) as /class/input/input4
    ACPI: Sleep Button (CM) [SLPB]
    input: Power Button (CM) as /class/input/input5
    ACPI: Power Button (CM) [PWRB]
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [THRM] (63 C)
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    USB Universal Host Controller Interface driver v3.0
    uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    uhci_hcd 0000:00:1d.0: setting latency timer to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:1d.0: irq 11, io base 0x0000e800
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    Linux agpgart interface v0.103
    Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
    agpgart-intel 0000:00:00.0: Intel 855PM Chipset
    agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 5
    PCI: setting IRQ 5 as level-triggered
    uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 5 (level, low) -> IRQ 5
    uhci_hcd 0000:00:1d.1: setting latency timer to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1d.1: irq 5, io base 0x0000e880
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    iTCO_vendor_support: vendor-support=0
    iTCO_wdt: Intel TCO WatchDog Timer Driver v1.03 (30-Apr-2008)
    iTCO_wdt: Found a ICH4-M TCO device (Version=1, TCOBASE=0x0460)
    iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    scsi 1:0:0:0: Attached scsi generic sg1 type 5
    Driver 'sr' needs updating - please use bus_type methods
    sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 10
    ehci_hcd 0000:00:1d.7: PCI INT D -> Link[LNKH] -> GSI 10 (level, low) -> IRQ 10
    ehci_hcd 0000:00:1d.7: setting latency timer to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 3
    ehci_hcd 0000:00:1d.7: debug port 1
    ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
    ehci_hcd 0000:00:1d.7: irq 10, io mem 0xffaffc00
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 6 ports detected
    intel_rng: FWH not detected
    uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10
    uhci_hcd 0000:00:1d.2: setting latency timer to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.2: irq 10, io base 0x0000ec00
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 4 (level, low) -> IRQ 4
    usb 2-1: new low speed USB device using uhci_hcd and address 2
    usb 2-1: configuration #1 chosen from 1 choice
    Synaptics Touchpad, model: 1, fw: 4.6, id: 0x925ea1, caps: 0x80471b/0x0
    input: SynPS/2 Synaptics TouchPad as /class/input/input6
    NET: Registered protocol family 23
    parport_pc 00:08: reported by Plug and Play ACPI
    parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA]
    nsc-ircc, chip->init
    nsc-ircc, Found chip at base=0x02e
    nsc-ircc, driver loaded (Dag Brattli)
    nsc_ircc_open(), can't get iobase of 0x2f8
    nsc-ircc, Found chip at base=0x02e
    nsc-ircc, driver loaded (Dag Brattli)
    nsc_ircc_open(), can't get iobase of 0x2f8
    nsc-ircc 00:07: disabled
    ACPI: \_SB_.PCI0.IDE0.CHN1.DRV0: found ejectable bay
    ACPI: \_SB_.PCI0.IDE0.CHN1.DRV0: Adding notify handler
    ACPI: Error installing bay notify handler
    input: Video Bus as /class/input/input7
    ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    ohci1394 0000:02:01.2: PCI INT C -> Link[LNKC] -> GSI 10 (level, low) -> IRQ 10
    input: PC Speaker as /class/input/input8
    ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[10] MMIO=[ff9ef800-ff9effff] Max Packet=[2048] IR/IT contexts=[4/4]
    lp0: using parport0 (interrupt-driven).
    ppdev: user-space parallel port driver
    usbcore: registered new interface driver hiddev
    input: Logitech Optical USB Mouse as /class/input/input9
    input,hidraw0: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:1d.1-1
    usbcore: registered new interface driver usbhid
    usbhid: v2.6:USB HID core driver
    ieee1394: Host added: ID:BUS[0-00:1023] GUID[00e01800031d0e5a]
    Adding 979956k swap on /dev/sda4. Priority:-1 extents:1 across:979956k
    Clocksource tsc unstable (delta = -299997836 ns)
    warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use)
    pci 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [drm] Initialized drm 1.1.0 20060810
    [drm] Initialized radeon 1.29.0 20080528 on minor 0
    agpgart-intel 0000:00:00.0: AGP 2.0 bridge
    agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
    pci 0000:01:00.0: putting AGP V2 device into 4x mode
    [drm] Setting GART location based on new memory map
    [drm] Loading R300 Microcode
    [drm] Num pipes: 1
    [drm] writeback test succeeded in 2 usecs
    tg3: eth0: Link is up at 100 Mbps, full duplex.
    tg3: eth0: Flow control is on for TX and on for RX.
    ata1.00: configured for UDMA/100
    ata1: EH complete
    sd 0:0:0:0: [sda] 312581808 512-byte hardware sectors (160042 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    iTCO_wdt: Watchdog Module Unloaded.
    iTCO_vendor_support: Module Unloaded
    Intel ICH Modem 0000:00:1f.6: PCI INT B disabled
    usb 1-1: new full speed USB device using uhci_hcd and address 2
    usb 1-1: configuration #1 chosen from 1 choice
    usb 1-1: reset full speed USB device using uhci_hcd and address 2
    usb 1-1: device firmware changed
    usb 1-1: USB disconnect, address 2
    usb 1-1: new full speed USB device using uhci_hcd and address 3
    usb 1-1: configuration #1 chosen from 1 choice
    usbcore: registered new interface driver snd-usb-audio
    tg3: eth0: Link is up at 100 Mbps, full duplex.
    tg3: eth0: Flow control is on for TX and on for RX.
    tg3: eth0: Link is up at 100 Mbps, full duplex.
    tg3: eth0: Flow control is on for TX and on for RX.
    Please tell me if you ned any more data.
    Greets redbit
    Last edited by redbit (2009-01-05 19:08:00)

    ok, at least Jack is doing better now. Don't know why, I just play around with limits.conf, /etc/pam.d/su and deleted the content of /dev/shm directory.
    Now the settings are the same as before, but  I'm getting far less xruns and luckily without these disturbing plopps.
    Last edited by redbit (2009-01-07 15:52:36)

  • Grub-BIOS UUID-base Arch/LXDE fails to boot completly 2/3 of times

    Hi,
    I have a GRUB-BIOS systemd based Arch/LXDE fresh installation (latest 2/2013 image).
    About 2 out of 3 times I boot the system freezes after  displaying that the  /dev/sda2 (my root) is clean.
    Yet, about 1 out of 3 trials, boot completes without problems.
    In either case I don't add any parameters, and just wait for Grub's timeout.
    The same happen with the Linux fallback as well.
    This is a single drive (sda) netbook installation.
    From the journalctl (see below) it seems to me that the alleged stuck boot almost completed!
    I'd appreciate any help!
    Below please find:
    1. Output of journalctl relating to the last two boots: the 17:33 boot got stuck, whereas I'm writing now after successfully rebooting at 17:36
    2. Copy of my fstab
    3. Copy of grub.cfg
    Thanks a lot!
    ----------copy of journalctl of last 2 boots (sorry, it's long)--------------------
    -- Logs begin at Sat 2013-02-16 11:47:04 IST, end at Sat 2013-02-23 17:36:36 IST. --
    [1;39m-- Reboot --[0m
    Feb 23 17:33:34 miki_netbook systemd-journal[119]: Allowing runtime journal files to grow to 100.3M.
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys cpuset
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys cpu
    Feb 23 17:33:34 miki_netbook kernel: Linux version 3.7.9-1-ARCH (nobody@foutrelis) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Mon Feb 18 02:27:20 EET 2013
    Feb 23 17:33:34 miki_netbook kernel: Atom PSE erratum detected, BIOS microcode update recommended
    Feb 23 17:33:34 miki_netbook kernel: Disabled fast string operations
    Feb 23 17:33:34 miki_netbook kernel: e820: BIOS-provided physical RAM map:
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007f375fff] usable
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f376000-0x000000007f3befff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f3bf000-0x000000007f46cfff] ACPI data
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f46d000-0x000000007f4befff] ACPI NVS
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f4bf000-0x000000007f4fffff] ACPI data
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x000000007f500000-0x000000007fffffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Feb 23 17:33:34 miki_netbook kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
    Feb 23 17:33:34 miki_netbook kernel: Notice: NX (Execute Disable) protection missing in CPU!
    Feb 23 17:33:34 miki_netbook kernel: SMBIOS 2.4 present.
    Feb 23 17:33:34 miki_netbook kernel: DMI: Quanta UW1/Base Board Product Name, BIOS Q3A51 2/05/2009
    Feb 23 17:33:34 miki_netbook kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Feb 23 17:33:34 miki_netbook kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Feb 23 17:33:34 miki_netbook kernel: e820: last_pfn = 0x7f376 max_arch_pfn = 0x100000
    Feb 23 17:33:34 miki_netbook kernel: MTRR default type: uncachable
    Feb 23 17:33:34 miki_netbook kernel: MTRR fixed ranges enabled:
    Feb 23 17:33:34 miki_netbook kernel: 00000-9FFFF write-back
    Feb 23 17:33:34 miki_netbook kernel: A0000-BFFFF uncachable
    Feb 23 17:33:34 miki_netbook kernel: C0000-C7FFF write-protect
    Feb 23 17:33:34 miki_netbook kernel: C8000-EFFFF uncachable
    Feb 23 17:33:34 miki_netbook kernel: F0000-FFFFF write-protect
    Feb 23 17:33:34 miki_netbook kernel: MTRR variable ranges enabled:
    Feb 23 17:33:34 miki_netbook kernel: 0 base 0FFFE0000 mask 0FFFE0000 write-protect
    Feb 23 17:33:34 miki_netbook kernel: 1 base 0FFFC0000 mask 0FFFE0000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 2 base 000000000 mask 0C0000000 write-back
    Feb 23 17:33:34 miki_netbook kernel: 3 base 040000000 mask 0C0000000 write-back
    Feb 23 17:33:34 miki_netbook kernel: 4 base 07F800000 mask 0FF800000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 5 base 07F600000 mask 0FFE00000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 6 base 07F500000 mask 0FFF00000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: 7 base 000000000 mask 0FFFE0000 uncachable
    Feb 23 17:33:34 miki_netbook kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Feb 23 17:33:34 miki_netbook kernel: initial memory mapped: [mem 0x00000000-0x01bfffff]
    Feb 23 17:33:34 miki_netbook kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Feb 23 17:33:34 miki_netbook kernel: init_memory_mapping: [mem 0x00000000-0x377fdfff]
    Feb 23 17:33:34 miki_netbook kernel: [mem 0x00000000-0x377fdfff] page 4k
    Feb 23 17:33:34 miki_netbook kernel: kernel direct mapping tables up to 0x377fdfff @ [mem 0x01b1f000-0x01bfffff]
    Feb 23 17:33:34 miki_netbook kernel: RAMDISK: [mem 0x37a72000-0x37d30fff]
    Feb 23 17:33:34 miki_netbook kernel: Allocated new RAMDISK: [mem 0x3753f000-0x377fd99b]
    Feb 23 17:33:34 miki_netbook kernel: Move RAMDISK from [mem 0x37a72000-0x37d3099b] to [mem 0x3753f000-0x377fd99b]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: RSDP 000fe020 00024 (v02 haier)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: XSDT 7f4fe120 00064 (v01 haier computer 00000001 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: FACP 7f4fc000 000F4 (v04 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: DSDT 7f4f3000 04DDE (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: FACS 7f488000 00040
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f4fd000 004C4 (v02 PmRef CpuPm 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: HPET 7f4fb000 00038 (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: APIC 7f4fa000 00068 (v02 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: MCFG 7f4f9000 0003C (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: ASF! 7f4f8000 000A5 (v32 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SLIC 7f4f2000 00180 (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: BOOT 7f4f1000 00028 (v01 haier computer 00000001 MSFT 01000013)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Local APIC address 0xfee00000
    Feb 23 17:33:34 miki_netbook kernel: 1147MB HIGHMEM available.
    Feb 23 17:33:34 miki_netbook kernel: 887MB LOWMEM available.
    Feb 23 17:33:34 miki_netbook kernel: mapped low ram: 0 - 377fe000
    Feb 23 17:33:34 miki_netbook kernel: low ram: 0 - 377fe000
    Feb 23 17:33:34 miki_netbook kernel: Zone ranges:
    Feb 23 17:33:34 miki_netbook kernel: DMA [mem 0x00010000-0x00ffffff]
    Feb 23 17:33:34 miki_netbook kernel: Normal [mem 0x01000000-0x377fdfff]
    Feb 23 17:33:34 miki_netbook kernel: HighMem [mem 0x377fe000-0x7f375fff]
    Feb 23 17:33:34 miki_netbook kernel: Movable zone start for each node
    Feb 23 17:33:34 miki_netbook kernel: Early memory node ranges
    Feb 23 17:33:34 miki_netbook kernel: node 0: [mem 0x00010000-0x0009efff]
    Feb 23 17:33:34 miki_netbook kernel: node 0: [mem 0x00100000-0x7f375fff]
    Feb 23 17:33:34 miki_netbook kernel: On node 0 totalpages: 520965
    Feb 23 17:33:34 miki_netbook kernel: free_area_init_node: node 0, pgdat c158d880, node_mem_map f6556200
    Feb 23 17:33:34 miki_netbook kernel: DMA zone: 32 pages used for memmap
    Feb 23 17:33:34 miki_netbook kernel: DMA zone: 0 pages reserved
    Feb 23 17:33:34 miki_netbook kernel: DMA zone: 3951 pages, LIFO batch:0
    Feb 23 17:33:34 miki_netbook kernel: Normal zone: 1744 pages used for memmap
    Feb 23 17:33:34 miki_netbook kernel: Normal zone: 221486 pages, LIFO batch:31
    Feb 23 17:33:34 miki_netbook kernel: HighMem zone: 2295 pages used for memmap
    Feb 23 17:33:34 miki_netbook kernel: HighMem zone: 291457 pages, LIFO batch:31
    Feb 23 17:33:34 miki_netbook kernel: Using APIC driver default
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PM-Timer IO Port: 0x408
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Local APIC address 0xfee00000
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Feb 23 17:33:34 miki_netbook kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Feb 23 17:33:34 miki_netbook kernel: IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    Feb 23 17:33:34 miki_netbook kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IRQ0 used by override.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IRQ2 used by override.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: IRQ9 used by override.
    Feb 23 17:33:34 miki_netbook kernel: Using ACPI (MADT) for SMP configuration information
    Feb 23 17:33:34 miki_netbook kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Feb 23 17:33:34 miki_netbook kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    Feb 23 17:33:34 miki_netbook kernel: nr_irqs_gsi: 40
    Feb 23 17:33:34 miki_netbook kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Feb 23 17:33:34 miki_netbook kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Feb 23 17:33:34 miki_netbook kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Feb 23 17:33:34 miki_netbook kernel: e820: [mem 0x80000000-0xdfffffff] available for PCI devices
    Feb 23 17:33:34 miki_netbook kernel: Booting paravirtualized kernel on bare hardware
    Feb 23 17:33:34 miki_netbook kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    Feb 23 17:33:34 miki_netbook kernel: PERCPU: Embedded 13 pages/cpu @f6530000 s32448 r0 d20800 u53248
    Feb 23 17:33:34 miki_netbook kernel: pcpu-alloc: s32448 r0 d20800 u53248 alloc=13*4096
    Feb 23 17:33:34 miki_netbook kernel: pcpu-alloc: [0] 0 [0] 1
    Feb 23 17:33:34 miki_netbook kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 516894
    Feb 23 17:33:34 miki_netbook kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=7cbfd7ba-38ed-40b5-b5b6-041c1c0f2677 ro quiet
    Feb 23 17:33:34 miki_netbook kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Feb 23 17:33:34 miki_netbook kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Feb 23 17:33:34 miki_netbook kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Feb 23 17:33:34 miki_netbook kernel: __ex_table already sorted, skipping sort
    Feb 23 17:33:34 miki_netbook kernel: Initializing CPU#0
    Feb 23 17:33:34 miki_netbook kernel: allocated 4168496 bytes of page_cgroup
    Feb 23 17:33:34 miki_netbook kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Feb 23 17:33:34 miki_netbook kernel: Initializing HighMem for node 0 (000377fe:0007f376)
    Feb 23 17:33:34 miki_netbook kernel: Memory: 2051608k/2084312k available (4099k kernel code, 32252k reserved, 1644k data, 556k init, 1175008k highmem)
    Feb 23 17:33:34 miki_netbook kernel: [379B blob data]
    Feb 23 17:33:34 miki_netbook kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Feb 23 17:33:34 miki_netbook kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Feb 23 17:33:34 miki_netbook kernel: Preemptible hierarchical RCU implementation.
    Feb 23 17:33:34 miki_netbook kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Feb 23 17:33:34 miki_netbook kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Feb 23 17:33:34 miki_netbook kernel: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
    Feb 23 17:33:34 miki_netbook kernel: NR_IRQS:2304 nr_irqs:512 16
    Feb 23 17:33:34 miki_netbook kernel: CPU 0 irqstacks, hard=f5c08000 soft=f5c0a000
    Feb 23 17:33:34 miki_netbook kernel: Console: colour dummy device 80x25
    Feb 23 17:33:34 miki_netbook kernel: console [tty0] enabled
    Feb 23 17:33:34 miki_netbook kernel: hpet clockevent registered
    Feb 23 17:33:34 miki_netbook kernel: tsc: Fast TSC calibration failed
    Feb 23 17:33:34 miki_netbook kernel: tsc: PIT calibration matches HPET. 1 loops
    Feb 23 17:33:34 miki_netbook kernel: tsc: Detected 1595.989 MHz processor
    Feb 23 17:33:34 miki_netbook kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3193.97 BogoMIPS (lpj=5319963)
    Feb 23 17:33:34 miki_netbook kernel: pid_max: default: 32768 minimum: 301
    Feb 23 17:33:34 miki_netbook kernel: Security Framework initialized
    Feb 23 17:33:34 miki_netbook kernel: AppArmor: AppArmor disabled by boot time parameter
    Feb 23 17:33:34 miki_netbook kernel: Mount-cache hash table entries: 512
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys cpuacct
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys memory
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys devices
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys freezer
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys net_cls
    Feb 23 17:33:34 miki_netbook kernel: Initializing cgroup subsys blkio
    Feb 23 17:33:34 miki_netbook kernel: Atom PSE erratum detected, BIOS microcode update recommended
    Feb 23 17:33:34 miki_netbook kernel: Disabled fast string operations
    Feb 23 17:33:34 miki_netbook kernel: CPU: Physical Processor ID: 0
    Feb 23 17:33:34 miki_netbook kernel: CPU: Processor Core ID: 0
    Feb 23 17:33:34 miki_netbook kernel: mce: CPU supports 5 MCE banks
    Feb 23 17:33:34 miki_netbook kernel: CPU0: Thermal monitoring enabled (TM2)
    Feb 23 17:33:34 miki_netbook kernel: process: using mwait in idle threads
    Feb 23 17:33:34 miki_netbook kernel: [113B blob data]
    Feb 23 17:33:34 miki_netbook kernel: Freeing SMP alternatives: 16k freed
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Core revision 20120913
    Feb 23 17:33:34 miki_netbook kernel: ftrace: allocating 17730 entries in 35 pages
    Feb 23 17:33:34 miki_netbook kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Feb 23 17:33:34 miki_netbook kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Feb 23 17:33:34 miki_netbook kernel: smpboot: CPU0: Intel(R) Atom(TM) CPU N270 @ 1.60GHz (fam: 06, model: 1c, stepping: 02)
    Feb 23 17:33:34 miki_netbook kernel: Performance Events: PEBS fmt0+, LBR disabled due to erratumAtom events, Intel PMU driver.
    Feb 23 17:33:34 miki_netbook kernel: ... version: 3
    Feb 23 17:33:34 miki_netbook kernel: ... bit width: 40
    Feb 23 17:33:34 miki_netbook kernel: ... generic registers: 2
    Feb 23 17:33:34 miki_netbook kernel: ... value mask: 000000ffffffffff
    Feb 23 17:33:34 miki_netbook kernel: ... max period: 000000007fffffff
    Feb 23 17:33:34 miki_netbook kernel: ... fixed-purpose events: 3
    Feb 23 17:33:34 miki_netbook kernel: ... event mask: 0000000700000003
    Feb 23 17:33:34 miki_netbook kernel: CPU 1 irqstacks, hard=f5cc0000 soft=f5cc2000
    Feb 23 17:33:34 miki_netbook kernel: smpboot: Booting Node 0, Processors #1 OK
    Feb 23 17:33:34 miki_netbook kernel: Initializing CPU#1
    Feb 23 17:33:34 miki_netbook kernel: Atom PSE erratum detected, BIOS microcode update recommended
    Feb 23 17:33:34 miki_netbook kernel: Disabled fast string operations
    Feb 23 17:33:34 miki_netbook kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Feb 23 17:33:34 miki_netbook kernel: Brought up 2 CPUs
    Feb 23 17:33:34 miki_netbook kernel: smpboot: Total of 2 processors activated (6386.95 BogoMIPS)
    Feb 23 17:33:34 miki_netbook kernel: devtmpfs: initialized
    Feb 23 17:33:34 miki_netbook kernel: PM: Registering ACPI NVS region [mem 0x7f46d000-0x7f4befff] (335872 bytes)
    Feb 23 17:33:34 miki_netbook kernel: RTC time: 15:33:30, date: 02/23/13
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 16
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type pci registered
    Feb 23 17:33:34 miki_netbook kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 23 17:33:34 miki_netbook kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using MMCONFIG for extended config space
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using configuration type 1 for base access
    Feb 23 17:33:34 miki_netbook kernel: bio: create slab <bio-0> at 0
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(Module Device)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(Processor Device)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: EC: Look up EC in DSDT
    Feb 23 17:33:34 miki_netbook kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f380c90 00239 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 00239 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f37fe10 001C7 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 001C7 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f380f10 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT 7f37ef10 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Dynamic OEM Table Load:
    Feb 23 17:33:34 miki_netbook kernel: ACPI: SSDT (null) 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Interpreter enabled
    Feb 23 17:33:34 miki_netbook kernel: ACPI: (supports S0 S3 S4 S5)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Using IOAPIC for interrupt routing
    Feb 23 17:33:34 miki_netbook kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Feb 23 17:33:34 miki_netbook kernel: ACPI: No dock devices found.
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20120913/dsfield-211)
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f5c26dc8), AE_ALREADY_EXISTS (20120913/psparse-536)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Feb 23 17:33:34 miki_netbook kernel: PCI host bridge to bus 0000:00
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:00.0: [8086:27ac] type 00 class 0x060000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: [8086:27ae] type 00 class 0x030000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 10: [mem 0x94280000-0x942fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 14: [io 0x40c0-0x40c7]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: reg 1c: [mem 0x94300000-0x9433ffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.1: [8086:27a6] type 00 class 0x038000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.1: reg 10: [mem 0x94200000-0x9427ffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1b.0: reg 10: [mem 0x94340000-0x94343fff 64bit]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.0: reg 20: [io 0x4080-0x409f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.1: reg 20: [io 0x4060-0x407f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.2: reg 20: [io 0x4040-0x405f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.3: reg 20: [io 0x4020-0x403f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.7: reg 10: [mem 0x94344400-0x943447ff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0068 (mask 0007)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: [8086:27c4] type 00 class 0x010180
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 10: [io 0x0000-0x0007]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 14: [io 0x0000-0x0003]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 18: [io 0x0000-0x0007]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 1c: [io 0x0000-0x0003]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: reg 20: [io 0x40a0-0x40af]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1f.3: reg 20: [io 0x4000-0x401f]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x93100000-0x941fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: [10ec:8136] type 00 class 0x020000
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 10: [io 0x1000-0x10ff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 18: [mem 0x91010000-0x91010fff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 20: [mem 0x91000000-0x9100ffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: reg 30: [mem 0xffff0000-0xffffffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: supports D1 D2
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [io 0x1000-0x2fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x92100000-0x930fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x91000000-0x920fffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: on NUMA node 0
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20120913/dsfield-211)
    Feb 23 17:33:34 miki_netbook kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f5c26dc8), AE_ALREADY_EXISTS (20120913/psparse-536)
    Feb 23 17:33:34 miki_netbook kernel: pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Feb 23 17:33:34 miki_netbook kernel: pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Feb 23 17:33:34 miki_netbook kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Feb 23 17:33:34 miki_netbook kernel: vgaarb: loaded
    Feb 23 17:33:34 miki_netbook kernel: vgaarb: bridge control possible 0000:00:02.0
    Feb 23 17:33:34 miki_netbook kernel: PCI: Using ACPI for IRQ routing
    Feb 23 17:33:34 miki_netbook kernel: PCI: pci_cache_line_size set to 64 bytes
    Feb 23 17:33:34 miki_netbook kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Feb 23 17:33:34 miki_netbook kernel: e820: reserve RAM buffer [mem 0x7f376000-0x7fffffff]
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: Initializing
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: domain hash size = 128
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Feb 23 17:33:34 miki_netbook kernel: NetLabel: unlabeled traffic allowed by default
    Feb 23 17:33:34 miki_netbook kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Feb 23 17:33:34 miki_netbook kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Feb 23 17:33:34 miki_netbook kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Feb 23 17:33:34 miki_netbook kernel: Switching to clocksource hpet
    Feb 23 17:33:34 miki_netbook kernel: pnp: PnP ACPI init
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type pnp registered
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [bus 00-ff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [io 0x0000-0x0cf7 window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [io 0x0d00-0xffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000cc000-0x000cffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000dc000-0x000dffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000ec000-0x000effff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x000f0000-0x000fffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: [mem 0x80000000-0xfebfffff window]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x002e-0x002f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0068-0x006f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0200-0x020f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0061]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0070]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0080]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0092]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x00b2-0x00b3]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0063]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0065]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0067]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0600-0x060f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0610]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0800-0x080f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0400-0x047f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [io 0x0500-0x053f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xe0000000-0xefffffff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed14000-0xfed17fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed18000-0xfed18fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfed19000-0xfed19fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfec00000-0xfec00fff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:01: [mem 0xfee00000-0xfee00fff]
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0200-0x020f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0600-0x060f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0610] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0800-0x080f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0400-0x047f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [io 0x0500-0x053f] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Feb 23 17:33:34 miki_netbook kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x0000-0x001f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x0081-0x0091]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x0093-0x009f]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [io 0x00c0-0x00df]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: [dma 4]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:03: [io 0x0070-0x0077]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: [irq 0 disabled]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: [irq 8]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: [mem 0xfed00000-0xfed003ff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:05: [io 0x00f0]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:05: [irq 13]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:06: [mem 0xff800000-0xffffffff]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:06: Plug and Play ACPI device, IDs INT0800 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: [io 0x0060]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: [io 0x0064]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: [irq 1]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:08: [irq 12]
    Feb 23 17:33:34 miki_netbook kernel: pnp 00:08: Plug and Play ACPI device, IDs SYN102c SYN1000 SYN0002 PNP0f13 (active)
    Feb 23 17:33:34 miki_netbook kernel: pnp: PnP ACPI: found 9 devices
    Feb 23 17:33:34 miki_netbook kernel: ACPI: ACPI bus type pnp unregistered
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x93100000-0x941fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.0: bridge window [mem 0x90000000-0x90ffffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:02:00.0: BAR 6: assigned [mem 0x91020000-0x9102ffff pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [io 0x1000-0x2fff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x92100000-0x930fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1c.1: bridge window [mem 0x91000000-0x920fffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: PCI bridge to [bus 03]
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:1e.0: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:01: resource 1 [mem 0x93100000-0x941fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:01: resource 2 [mem 0x90000000-0x90ffffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:02: resource 0 [io 0x1000-0x2fff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:02: resource 1 [mem 0x92100000-0x930fffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:02: resource 2 [mem 0x91000000-0x920fffff 64bit pref]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    Feb 23 17:33:34 miki_netbook kernel: pci_bus 0000:03: resource 7 [mem 0x80000000-0xfebfffff]
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 2
    Feb 23 17:33:34 miki_netbook kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Feb 23 17:33:34 miki_netbook kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Feb 23 17:33:34 miki_netbook kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Feb 23 17:33:34 miki_netbook kernel: TCP: reno registered
    Feb 23 17:33:34 miki_netbook kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Feb 23 17:33:34 miki_netbook kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 1
    Feb 23 17:33:34 miki_netbook kernel: pci 0000:00:02.0: Boot video device
    Feb 23 17:33:34 miki_netbook kernel: PCI: CLS 0 bytes, default 64
    Feb 23 17:33:34 miki_netbook kernel: Unpacking initramfs...
    Feb 23 17:33:34 miki_netbook kernel: Freeing initrd memory: 2812k freed
    Feb 23 17:33:34 miki_netbook kernel: Simple Boot Flag value 0x5 read from CMOS RAM was invalid
    Feb 23 17:33:34 miki_netbook kernel: Simple Boot Flag at 0x44 set to 0x1
    Feb 23 17:33:34 miki_netbook kernel: apm: BIOS not found.
    Feb 23 17:33:34 miki_netbook kernel: audit: initializing netlink socket (disabled)
    Feb 23 17:33:34 miki_netbook kernel: type=2000 audit(1361633610.386:1): initialized
    Feb 23 17:33:34 miki_netbook kernel: bounce pool size: 64 pages
    Feb 23 17:33:34 miki_netbook kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Feb 23 17:33:34 miki_netbook kernel: VFS: Disk quotas dquot_6.5.2
    Feb 23 17:33:34 miki_netbook kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Feb 23 17:33:34 miki_netbook kernel: msgmni has been set to 1717
    Feb 23 17:33:34 miki_netbook kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Feb 23 17:33:34 miki_netbook kernel: io scheduler noop registered
    Feb 23 17:33:34 miki_netbook kernel: io scheduler deadline registered
    Feb 23 17:33:34 miki_netbook kernel: io scheduler cfq registered (default)
    Feb 23 17:33:34 miki_netbook kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    Feb 23 17:33:34 miki_netbook kernel: pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    Feb 23 17:33:34 miki_netbook kernel: vesafb: mode is 640x480x32, linelength=2560, pages=0
    Feb 23 17:33:34 miki_netbook kernel: vesafb: scrolling: redraw
    Feb 23 17:33:34 miki_netbook kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Feb 23 17:33:34 miki_netbook kernel: vesafb: framebuffer at 0x80000000, mapped to 0xf8080000, using 1216k, total 1216k
    Feb 23 17:33:34 miki_netbook kernel: Console: switching to colour frame buffer device 80x30
    Feb 23 17:33:34 miki_netbook kernel: fb0: VESA VGA frame buffer device
    Feb 23 17:33:34 miki_netbook kernel: intel_idle: MWAIT substates: 0x20220
    Feb 23 17:33:34 miki_netbook kernel: intel_idle: v0.4 model 0x1C
    Feb 23 17:33:34 miki_netbook kernel: intel_idle: lapic_timer_reliable_states 0x2
    Feb 23 17:33:34 miki_netbook kernel: tsc: Marking TSC unstable due to TSC halts in idle states deeper than C2
    Feb 23 17:33:34 miki_netbook kernel: GHES: HEST is not enabled!
    Feb 23 17:33:34 miki_netbook kernel: isapnp: Scanning for PnP cards...
    Feb 23 17:33:34 miki_netbook kernel: isapnp: No Plug & Play device found
    Feb 23 17:33:34 miki_netbook kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Feb 23 17:33:34 miki_netbook kernel: i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
    Feb 23 17:33:34 miki_netbook kernel: i8042: Warning: Keylock active
    Feb 23 17:33:34 miki_netbook kernel: i8042: Detected active multiplexing controller, rev 1.1
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Feb 23 17:33:34 miki_netbook kernel: mousedev: PS/2 mouse device common for all mice
    Feb 23 17:33:34 miki_netbook kernel: rtc_cmos 00:03: RTC can wake from S4
    Feb 23 17:33:34 miki_netbook kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Feb 23 17:33:34 miki_netbook kernel: rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    Feb 23 17:33:34 miki_netbook kernel: cpuidle: using governor ladder
    Feb 23 17:33:34 miki_netbook kernel: cpuidle: using governor menu
    Feb 23 17:33:34 miki_netbook kernel: EFI Variables Facility v0.08 2004-May-17
    Feb 23 17:33:34 miki_netbook kernel: drop_monitor: Initializing network drop monitor service
    Feb 23 17:33:34 miki_netbook kernel: TCP: cubic registered
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 10
    Feb 23 17:33:34 miki_netbook kernel: NET: Registered protocol family 17
    Feb 23 17:33:34 miki_netbook kernel: Key type dns_resolver registered
    Feb 23 17:33:34 miki_netbook kernel: Using IPI No-Shortcut mode
    Feb 23 17:33:34 miki_netbook kernel: PM: Hibernation image not present or could not be loaded.
    Feb 23 17:33:34 miki_netbook kernel: registered taskstats version 1
    Feb 23 17:33:34 miki_netbook kernel: Magic number: 1:324:589
    Feb 23 17:33:34 miki_netbook kernel: rtc_cmos 00:03: setting system clock to 2013-02-23 15:33:31 UTC (1361633611)
    Feb 23 17:33:34 miki_netbook kernel: Freeing unused kernel memory: 556k freed
    Feb 23 17:33:34 miki_netbook kernel: Write protecting the kernel text: 4100k
    Feb 23 17:33:34 miki_netbook kernel: Write protecting the kernel read-only data: 1256k
    Feb 23 17:33:34 miki_netbook kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Feb 23 17:33:34 miki_netbook systemd-udevd[44]: starting version 197
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type usb registered
    Feb 23 17:33:34 miki_netbook kernel: usbcore: registered new interface driver usbfs
    Feb 23 17:33:34 miki_netbook kernel: usbcore: registered new interface driver hub
    Feb 23 17:33:34 miki_netbook kernel: usbcore: registered new device driver usb
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Feb 23 17:33:34 miki_netbook kernel: SCSI subsystem initialized
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: irq 16, io mem 0x94344400
    Feb 23 17:33:34 miki_netbook kernel: ACPI: bus type scsi registered
    Feb 23 17:33:34 miki_netbook kernel: libata version 3.00 loaded.
    Feb 23 17:33:34 miki_netbook kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Feb 23 17:33:34 miki_netbook kernel: hub 1-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 1-0:1.0: 8 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Feb 23 17:33:34 miki_netbook kernel: ata_piix 0000:00:1f.2: version 2.13
    Feb 23 17:33:34 miki_netbook kernel: ata_piix 0000:00:1f.2: MAP [
    Feb 23 17:33:34 miki_netbook kernel: P0 P2 IDE IDE ]
    Feb 23 17:33:34 miki_netbook kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: scsi0 : ata_piix
    Feb 23 17:33:34 miki_netbook kernel: scsi1 : ata_piix
    Feb 23 17:33:34 miki_netbook kernel: ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x40a0 irq 14
    Feb 23 17:33:34 miki_netbook kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x40a8 irq 15
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.0: irq 16, io base 0x00004080
    Feb 23 17:33:34 miki_netbook kernel: hub 2-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 2-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.1: irq 17, io base 0x00004060
    Feb 23 17:33:34 miki_netbook kernel: hub 3-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 3-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x00004040
    Feb 23 17:33:34 miki_netbook kernel: hub 4-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 4-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    Feb 23 17:33:34 miki_netbook kernel: uhci_hcd 0000:00:1d.3: irq 19, io base 0x00004020
    Feb 23 17:33:34 miki_netbook kernel: hub 5-0:1.0: USB hub found
    Feb 23 17:33:34 miki_netbook kernel: hub 5-0:1.0: 2 ports detected
    Feb 23 17:33:34 miki_netbook kernel: ata1.00: ATA-8: SAMSUNG HM251JI, 2SS00_01, max UDMA7
    Feb 23 17:33:34 miki_netbook kernel: ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    Feb 23 17:33:34 miki_netbook kernel: ata1.00: configured for UDMA/133
    Feb 23 17:33:34 miki_netbook kernel: scsi 0:0:0:0: Direct-Access ATA SAMSUNG HM251JI 2SS0 PQ: 0 ANSI: 5
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Write Protect is off
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 23 17:33:34 miki_netbook kernel: sda: sda1 sda2 sda3 sda4
    Feb 23 17:33:34 miki_netbook kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Feb 23 17:33:34 miki_netbook kernel: usb 1-5: new high-speed USB device number 3 using ehci_hcd
    Feb 23 17:33:34 miki_netbook kernel: usb 1-7: new high-speed USB device number 4 using ehci_hcd
    Feb 23 17:33:34 miki_netbook kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    Feb 23 17:33:34 miki_netbook kernel: usb 2-1: new low-speed USB device number 2 using uhci_hcd
    Feb 23 17:33:34 miki_netbook systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Feb 23 17:33:34 miki_netbook systemd[1]: Set hostname to <miki_netbook>.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Remote File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Reached target Remote File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Delayed Shutdown Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on Delayed Shutdown Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Device-mapper event daemon FIFOs.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting LVM2 metadata daemon socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on LVM2 metadata daemon socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Encrypted Volumes.
    Feb 23 17:33:34 miki_netbook systemd[1]: Reached target Encrypted Volumes.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Feb 23 17:33:34 miki_netbook systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Kernel Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on udev Kernel Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Control Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on udev Control Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Feb 23 17:33:34 miki_netbook systemd[1]: Expecting device dev-disk-by\x2duuid-9501e2aa\x2d4efe\x2d4497\x2d9b55\x2ddb7ebc7afe5d.device...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Journal Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Listening on Journal Socket.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started File System Check on Root Device.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Remount Root and Kernel File Systems...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Debug File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting POSIX Message Queue File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Load Kernel Modules.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted FUSE Control File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Setup Virtual Console...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Kernel Device Manager...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Apply Kernel Variables...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting udev Coldplug all Devices...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Configuration File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Huge Pages File System...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Set Up Additional Binary Formats.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Journal Service...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Journal Service.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounting Temporary Directory...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting home.automount.
    Feb 23 17:33:34 miki_netbook systemd[1]: Set up automount home.automount.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Setup Virtual Console.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Apply Kernel Variables.
    Feb 23 17:33:34 miki_netbook systemd-udevd[111]: starting version 197
    Feb 23 17:33:34 miki_netbook kernel: EXT4-fs (sda2): re-mounted. Opts: (null)
    Feb 23 17:33:34 miki_netbook systemd-journal[119]: Journal started
    Feb 23 17:33:34 miki_netbook systemd[1]: Started udev Kernel Device Manager.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Remount Root and Kernel File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Debug File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted POSIX Message Queue File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Configuration File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Huge Pages File System.
    Feb 23 17:33:34 miki_netbook systemd[1]: Mounted Temporary Directory.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Local File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Reached target Local File Systems.
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Recreate Volatile Files and Directories...
    Feb 23 17:33:34 miki_netbook systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage...
    Feb 23 17:33:34 miki_netbook systemd[1]: Started udev Coldplug all Devices.
    Feb 23 17:33:34 miki_netbook systemd-journal[119]: Allowing system journal files to grow to 1.4G.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Load Random Seed.
    Feb 23 17:33:34 miki_netbook systemd[1]: Started Recreate Volatile Files and Directories.
    Feb 23 17:33:37 miki_netbook systemd[1]: Starting Sound Card.
    Feb 23 17:33:37 miki_netbook systemd[1]: Reached target Sound Card.
    Feb 23 17:33:39 miki_netbook systemd[1]: Found device SAMSUNG_HM251JI.
    Feb 23 17:33:39 miki_netbook systemd[1]: Activating swap /dev/disk/by-uuid/9501e2aa-4efe-4497-9b55-db7ebc7afe5d...
    Feb 23 17:33:39 miki_netbook systemd[1]: Activated swap /dev/disk/by-uuid/9501e2aa-4efe-4497-9b55-db7ebc7afe5d.
    Feb 23 17:33:39 miki_netbook systemd[1]: Starting Swap.
    Feb 23 17:33:39 miki_netbook systemd[1]: Reached target Swap.
    Feb 23 17:33:39 miki_netbook systemd[1]: Starting System Initialization.
    Feb 23 17:33:41 miki_netbook NetworkManager[229]: <info> NetworkManager (version 0.9.6.4) is starting...
    Feb 23 17:33:41 miki_netbook NetworkManager[229]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
    Feb 23 17:33:41 miki_netbook NetworkManager[229]: <info> WEXT support is enabled
    Feb 23 17:33:41 miki_netbook dbus[231]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
    Feb 23 17:33:41 miki_netbook polkitd[241]: Started polkitd version 0.109
    Feb 23 17:33:42 miki_netbook polkitd[241]: Loading rules from directory /etc/polkit-1/rules.d
    Feb 23 17:33:42 miki_netbook polkitd[241]: Loading rules from directory /usr/share/polkit-1/rules.d
    Feb 23 17:33:42 miki_netbook polkitd[241]: Finished loading, compiling and executing 1 rules
    Feb 23 17:33:42 miki_netbook dbus[231]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Feb 23 17:33:42 miki_netbook polkitd[241]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
    Feb 23 17:33:42 miki_netbook NetworkManager[229]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
    Feb 23 17:33:45 miki_netbook NetworkManager[229]: keyfile: parsing default ...
    Feb 23 17:33:45 miki_netbook NetworkManager[229]: keyfile: read connection 'default'
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: keyfile: parsing Badt ...
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: keyfile: read connection 'Badt'
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <info> trying to start the modem manager...
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <info> monitoring kernel firmware directory '/lib/firmware'.
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <warn> Failed to open plugin directory /usr/lib/NetworkManager: Error opening directory '/usr/lib/NetworkManager': No such file or directory
    Feb 23 17:33:46 miki_netbook NetworkManager[229]: <info> rfkill0: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7:1.0/ieee80211/phy0/rfkill0) (driver rtl8187)
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> WiFi enabled by radio killswitch; enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> WWAN enabled by radio killswitch; enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> WiMAX enabled by radio killswitch; enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> Networking is enabled by state file
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <warn> failed to allocate link cache: (-10) Operation not supported
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): carrier is OFF
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): new Ethernet device (driver: 'r8169' ifindex: 2)
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): exported as /org/freedesktop/NetworkManager/Devices/0
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): now managed
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): bringing up device.
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): preparing device.
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (enp2s0): deactivating device (reason 'managed') [2]
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> Added default wired connection 'Wired connection 1' for /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/enp2s0
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): using nl80211 for WiFi device control
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): new 802.11 WiFi device (driver: 'rtl8187' ifindex: 3)
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): exported as /org/freedesktop/NetworkManager/Devices/1
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): now managed
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
    Feb 23 17:33:47 miki_netbook NetworkManager[229]: <info> (wlp0s29f7u7): bringing up device.
    Feb 23 17:33:47 miki_netbook kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    Feb 23 17:33:47 miki_netbook systemd[1]: Started Network Manager.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Network.
    Feb 23 17:33:47 miki_netbook systemd[1]: Reached target Network.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Network Time Service...
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Power Button [PWRB]
    Feb 23 17:33:47 miki_netbook kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Lid Switch [LID0]
    Feb 23 17:33:47 miki_netbook kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    Feb 23 17:33:47 miki_netbook dbus-daemon[231]: dbus[231]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
    Feb 23 17:33:47 miki_netbook dbus-daemon[231]: dbus[231]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Sleep Button [SLPB]
    Feb 23 17:33:47 miki_netbook kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Power Button [PWRF]
    Feb 23 17:33:47 miki_netbook kernel: intel_rng: FWH not detected
    Feb 23 17:33:47 miki_netbook kernel: ACPI: AC Adapter [ACAD] (on-line)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Requesting acpi_cpufreq
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Video Device [OVGA] (multi-head: yes rom: yes post: no)
    Feb 23 17:33:47 miki_netbook kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
    Feb 23 17:33:47 miki_netbook kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Thermal Zone [THRM] (56 C)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Battery Slot [BAT1] (battery present)
    Feb 23 17:33:47 miki_netbook kernel: input: PC Speaker as /devices/platform/pcspkr/input/input6
    Feb 23 17:33:47 miki_netbook kernel: ACPI: Invalid Power Resource to register!
    Feb 23 17:33:47 miki_netbook kernel: ACPI Warning:
    Feb 23 17:33:47 miki_netbook kernel: 0x00000428-0x0000042f SystemIO conflicts with Region \PMBA 1 (20120913/utaddress-251)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 23 17:33:47 miki_netbook kernel: ACPI Warning: 0x00000530-0x0000053f SystemIO conflicts with Region \GPIO 1 (20120913/utaddress-251)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 23 17:33:47 miki_netbook kernel: ACPI Warning: 0x00000500-0x0000052f SystemIO conflicts with Region \GPIO 1 (20120913/utaddress-251)
    Feb 23 17:33:47 miki_netbook kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 23 17:33:47 miki_netbook kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Feb 23 17:33:47 miki_netbook kernel: leds_ss4200: no LED devices found
    Feb 23 17:33:47 miki_netbook kernel: iTCO_vendor_support: vendor-support=0
    Feb 23 17:33:47 miki_netbook kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    Feb 23 17:33:47 miki_netbook kernel: iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x0460)
    Feb 23 17:33:47 miki_netbook kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Feb 23 17:33:47 miki_netbook kernel: microcode: CPU0 sig=0x106c2, pf=0x4, revision=0x208
    Feb 23 17:33:47 miki_netbook kernel: microcode: CPU1 sig=0x106c2, pf=0x4, revision=0x208
    Feb 23 17:33:47 miki_netbook kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Feb 23 17:33:47 miki_netbook kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Feb 23 17:33:47 miki_netbook kernel: r8169 0000:02:00.0: irq 42 for MSI/MSI-X
    Feb 23 17:33:47 miki_netbook kernel: r8169 0000:02:00.0 eth0: RTL8102e at 0xf8814000, 00:23:8b:85:d8:aa, XID 04a00000 IRQ 42
    Feb 23 17:33:47 miki_netbook kernel: Linux agpgart interface v0.103
    Feb 23 17:33:47 miki_netbook kernel: cfg80211: Calling CRDA to update world regulatory domain
    Feb 23 17:33:47 miki_netbook kernel: [drm] Initialized drm 1.1.0 20060810
    Feb 23 17:33:47 miki_netbook kernel: usbcore: registered new interface driver usbhid
    Feb 23 17:33:47 miki_netbook kernel: usbhid: USB HID core driver
    Feb 23 17:33:47 miki_netbook kernel: media: Linux media interface: v0.10
    Feb 23 17:33:47 miki_netbook systemd-udevd[137]: renamed network interface eth0 to enp2s0
    Feb 23 17:33:47 miki_netbook kernel: Linux video capture interface: v2.00
    Feb 23 17:33:47 miki_netbook kernel: i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    Feb 23 17:33:47 miki_netbook kernel: uvcvideo: Found UVC 1.00 device USB 2.0 Camera (064e:a127)
    Feb 23 17:33:47 miki_netbook kernel: agpgart-intel 0000:00:00.0: Intel 945GME Chipset
    Feb 23 17:33:47 miki_netbook kernel: agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
    Feb 23 17:33:47 miki_netbook ntpd[253]: ntpd [email protected] Tue Dec 18 22:49:50 UTC 2012 (1)
    Feb 23 17:33:47 miki_netbook ntpd[254]: proto: precision = 1.955 usec
    Feb 23 17:33:47 miki_netbook ntpd[254]: ntp_io: estimated max descriptors: 1024, initial socket boundary: 16
    Feb 23 17:33:47 miki_netbook ntpd[254]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123
    Feb 23 17:33:47 miki_netbook ntpd[254]: Listen and drop on 1 v6wildcard :: UDP 123
    Feb 23 17:33:47 miki_netbook kernel: agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    Feb 23 17:33:47 miki_netbook systemd[1]: Started Network Time Service.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Multi-User.
    Feb 23 17:33:47 miki_netbook systemd[1]: Reached target Multi-User.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Graphical Interface.
    Feb 23 17:33:47 miki_netbook systemd[1]: Reached target Graphical Interface.
    Feb 23 17:33:47 miki_netbook systemd[1]: Starting Update UTMP about System Runlevel Changes...
    Feb 23 17:33:47 miki_netbook systemd[1]: Started Update UTMP about System Runlevel Changes.
    Feb 23 17:33:47 miki_netbook systemd[1]: Startup finished in 2s 641ms 739us (kernel) + 14s 238ms 5

    I had the exact same problem. For me the problem was the user groups. Apparently usergroups is not necessary for most use cases with systemd. And my user was in a lot of groups :-) . So I backed up my /etc/group and removed my username from almost every group.
    Hope it solves your problem!

Maybe you are looking for

  • Data Execution Prevention will not allow iTunes to open.

    This started when I plugged in my iPhone to update it.  Data Execution Prevention closed the program then, and I can't open it again.  I have completely deleted all Apple programs from my computer.  I deleted all temporary files, defraged my hard dri

  • Error message with newest version

    ''Duplicate post, continue here - [https://support.mozilla.com/en-US/questions/805612]'' I recently updated to the newest 4.0 version. I use a Vista o/s and now get the error message.... "TypeError: Components.classes[cid] is undefined" listed under

  • How do i get my new ipod to join the wifi hotspot from my droid cell?

    just purchased an ipod 5th gen. am not able to get it to join with the wifi on my droid cell. the ipod recognized the connection but will not join.

  • Purchase order release strategy Workflow not working

    Hi All, I am working on PO Approval release strategy and it is not working fine . The release strategy set up is configured by my functional consultant . I just copied the standard workflow template WS20000075 and making changes to my custom workflow

  • Drives Locked can't change prefs

    Ever since upgrading to SL, my external FW800 drives have been locked to 'read only'. When I open the 'Get Info', the option to unlock or change permissions has been disabled. I can unlock the disks by running Disk Warrior, but each time I restart, t