3.10.9: kmemleak disables all CPUs except CPU0

From: Martin MOKREJÅ
Date: Sat Aug 31 2013 - 09:36:29 EST


Hi,
never realized that my CPUs are gone if I compile into kernel kmemleak.
Is that really the aim?


CONFIG_HAVE_DEBUG_KMEMLEAK=y
CONFIG_DEBUG_KMEMLEAK=y
CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=400
# CONFIG_DEBUG_KMEMLEAK_TEST is not set
# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set



1. Why isn't there /sys/devices/system/cpu/cpu0/online file?
Does not matter if it contains 0 or 1. It just should exist.

# cat /sys/devices/system/cpu/cpu0/online
cat: /sys/devices/system/cpu/cpu0/online: No such file or directory
# cat /sys/devices/system/cpu/cpu1/online
0
# cat /sys/devices/system/cpu/cpu2/online
0
# cat /sys/devices/system/cpu/cpu3/online
0
#


2. So which CPU is actually enabled now? Looks cpuinfo really say only one core is up.

# cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 42
model name : Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz
stepping : 7
microcode : 0x28
cpu MHz : 3472.000
cache size : 4096 KB
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips : 5587.30
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:

#



3. Complete dmesg is attached but here are few lines:

[ 0.000000] Linux version 3.10.9-default-pciehp (root@vostro) (gcc version 4.6.3 (Gentoo 4.6.3 p1.8, pie-0.5.2) ) #8 SMP Tue Aug 27 01:37:03 MEST 2013
[ 0.000000] Command line: root=/dev/sda5 slub_debug=AFPZ pciehp.pciehp_debug=1 pciehp_debug=1

[ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40

[ 0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 26 pages/cpu @ffff88041d800000 s77760 r8192 d20544 u524288
[ 0.000000] pcpu-alloc: s77760 r8192 d20544 u524288 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3

[ 0.343650] smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
[ 0.343879] TSC deadline timer enabled
[ 0.343893] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
[ 0.344158] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[ 0.344272] ... version: 3
[ 0.344345] ... bit width: 48
[ 0.344418] ... generic registers: 4
[ 0.344491] ... value mask: 0000ffffffffffff
[ 0.344565] ... max period: 000000007fffffff
[ 0.344639] ... fixed-purpose events: 3
[ 0.344711] ... event mask: 000000070000000f
[ 0.344840] kmemcheck: Limiting number of CPUs to 1.
[ 0.344915] kmemcheck: Initialized
[ 0.345949] Brought up 1 CPUs
[ 0.346023] smpboot: Total of 1 processors activated (5587.30 BogoMIPS)



4. If it is really intentional that kmemleak inclusion enforces only one CPU then I would
to get a fat warning in the help text kernel config and also a runtime warning in dmesg.


5. While we are at it, could somebody ensure me that in a dual physical core CPU
with hyperthreading enabled I get in linux:

cpu0 - 1st physical core
cpu1 - 2nd physical core
cpu2 - 1st hyperthreaded core adjacent to cpu0
cpu3 - 2nd hyperthreaded core adjacent to cpu1

If that is NOT case what is then in my case
CONFIG_NR_CPUS=2
would keep enabled 1st physical core and is hyperthreaded core which is of course not what I want.

So far my .config has:
CONFIG_X86_HT=y
CONFIG_NR_CPUS=4
SCHED_SMT=N
SCHED_MC=N


Thank you,
Martin
[ 0.000000] Linux version 3.10.9-default-pciehp (root@vostro) (gcc version 4.6.3 (Gentoo 4.6.3 p1.8, pie-0.5.2) ) #8 SMP Tue Aug 27 01:37:03 MEST 2013
[ 0.000000] Command line: root=/dev/sda5 slub_debug=AFPZ pciehp.pciehp_debug=1 pciehp_debug=1
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d3ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000da4e4fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000da4e5000-0x00000000da527fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000da528000-0x00000000da792fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000da793000-0x00000000da966fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000da967000-0x00000000daa88fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000daa89000-0x00000000dad67fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dad68000-0x00000000dafe7fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000dafe8000-0x00000000daffffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000db800000-0x00000000df9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: Dell Inc. Vostro 3550/, BIOS A11 08/03/2012
[ 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 = 0x41fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CFFFF write-protect
[ 0.000000] D0000-E7FFF uncachable
[ 0.000000] E8000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask C00000000 write-back
[ 0.000000] 1 base 400000000 mask FE0000000 write-back
[ 0.000000] 2 base 0DB800000 mask FFF800000 uncachable
[ 0.000000] 3 base 0DC000000 mask FFC000000 uncachable
[ 0.000000] 4 base 0E0000000 mask FE0000000 uncachable
[ 0.000000] 5 base 41FE00000 mask FFFE00000 uncachable
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: update [mem 0xdb800000-0xffffffff] usable ==> reserved
[ 0.000000] e820: last_pfn = 0xdaa89 max_arch_pfn = 0x400000000
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[ 0.000000] reserving inaccessible SNB gfx pages
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x0280f000, 0x0280ffff] PGTABLE
[ 0.000000] BRK [0x02810000, 0x02810fff] PGTABLE
[ 0.000000] BRK [0x02811000, 0x02811fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x41fc00000-0x41fdfffff]
[ 0.000000] [mem 0x41fc00000-0x41fdfffff] page 4k
[ 0.000000] BRK [0x02812000, 0x02812fff] PGTABLE
[ 0.000000] BRK [0x02813000, 0x02813fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x41c000000-0x41fbfffff]
[ 0.000000] [mem 0x41c000000-0x41fbfffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x400000000-0x41bffffff]
[ 0.000000] [mem 0x400000000-0x41bffffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[ 0.000000] [mem 0x00100000-0x1fffffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
[ 0.000000] [mem 0x20200000-0x3fffffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x40200000-0xda4e4fff]
[ 0.000000] [mem 0x40200000-0xda4e4fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0xda528000-0xda792fff]
[ 0.000000] [mem 0xda528000-0xda792fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0xda967000-0xdaa88fff]
[ 0.000000] [mem 0xda967000-0xdaa88fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[ 0.000000] [mem 0x100000000-0x3ffffffff] page 4k
[ 0.000000] ACPI: RSDP 00000000000f0410 00024 (v02 DELL)
[ 0.000000] ACPI: XSDT 00000000dafe8078 00074 (v01 DELL WN09 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 00000000daff1d38 000F4 (v04 DELL WN09 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 00000000dafe8180 09BB6 (v02 DELL WN09 00000000 INTL 20051117)
[ 0.000000] ACPI: FACS 00000000dafe3f80 00040
[ 0.000000] ACPI: APIC 00000000daff1e30 00072 (v03 DELL WN09 01072009 AMI 00010013)
[ 0.000000] ACPI: MCFG 00000000daff1ea8 0003C (v01 DELL WN09 01072009 MSFT 00000097)
[ 0.000000] ACPI: SSDT 00000000daff1ee8 004B0 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
[ 0.000000] ACPI: SLIC 00000000daff2398 00176 (v01 DELL WN09 01072009 AMI 00010013)
[ 0.000000] ACPI: HPET 00000000daff2510 00038 (v01 DELL WN09 01072009 AMI. 00000004)
[ 0.000000] ACPI: SSDT 00000000daff2548 00846 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
[ 0.000000] ACPI: SSDT 00000000daff2d90 00996 (v01 PmRef CpuPm 00003000 INTL 20051117)
[ 0.000000] ACPI: DMAR 00000000daff3728 000E8 (v01 INTEL SNB 00000001 INTL 00000001)
[ 0.000000] ACPI: OSFR 00000000daff3810 00086 (v01 DELL M08 07DC0803 ASL 00000061)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] [ffffea0000000000-ffffea00107fffff] PMD -> [ffff88040d600000-ffff88041d5fffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x41fdfffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
[ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
[ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
[ 0.000000] node 0: [mem 0x40200000-0xda4e4fff]
[ 0.000000] node 0: [mem 0xda528000-0xda792fff]
[ 0.000000] node 0: [mem 0xda967000-0xdaa88fff]
[ 0.000000] node 0: [mem 0x100000000-0x41fdfffff]
[ 0.000000] On node 0 totalpages: 4170254
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 156 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 13906 pages used for memmap
[ 0.000000] DMA32 zone: 889970 pages, LIFO batch:31
[ 0.000000] Normal zone: 51192 pages used for memmap
[ 0.000000] Normal zone: 3276288 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
[ 0.000000] PM: Registered nosave memory: 00000000da4e5000 - 00000000da528000
[ 0.000000] PM: Registered nosave memory: 00000000da793000 - 00000000da967000
[ 0.000000] PM: Registered nosave memory: 00000000daa89000 - 00000000dad68000
[ 0.000000] PM: Registered nosave memory: 00000000dad68000 - 00000000dafe8000
[ 0.000000] PM: Registered nosave memory: 00000000dafe8000 - 00000000db000000
[ 0.000000] PM: Registered nosave memory: 00000000db000000 - 00000000db800000
[ 0.000000] PM: Registered nosave memory: 00000000db800000 - 00000000dfa00000
[ 0.000000] PM: Registered nosave memory: 00000000dfa00000 - 00000000f8000000
[ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
[ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
[ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
[ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed1c000
[ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
[ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
[ 0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 26 pages/cpu @ffff88041d800000 s77760 r8192 d20544 u524288
[ 0.000000] pcpu-alloc: s77760 r8192 d20544 u524288 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4104936
[ 0.000000] Kernel command line: root=/dev/sda5 slub_debug=AFPZ pciehp.pciehp_debug=1 pciehp_debug=1
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Memory: 16269368k/17299456k available (7799k kernel code, 618440k absent, 411648k reserved, 5103k data, 908k init)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] CONFIG_RCU_FANOUT set to non-default value of 32
[ 0.000000] NR_IRQS:4352 nr_irqs:712 16
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8
[ 0.000000] ... MAX_LOCK_DEPTH: 48
[ 0.000000] ... MAX_LOCKDEP_KEYS: 8191
[ 0.000000] ... CLASSHASH_SIZE: 4096
[ 0.000000] ... MAX_LOCKDEP_ENTRIES: 16384
[ 0.000000] ... MAX_LOCKDEP_CHAINS: 32768
[ 0.000000] ... CHAINHASH_SIZE: 16384
[ 0.000000] memory used by lock dependency info: 5855 kB
[ 0.000000] per task-struct memory footprint: 1920 bytes
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.010000] tsc: Detected 2793.651 MHz processor
[ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.30 BogoMIPS (lpj=27936510)
[ 0.000151] pid_max: default: 32768 minimum: 301
[ 0.000762] Mount-cache hash table entries: 256
[ 0.002393] CPU: Physical Processor ID: 0
[ 0.002467] CPU: Processor Core ID: 0
[ 0.002542] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.002657] mce: CPU supports 7 MCE banks
[ 0.002742] CPU0: Thermal monitoring enabled (TM1)
[ 0.002827] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 5
[ 0.003098] Freeing SMP alternatives: 28k freed
[ 0.003177] ACPI: Core revision 20130328
[ 0.103929] ACPI: All ACPI Tables successfully acquired
[ 0.243444] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.343650] smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
[ 0.343879] TSC deadline timer enabled
[ 0.343893] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
[ 0.344158] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[ 0.344272] ... version: 3
[ 0.344345] ... bit width: 48
[ 0.344418] ... generic registers: 4
[ 0.344491] ... value mask: 0000ffffffffffff
[ 0.344565] ... max period: 000000007fffffff
[ 0.344639] ... fixed-purpose events: 3
[ 0.344711] ... event mask: 000000070000000f
[ 0.344840] kmemcheck: Limiting number of CPUs to 1.
[ 0.344915] kmemcheck: Initialized
[ 0.345949] Brought up 1 CPUs
[ 0.346023] smpboot: Total of 1 processors activated (5587.30 BogoMIPS)
[ 0.347522] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.348486] devtmpfs: initialized
[ 0.350368] PM: Registering ACPI NVS region [mem 0xda4e5000-0xda527fff] (274432 bytes)
[ 0.350710] PM: Registering ACPI NVS region [mem 0xdad68000-0xdafe7fff] (2621440 bytes)
[ 0.353878] xor: measuring software checksum speed
[ 0.454099] 8regs : 12306.000 MB/sec
[ 0.554234] 8regs_prefetch: 11418.400 MB/sec
[ 0.654369] 32regs : 12198.800 MB/sec
[ 0.754504] 32regs_prefetch: 11398.000 MB/sec
[ 0.754577] xor: using function: 8regs (12306.000 MB/sec)
[ 0.755212] NET: Registered protocol family 16
[ 0.757991] ACPI: bus type PCI registered
[ 0.758750] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.758860] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.775256] PCI: Using configuration type 1 for base access
[ 0.832938] bio: create slab <bio-0> at 0
[ 0.994866] raid6: sse2x1 7473 MB/s
[ 1.165097] raid6: sse2x2 9341 MB/s
[ 1.335329] raid6: sse2x4 10819 MB/s
[ 1.335330] raid6: using algorithm sse2x4 (10819 MB/s)
[ 1.335331] raid6: using ssse3x2 recovery algorithm
[ 1.335697] ACPI: Added _OSI(Module Device)
[ 1.335779] ACPI: Added _OSI(Processor Device)
[ 1.335858] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 1.335946] ACPI: Added _OSI(Processor Aggregator Device)
[ 1.341053] ACPI: EC: Look up EC in DSDT
[ 1.352277] ACPI: Executed 1 blocks of module-level executable AML code
[ 1.432974] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 1.455691] ACPI: SSDT 00000000dad51698 0064F (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 1.458523] ACPI: Dynamic OEM Table Load:
[ 1.458526] ACPI: SSDT (null) 0064F (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 1.463730] ACPI: SSDT 00000000dad52a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
[ 1.468048] ACPI: Dynamic OEM Table Load:
[ 1.468050] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
[ 1.469171] ACPI: SSDT 00000000dad50d98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 1.471474] ACPI: Dynamic OEM Table Load:
[ 1.471476] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 1.484910] ACPI: Interpreter enabled
[ 1.485033] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130328/hwxface-568)
[ 1.485152] ACPI: (supports S0 S1 S3 S4 S5)
[ 1.485226] ACPI: Using IOAPIC for interrupt routing
[ 1.485789] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 1.785838] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 1.803446] PCI host bridge to bus 0000:00
[ 1.803529] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 1.803611] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 1.803691] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 1.803774] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 1.803857] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[ 1.803940] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 1.804023] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 1.804106] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[ 1.804188] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 1.804272] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[ 1.804354] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[ 1.804436] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[ 1.804521] pci_bus 0000:00: scanning bus
[ 1.804557] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[ 1.804565] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x10
[ 1.806323] pci 0000:00:02.0: [8086:0126] type 00 class 0x030000
[ 1.806338] pci 0000:00:02.0: reg 10: [mem 0xf6800000-0xf6bfffff 64bit]
[ 1.806347] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 1.806353] pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f]
[ 1.808026] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[ 1.808064] pci 0000:00:16.0: reg 10: [mem 0xf7f0a000-0xf7f0a00f 64bit]
[ 1.808191] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 1.808215] pci 0000:00:16.0: PME# disabled
[ 1.809967] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[ 1.810003] pci 0000:00:1a.0: reg 10: [mem 0xf7f08000-0xf7f083ff]
[ 1.810159] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 1.810165] pci 0000:00:1a.0: PME# disabled
[ 1.827128] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 1.827744] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[ 1.827775] pci 0000:00:1b.0: reg 10: [mem 0xf7f00000-0xf7f03fff 64bit]
[ 1.827916] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 1.827922] pci 0000:00:1b.0: PME# disabled
[ 1.829046] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 1.829605] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[ 1.829677] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.829761] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 1.829767] pci 0000:00:1c.0: PME# disabled
[ 1.830342] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 1.830890] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[ 1.830959] pci 0000:00:1c.1: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.831042] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 1.831048] pci 0000:00:1c.1: PME# disabled
[ 1.831660] pci 0000:00:1c.1: System wakeup disabled by ACPI
[ 1.832208] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[ 1.832278] pci 0000:00:1c.3: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.832361] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 1.832366] pci 0000:00:1c.3: PME# disabled
[ 1.833052] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 1.833597] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[ 1.833669] pci 0000:00:1c.4: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.833754] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 1.833760] pci 0000:00:1c.4: PME# disabled
[ 1.834484] pci 0000:00:1c.4: System wakeup disabled by ACPI
[ 1.835576] pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
[ 1.835648] pci 0000:00:1c.7: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.835732] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 1.835738] pci 0000:00:1c.7: PME# disabled
[ 1.836763] pci 0000:00:1c.7: System wakeup disabled by ACPI
[ 1.837332] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[ 1.837366] pci 0000:00:1d.0: reg 10: [mem 0xf7f07000-0xf7f073ff]
[ 1.837523] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 1.837529] pci 0000:00:1d.0: PME# disabled
[ 1.854319] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 1.854884] pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100
[ 1.855573] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[ 1.855611] pci 0000:00:1f.2: reg 10: [io 0xf0b0-0xf0b7]
[ 1.855625] pci 0000:00:1f.2: reg 14: [io 0xf0a0-0xf0a3]
[ 1.855640] pci 0000:00:1f.2: reg 18: [io 0xf090-0xf097]
[ 1.855655] pci 0000:00:1f.2: reg 1c: [io 0xf080-0xf083]
[ 1.855670] pci 0000:00:1f.2: reg 20: [io 0xf060-0xf07f]
[ 1.855685] pci 0000:00:1f.2: reg 24: [mem 0xf7f06000-0xf7f067ff]
[ 1.855784] pci 0000:00:1f.2: PME# supported from D3hot
[ 1.855790] pci 0000:00:1f.2: PME# disabled
[ 1.857295] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[ 1.857324] pci 0000:00:1f.3: reg 10: [mem 0xf7f05000-0xf7f050ff 64bit]
[ 1.857369] pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f]
[ 1.858894] pci_bus 0000:00: fixups for bus
[ 1.858898] pci 0000:00:1c.0: scanning [bus 03-04] behind bridge, pass 0
[ 1.859322] pci_bus 0000:03: scanning bus
[ 1.859325] pci_bus 0000:03: fixups for bus
[ 1.859327] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
[ 1.859420] pci_bus 0000:03: bus scan returning with max=03
[ 1.859425] pci 0000:00:1c.1: scanning [bus 05-06] behind bridge, pass 0
[ 1.859842] pci_bus 0000:05: scanning bus
[ 1.859889] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[ 1.859917] pci 0000:05:00.0: reg 10: [io 0xe000-0xe0ff]
[ 1.859965] pci 0000:05:00.0: reg 18: [mem 0xf1104000-0xf1104fff 64bit pref]
[ 1.859994] pci 0000:05:00.0: reg 20: [mem 0xf1100000-0xf1103fff 64bit pref]
[ 1.860129] pci 0000:05:00.0: supports D1 D2
[ 1.860131] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.860138] pci 0000:05:00.0: PME# disabled
[ 1.860385] pci 0000:05:00.0: System wakeup disabled by ACPI
[ 1.918401] pci_bus 0000:05: fixups for bus
[ 1.918406] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
[ 1.918489] pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
[ 1.918502] pci 0000:00:1c.1: bridge window [mem 0xf1100000-0xf11fffff 64bit pref]
[ 1.918504] pci_bus 0000:05: bus scan returning with max=05
[ 1.918511] pci 0000:00:1c.3: scanning [bus 09-0a] behind bridge, pass 0
[ 1.919031] pci_bus 0000:09: scanning bus
[ 1.919310] pci 0000:09:00.0: [8086:008a] type 00 class 0x028000
[ 1.919666] pci 0000:09:00.0: reg 10: [mem 0xf7e00000-0xf7e01fff 64bit]
[ 1.921188] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[ 1.921241] pci 0000:09:00.0: PME# disabled
[ 1.921650] pci 0000:09:00.0: System wakeup disabled by ACPI
[ 1.939492] pci_bus 0000:09: fixups for bus
[ 1.939495] pci 0000:00:1c.3: PCI bridge to [bus 09-0a]
[ 1.939579] pci 0000:00:1c.3: bridge window [mem 0xf7e00000-0xf7efffff]
[ 1.939589] pci_bus 0000:09: bus scan returning with max=09
[ 1.939596] pci 0000:00:1c.4: scanning [bus 0b-0c] behind bridge, pass 0
[ 1.940034] pci_bus 0000:0b: scanning bus
[ 1.940090] pci 0000:0b:00.0: [104c:8241] type 00 class 0x0c0330
[ 1.940126] pci 0000:0b:00.0: reg 10: [mem 0xf7d00000-0xf7d0ffff 64bit]
[ 1.940154] pci 0000:0b:00.0: reg 18: [mem 0xf7d10000-0xf7d11fff 64bit]
[ 1.940314] pci 0000:0b:00.0: supports D1 D2
[ 1.940315] pci 0000:0b:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.940322] pci 0000:0b:00.0: PME# disabled
[ 1.940553] pci 0000:0b:00.0: System wakeup disabled by ACPI
[ 1.941146] pci_bus 0000:0b: fixups for bus
[ 1.941148] pci 0000:00:1c.4: PCI bridge to [bus 0b-0c]
[ 1.941231] pci 0000:00:1c.4: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 1.941240] pci_bus 0000:0b: bus scan returning with max=0b
[ 1.941246] pci 0000:00:1c.7: scanning [bus 11-16] behind bridge, pass 0
[ 1.941657] pci_bus 0000:11: scanning bus
[ 1.941661] pci_bus 0000:11: fixups for bus
[ 1.941663] pci 0000:00:1c.7: PCI bridge to [bus 11-16]
[ 1.941742] pci 0000:00:1c.7: bridge window [io 0xc000-0xdfff]
[ 1.941747] pci 0000:00:1c.7: bridge window [mem 0xf6c00000-0xf7cfffff]
[ 1.941757] pci 0000:00:1c.7: bridge window [mem 0xf0000000-0xf10fffff 64bit pref]
[ 1.941758] pci_bus 0000:11: bus scan returning with max=11
[ 1.941765] pci 0000:00:1c.0: scanning [bus 03-04] behind bridge, pass 1
[ 1.941774] pci 0000:00:1c.1: scanning [bus 05-06] behind bridge, pass 1
[ 1.941783] pci 0000:00:1c.3: scanning [bus 09-0a] behind bridge, pass 1
[ 1.941793] pci 0000:00:1c.4: scanning [bus 0b-0c] behind bridge, pass 1
[ 1.941802] pci 0000:00:1c.7: scanning [bus 11-16] behind bridge, pass 1
[ 1.941809] pci_bus 0000:00: bus scan returning with max=16
[ 1.941811] pci_bus 0000:00: on NUMA node 0
[ 1.944132] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
[ 1.951332] acpi PNP0A08:00: ACPI _OSC control (0x19) granted
[ 1.956349] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 1.958117] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 1.959882] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[ 1.961653] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 1.963435] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 1.965319] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 1.967210] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 1.968992] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 1.971581] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 1.971598] acpi root: \_SB_.PCI0 notify handler is installed
[ 1.971747] Found 1 acpi root devices
[ 1.972881] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 1.972994] vgaarb: loaded
[ 1.973064] vgaarb: bridge control possible 0000:00:02.0
[ 1.974626] SCSI subsystem initialized
[ 1.974704] ACPI: bus type ATA registered
[ 1.975298] libata version 3.00 loaded.
[ 1.975814] ACPI: bus type USB registered
[ 1.976332] usbcore: registered new interface driver usbfs
[ 1.976618] usbcore: registered new interface driver hub
[ 1.976910] usbcore: registered new device driver usb
[ 1.978621] EDAC MC: Ver: 3.0.0
[ 1.982237] wmi: Mapper loaded
[ 1.982645] Advanced Linux Sound Architecture Driver Initialized.
[ 1.982724] PCI: Using ACPI for IRQ routing
[ 1.984641] PCI: pci_cache_line_size set to 64 bytes
[ 1.984650] pci 0000:00:02.0: BAR 0: reserving [mem 0xf6800000-0xf6bfffff flags 0x140204] (d=0, p=0)
[ 1.984653] pci 0000:00:02.0: BAR 2: reserving [mem 0xe0000000-0xefffffff flags 0x14220c] (d=0, p=0)
[ 1.984655] pci 0000:00:02.0: BAR 4: reserving [io 0xf000-0xf03f flags 0x40101] (d=0, p=0)
[ 1.984659] pci 0000:00:16.0: BAR 0: reserving [mem 0xf7f0a000-0xf7f0a00f flags 0x140204] (d=0, p=0)
[ 1.984664] pci 0000:00:1a.0: BAR 0: reserving [mem 0xf7f08000-0xf7f083ff flags 0x40200] (d=0, p=0)
[ 1.984669] pci 0000:00:1b.0: BAR 0: reserving [mem 0xf7f00000-0xf7f03fff flags 0x140204] (d=0, p=0)
[ 1.984677] pci 0000:05:00.0: BAR 0: reserving [io 0xe000-0xe0ff flags 0x40101] (d=0, p=0)
[ 1.984679] pci 0000:05:00.0: BAR 2: reserving [mem 0xf1104000-0xf1104fff flags 0x14220c] (d=0, p=0)
[ 1.984681] pci 0000:05:00.0: BAR 4: reserving [mem 0xf1100000-0xf1103fff flags 0x14220c] (d=0, p=0)
[ 1.984689] pci 0000:09:00.0: BAR 0: reserving [mem 0xf7e00000-0xf7e01fff flags 0x140204] (d=0, p=0)
[ 1.984696] pci 0000:0b:00.0: BAR 0: reserving [mem 0xf7d00000-0xf7d0ffff flags 0x140204] (d=0, p=0)
[ 1.984698] pci 0000:0b:00.0: BAR 2: reserving [mem 0xf7d10000-0xf7d11fff flags 0x140204] (d=0, p=0)
[ 1.984704] pci 0000:00:1d.0: BAR 0: reserving [mem 0xf7f07000-0xf7f073ff flags 0x40200] (d=0, p=0)
[ 1.984711] pci 0000:00:1f.2: BAR 0: reserving [io 0xf0b0-0xf0b7 flags 0x40101] (d=0, p=0)
[ 1.984713] pci 0000:00:1f.2: BAR 1: reserving [io 0xf0a0-0xf0a3 flags 0x40101] (d=0, p=0)
[ 1.984715] pci 0000:00:1f.2: BAR 2: reserving [io 0xf090-0xf097 flags 0x40101] (d=0, p=0)
[ 1.984716] pci 0000:00:1f.2: BAR 3: reserving [io 0xf080-0xf083 flags 0x40101] (d=0, p=0)
[ 1.984718] pci 0000:00:1f.2: BAR 4: reserving [io 0xf060-0xf07f flags 0x40101] (d=0, p=0)
[ 1.984720] pci 0000:00:1f.2: BAR 5: reserving [mem 0xf7f06000-0xf7f067ff flags 0x40200] (d=0, p=0)
[ 1.984724] pci 0000:00:1f.3: BAR 0: reserving [mem 0xf7f05000-0xf7f050ff flags 0x140204] (d=0, p=0)
[ 1.984726] pci 0000:00:1f.3: BAR 4: reserving [io 0xf040-0xf05f flags 0x40101] (d=0, p=0)
[ 1.984763] e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
[ 1.984785] e820: reserve RAM buffer [mem 0xda4e5000-0xdbffffff]
[ 1.984792] e820: reserve RAM buffer [mem 0xda793000-0xdbffffff]
[ 1.984800] e820: reserve RAM buffer [mem 0xdaa89000-0xdbffffff]
[ 1.984808] e820: reserve RAM buffer [mem 0x41fe00000-0x41fffffff]
[ 1.986272] Bluetooth: Core ver 2.16
[ 1.986522] NET: Registered protocol family 31
[ 1.986597] Bluetooth: HCI device and connection manager initialized
[ 1.986694] Bluetooth: HCI socket layer initialized
[ 1.986779] Bluetooth: L2CAP socket layer initialized
[ 1.986889] Bluetooth: SCO socket layer initialized
[ 1.989637] cfg80211: Calling CRDA to update world regulatory domain
[ 1.990580] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 1.991010] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 1.993104] Switching to clocksource hpet
[ 1.993844] pnp: PnP ACPI init
[ 1.994004] ACPI: bus type PNP registered
[ 1.994268] pnp 00:00: [dma 4]
[ 1.994585] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[ 1.994975] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[ 1.996364] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[ 1.996935] system 00:03: [io 0x0680-0x069f] has been reserved
[ 1.997025] system 00:03: [io 0x1000-0x100f] has been reserved
[ 1.997114] system 00:03: [io 0xffff] has been reserved
[ 1.997203] system 00:03: [io 0xffff] has been reserved
[ 1.997291] system 00:03: [io 0x0400-0x0453] has been reserved
[ 1.997381] system 00:03: [io 0x0458-0x047f] has been reserved
[ 1.997470] system 00:03: [io 0x0500-0x057f] has been reserved
[ 1.997558] system 00:03: [io 0x164e-0x164f] has been reserved
[ 1.997638] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.998590] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 1.999428] system 00:05: [io 0x0454-0x0457] has been reserved
[ 1.999508] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 1.999939] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 2.000573] system 00:07: [io 0x04d0-0x04d1] has been reserved
[ 2.000665] system 00:07: [mem 0xfe800000-0xfe802fff] has been reserved
[ 2.000745] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.001277] pnp 00:08: Plug and Play ACPI device, IDs DLL04b3 SYN0600 SYN0002 PNP0f13 (active)
[ 2.001811] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 (active)
[ 2.007014] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 2.007105] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[ 2.007194] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[ 2.007285] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[ 2.007374] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
[ 2.007463] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 2.007553] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[ 2.007642] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 2.007732] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[ 2.007834] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 2.007925] system 00:0a: [mem 0xdfa00000-0xdfa00fff] has been reserved
[ 2.008005] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.009405] pnp 00:0b: Plug and Play ACPI device, IDs SMO8800 (active)
[ 2.012031] system 00:0c: [mem 0x20000000-0x201fffff] has been reserved
[ 2.012122] system 00:0c: [mem 0x40000000-0x401fffff] has been reserved
[ 2.012202] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 2.012870] pnp: PnP ACPI: found 13 devices
[ 2.012943] ACPI: bus type PNP unregistered
[ 2.044147] pci 0000:00:1c.0: PCI bridge to [bus 03-04]
[ 2.044244] pci 0000:00:1c.1: PCI bridge to [bus 05-06]
[ 2.044321] pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
[ 2.044407] pci 0000:00:1c.1: bridge window [mem 0xf1100000-0xf11fffff 64bit pref]
[ 2.044521] pci 0000:00:1c.3: PCI bridge to [bus 09-0a]
[ 2.044600] pci 0000:00:1c.3: bridge window [mem 0xf7e00000-0xf7efffff]
[ 2.044689] pci 0000:00:1c.4: PCI bridge to [bus 0b-0c]
[ 2.044769] pci 0000:00:1c.4: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 2.044858] pci 0000:00:1c.7: PCI bridge to [bus 11-16]
[ 2.044935] pci 0000:00:1c.7: bridge window [io 0xc000-0xdfff]
[ 2.045016] pci 0000:00:1c.7: bridge window [mem 0xf6c00000-0xf7cfffff]
[ 2.045098] pci 0000:00:1c.7: bridge window [mem 0xf0000000-0xf10fffff 64bit pref]
[ 2.052520] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 2.052523] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 2.052525] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 2.052527] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[ 2.052528] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[ 2.052530] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
[ 2.052532] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
[ 2.052533] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
[ 2.052535] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
[ 2.052537] pci_bus 0000:00: resource 13 [mem 0xdfa00000-0xfeafffff]
[ 2.052538] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
[ 2.052540] pci_bus 0000:05: resource 0 [io 0xe000-0xefff]
[ 2.052542] pci_bus 0000:05: resource 2 [mem 0xf1100000-0xf11fffff 64bit pref]
[ 2.052544] pci_bus 0000:09: resource 1 [mem 0xf7e00000-0xf7efffff]
[ 2.052546] pci_bus 0000:0b: resource 1 [mem 0xf7d00000-0xf7dfffff]
[ 2.052548] pci_bus 0000:11: resource 0 [io 0xc000-0xdfff]
[ 2.052549] pci_bus 0000:11: resource 1 [mem 0xf6c00000-0xf7cfffff]
[ 2.052551] pci_bus 0000:11: resource 2 [mem 0xf0000000-0xf10fffff 64bit pref]
[ 2.052781] NET: Registered protocol family 2
[ 2.053656] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[ 2.054050] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes)
[ 2.059041] TCP: Hash tables configured (established 131072 bind 65536)
[ 2.059215] TCP: reno registered
[ 2.059325] UDP hash table entries: 8192 (order: 8, 1310720 bytes)
[ 2.060696] UDP-Lite hash table entries: 8192 (order: 8, 1310720 bytes)
[ 2.062556] NET: Registered protocol family 1
[ 2.063243] RPC: Registered named UNIX socket transport module.
[ 2.064187] RPC: Registered udp transport module.
[ 2.064261] RPC: Registered tcp transport module.
[ 2.064334] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 2.064424] pci 0000:00:02.0: calling pci_fixup_video+0x0/0xd0
[ 2.064426] pci 0000:00:02.0: Boot video device
[ 2.064435] pci 0000:00:1a.0: calling quirk_usb_early_handoff+0x0/0x760
[ 2.185372] pci 0000:00:1d.0: calling quirk_usb_early_handoff+0x0/0x760
[ 2.305362] pci 0000:0b:00.0: calling quirk_usb_early_handoff+0x0/0x760
[ 2.306273] PCI: CLS 64 bytes, default 64
[ 2.306595] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 2.306675] software IO TLB [mem 0xd64e5000-0xda4e5000] (64MB) mapped at [ffff8800d64e5000-ffff8800da4e4fff]
[ 2.308983] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x1b
[ 2.309410] microcode: Microcode Update Driver: v2.00 <tigran@xxxxxxxxxxxxxxxxxxxx>, Peter Oruba
[ 2.309518] Scanning for low memory corruption every 60 seconds
[ 2.312625] sha1_ssse3: Using AVX optimized SHA-1 implementation
[ 2.312833] sha256_ssse3: Using AVX optimized SHA-256 implementation
[ 2.312975] sha512_ssse3: Using AVX optimized SHA-512 implementation
[ 2.317758] audit: initializing netlink socket (disabled)
[ 2.317895] type=2000 audit(1377874979.180:1): initialized
[ 2.320306] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 2.371361] msgmni has been set to 31776
[ 2.377001] NET: Registered protocol family 38
[ 2.377112] Key type asymmetric registered
[ 2.377192] Asymmetric key parser 'x509' registered
[ 2.377781] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 2.377896] io scheduler noop registered
[ 2.377970] io scheduler deadline registered (default)
[ 2.378681] io scheduler cfq registered
[ 2.381284] pcieport 0000:00:1c.7: irq 40 for MSI/MSI-X
[ 2.382321] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 2.383039] pciehp 0000:00:1c.7:pcie04: Hotplug Controller:
[ 2.383116] pciehp 0000:00:1c.7:pcie04: Seg/Bus/Dev/Func/IRQ : 0000:00:1c.7 IRQ 40
[ 2.383222] pciehp 0000:00:1c.7:pcie04: Vendor ID : 0x8086
[ 2.383299] pciehp 0000:00:1c.7:pcie04: Device ID : 0x1c1e
[ 2.383376] pciehp 0000:00:1c.7:pcie04: Subsystem ID : 0x04b3
[ 2.383453] pciehp 0000:00:1c.7:pcie04: Subsystem Vendor ID : 0x1028
[ 2.383530] pciehp 0000:00:1c.7:pcie04: PCIe Cap offset : 0x40
[ 2.383607] pciehp 0000:00:1c.7:pcie04: PCI resource [13] : [io 0xc000-0xdfff]
[ 2.383914] pciehp 0000:00:1c.7:pcie04: PCI resource [14] : [mem 0xf6c00000-0xf7cfffff]
[ 2.384022] pciehp 0000:00:1c.7:pcie04: PCI resource [15] : [mem 0xf0000000-0xf10fffff 64bit pref]
[ 2.384131] pciehp 0000:00:1c.7:pcie04: Slot Capabilities : 0x003cb260
[ 2.384209] pciehp 0000:00:1c.7:pcie04: Physical Slot Number : 7
[ 2.384285] pciehp 0000:00:1c.7:pcie04: Attention Button : no
[ 2.384361] pciehp 0000:00:1c.7:pcie04: Power Controller : no
[ 2.384438] pciehp 0000:00:1c.7:pcie04: MRL Sensor : no
[ 2.384514] pciehp 0000:00:1c.7:pcie04: Attention Indicator : no
[ 2.384590] pciehp 0000:00:1c.7:pcie04: Power Indicator : no
[ 2.384666] pciehp 0000:00:1c.7:pcie04: Hot-Plug Surprise : yes
[ 2.384744] pciehp 0000:00:1c.7:pcie04: EMI Present : no
[ 2.384820] pciehp 0000:00:1c.7:pcie04: Command Completed : no
[ 2.384900] pciehp 0000:00:1c.7:pcie04: Slot Status : 0x0000
[ 2.384979] pciehp 0000:00:1c.7:pcie04: Slot Control : 0x0000
[ 2.385058] pciehp 0000:00:1c.7:pcie04: Link Active Reporting supported
[ 2.385090] pciehp 0000:00:1c.7:pcie04: HPC vendor_id 8086 device_id 1c1e ss_vid 1028 ss_did 4b3
[ 2.385264] pciehp 0000:00:1c.7:pcie04: Registering domain:bus:dev=0000:11:00 sun=7
[ 2.385355] pci_bus 0000:11: dev 00, created physical slot 7
[ 2.386545] pciehp 0000:00:1c.7:pcie04: pciehp_get_power_status: SLOTCTRL 58 value read 28
[ 2.386548] pciehp 0000:00:1c.7:pcie04: service driver pciehp loaded
[ 2.386698] pciehp: pcie_port_service_register = 0
[ 2.386699] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 2.387314] intel_idle: MWAIT substates: 0x21120
[ 2.387315] intel_idle: v0.4 model 0x2A
[ 2.387316] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 2.388442] ACPI: AC Adapter [AC] (on-line)
[ 2.389998] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[ 2.391743] ACPI: Lid Switch [LID0]
[ 2.392283] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 2.392427] ACPI: Power Button [PWRB]
[ 2.392983] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[ 2.393098] ACPI: Sleep Button [SBTN]
[ 2.393643] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 2.394006] ACPI: Power Button [PWRF]
[ 2.396026] ACPI: Requesting acpi_cpufreq
[ 2.492915] thermal LNXTHERM:00: registered as thermal_zone0
[ 2.492995] ACPI: Thermal Zone [THM] (64 C)
[ 2.549770] GHES: HEST is not enabled!
[ 2.549845] ERST DBG: ERST support is disabled.
[ 2.558791] ACPI: Battery Slot [BAT0] (battery present)
[ 2.721592] Non-volatile memory driver v1.3
[ 2.721923] Linux agpgart interface v0.103
[ 2.722186] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).
[ 2.722187] Hangcheck: Using getrawmonotonic().
[ 2.722393] [drm] Initialized drm 1.1.0 20060810
[ 2.728798] [drm] Memory usable by graphics device = 2048M
[ 2.728906] i915 0000:00:02.0: setting latency timer to 64
[ 2.765386] i915 0000:00:02.0: irq 41 for MSI/MSI-X
[ 2.765486] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 2.765564] [drm] Driver supports precise vblank timestamp query.
[ 2.766053] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 2.792594] [drm] Wrong MCH_SSKPD value: 0x16040307
[ 2.792673] [drm] This can cause pipe underruns and display issues.
[ 2.792749] [drm] Please upgrade your BIOS to fix this.
[ 2.917466] fbcon: inteldrmfb (fb0) is primary device
[ 3.304852] tsc: Refined TSC clocksource calibration: 2793.653 MHz
[ 3.304863] Switching to clocksource tsc
[ 4.140924] Console: switching to colour frame buffer device 170x48
[ 4.143268] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 4.143290] i915 0000:00:02.0: registered panic notifier
[ 4.172850] acpi device:34: registered as cooling_device1
[ 4.177138] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 4.177969] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[ 4.178190] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
[ 4.178450] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 4.190457] loop: module loaded
[ 4.192420] mei_me 0000:00:16.0: setting latency timer to 64
[ 4.192562] mei_me 0000:00:16.0: irq 42 for MSI/MSI-X
[ 4.201466] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130328/utaddress-251)
[ 4.201474] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.201517] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[ 4.201522] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.201561] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[ 4.201566] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.201605] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130328/utaddress-251)
[ 4.201610] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.201647] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 4.203095] ahci 0000:00:1f.2: version 3.0
[ 4.204841] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
[ 4.204972] ahci: SSS flag set, parallel bus scan disabled
[ 4.216010] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x31 impl SATA mode
[ 4.216485] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst
[ 4.216975] ahci 0000:00:1f.2: setting latency timer to 64
[ 4.264479] scsi0 : ahci
[ 4.266729] scsi1 : ahci
[ 4.268017] scsi2 : ahci
[ 4.269330] scsi3 : ahci
[ 4.270637] scsi4 : ahci
[ 4.271946] scsi5 : ahci
[ 4.274025] ata1: SATA max UDMA/133 abar m2048@0xf7f06000 port 0xf7f06100 irq 43
[ 4.274577] ata2: DUMMY
[ 4.275131] ata3: DUMMY
[ 4.275678] ata4: DUMMY
[ 4.276220] ata5: SATA max UDMA/133 abar m2048@0xf7f06000 port 0xf7f06300 irq 43
[ 4.276787] ata6: SATA max UDMA/133 abar m2048@0xf7f06000 port 0xf7f06380 irq 43
[ 4.278702] tun: Universal TUN/TAP device driver, 1.6
[ 4.279294] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[ 4.280340] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 4.281549] r8169 0000:05:00.0: enabling Mem-Wr-Inval
[ 4.281791] r8169 0000:05:00.0: irq 44 for MSI/MSI-X
[ 4.283030] r8169 0000:05:00.0 eth0: RTL8168e/8111e at 0xffffc9000002c000, 18:03:73:a0:6f:6a, XID 0c200000 IRQ 44
[ 4.283693] r8169 0000:05:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 4.284627] VMware vmxnet3 virtual NIC driver - version 1.1.30.0-k-NAPI
[ 4.285737] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.286607] ehci-pci: EHCI PCI platform driver
[ 4.288966] ehci-pci 0000:00:1a.0: enabling bus mastering
[ 4.288972] ehci-pci 0000:00:1a.0: setting latency timer to 64
[ 4.289004] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 4.289800] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 4.290528] ehci-pci 0000:00:1a.0: debug port 2
[ 4.295178] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 4.295309] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7f08000
[ 4.306801] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 4.307806] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.308475] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.309139] usb usb1: Product: EHCI Host Controller
[ 4.309799] usb usb1: Manufacturer: Linux 3.10.9-default-pciehp ehci_hcd
[ 4.310466] usb usb1: SerialNumber: 0000:00:1a.0
[ 4.312538] hub 1-0:1.0: USB hub found
[ 4.313266] hub 1-0:1.0: 2 ports detected
[ 4.316914] ehci-pci 0000:00:1d.0: enabling bus mastering
[ 4.316921] ehci-pci 0000:00:1d.0: setting latency timer to 64
[ 4.316932] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 4.317600] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 4.318264] ehci-pci 0000:00:1d.0: debug port 2
[ 4.322830] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 4.322936] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7f07000
[ 4.336112] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 4.336977] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.337619] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.338251] usb usb2: Product: EHCI Host Controller
[ 4.338870] usb usb2: Manufacturer: Linux 3.10.9-default-pciehp ehci_hcd
[ 4.339494] usb usb2: SerialNumber: 0000:00:1d.0
[ 4.341202] hub 2-0:1.0: USB hub found
[ 4.341850] hub 2-0:1.0: 2 ports detected
[ 4.344465] xhci_hcd 0000:0b:00.0: enabling bus mastering
[ 4.344476] xhci_hcd 0000:0b:00.0: xHCI Host Controller
[ 4.345142] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 3
[ 4.346060] xhci_hcd 0000:0b:00.0: enabling Mem-Wr-Inval
[ 4.346207] xhci_hcd 0000:0b:00.0: irq 45 for MSI/MSI-X
[ 4.346253] xhci_hcd 0000:0b:00.0: irq 46 for MSI/MSI-X
[ 4.346874] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.347517] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.348166] usb usb3: Product: xHCI Host Controller
[ 4.348806] usb usb3: Manufacturer: Linux 3.10.9-default-pciehp xhci_hcd
[ 4.349441] usb usb3: SerialNumber: 0000:0b:00.0
[ 4.350822] xHCI xhci_add_endpoint called for root hub
[ 4.350824] xHCI xhci_check_bandwidth called for root hub
[ 4.351223] hub 3-0:1.0: USB hub found
[ 4.351940] hub 3-0:1.0: 2 ports detected
[ 4.353522] xhci_hcd 0000:0b:00.0: xHCI Host Controller
[ 4.354204] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 4
[ 4.355199] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 4.355845] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.356511] usb usb4: Product: xHCI Host Controller
[ 4.357135] usb usb4: Manufacturer: Linux 3.10.9-default-pciehp xhci_hcd
[ 4.357761] usb usb4: SerialNumber: 0000:0b:00.0
[ 4.359256] xHCI xhci_add_endpoint called for root hub
[ 4.359258] xHCI xhci_check_bandwidth called for root hub
[ 4.359679] hub 4-0:1.0: USB hub found
[ 4.360344] hub 4-0:1.0: 2 ports detected
[ 4.362306] usbcore: registered new interface driver usb-storage
[ 4.363140] usbcore: registered new interface driver ums-realtek
[ 4.364146] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2] at 0x60,0x64 irq 1,12
[ 4.367429] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 4.368100] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 4.370341] mousedev: PS/2 mouse device common for all mice
[ 4.373828] rtc_cmos 00:04: RTC can wake from S4
[ 4.374663] rtc (null): alarm rollover: day
[ 4.375164] rtc rtc0: rtc_cmos: dev (254:0)
[ 4.375191] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 4.375857] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 4.378801] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130328/utaddress-251)
[ 4.378808] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.380859] coretemp coretemp.0: TjMax is 100 degrees C
[ 4.380896] coretemp coretemp.0: TjMax is 100 degrees C
[ 4.380924] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[ 4.381664] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[ 4.383223] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 4.384030] iTCO_vendor_support: vendor-support=0
[ 4.384696] md: linear personality registered for level -1
[ 4.385340] md: raid0 personality registered for level 0
[ 4.385990] md: raid1 personality registered for level 1
[ 4.386669] md: raid10 personality registered for level 10
[ 4.387310] md: raid6 personality registered for level 6
[ 4.387951] md: raid5 personality registered for level 5
[ 4.388580] md: raid4 personality registered for level 4
[ 4.390556] device-mapper: uevent: version 1.0.3
[ 4.392210] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@xxxxxxxxxx
[ 4.394058] Intel P-state driver initializing.
[ 4.394750] Intel pstate controlling: cpu 0
[ 4.396157] cpuidle: using governor ladder
[ 4.397486] cpuidle: using governor menu
[ 4.398979] sdhci: Secure Digital Host Controller Interface driver
[ 4.399585] sdhci: Copyright(c) Pierre Ossman
[ 4.403829] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[ 4.405422] hidraw: raw HID events driver (C) Jiri Kosina
[ 4.408807] usbcore: registered new interface driver usbhid
[ 4.409413] usbhid: USB HID core driver
[ 4.410667] input: Dell WMI hotkeys as /devices/virtual/input/input6
[ 4.414978] snd_hda_intel 0000:00:1b.0: irq 47 for MSI/MSI-X
[ 4.425903] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
[ 4.462530] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 4.464493] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 4.466531] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 4.473250] TCP: cubic registered
[ 4.474060] NET: Registered protocol family 17
[ 4.475078] Bluetooth: RFCOMM TTY layer initialized
[ 4.475913] Bluetooth: RFCOMM socket layer initialized
[ 4.476736] Bluetooth: RFCOMM ver 1.11
[ 4.477519] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 4.478287] Bluetooth: BNEP filters: protocol multicast
[ 4.479058] Bluetooth: BNEP socket layer initialized
[ 4.479799] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 4.480559] Bluetooth: HIDP socket layer initialized
[ 4.481385] Key type dns_resolver registered
[ 4.484918] PM: Checking hibernation image partition /dev/sda6
[ 4.626603] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 4.628567] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 4.639802] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[ 4.641106] ata1.00: ATA-8: WDC WD7500BPKT-75PK4T0, 01.01A01, max UDMA/133
[ 4.642039] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 4.652898] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[ 4.654086] ata1.00: configured for UDMA/133
[ 4.668974] scsi 0:0:0:0: Direct-Access ATA WDC WD7500BPKT-7 01.0 PQ: 0 ANSI: 5
[ 4.674355] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
[ 4.675636] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 4.677684] sd 0:0:0:0: [sda] Write Protect is off
[ 4.678887] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.679186] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.682626] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 4.777785] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[ 4.779703] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.785087] hub 1-1:1.0: USB hub found
[ 4.787400] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[ 4.789828] hub 1-1:1.0: 6 ports detected
[ 4.813526] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.927110] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 5.037108] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 5.044386] ata5.00: ATAPI: PLDS DVD+/-RW DS-8A8SH, KD11, max UDMA/100
[ 5.051777] ata5.00: configured for UDMA/100
[ 5.076833] scsi 4:0:0:0: CD-ROM PLDS DVD+-RW DS-8A8SH KD11 PQ: 0 ANSI: 5
[ 5.081750] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[ 5.083680] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 5.089838] hub 2-1:1.0: USB hub found
[ 5.092047] hub 2-1:1.0: 8 ports detected
[ 5.113950] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 5.113965] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 5.120022] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 5.122478] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 5.227383] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[ 5.251069] usb 3-1: New USB device found, idVendor=2109, idProduct=3431
[ 5.252927] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 5.254781] usb 3-1: Product: USB2.0 Hub
[ 5.286259] hub 3-1:1.0: USB hub found
[ 5.288815] hub 3-1:1.0: 4 ports detected
[ 5.417640] usb 3-2: new high-speed USB device number 3 using xhci_hcd
[ 5.441218] usb 3-2: New USB device found, idVendor=2109, idProduct=0811
[ 5.443124] usb 3-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 5.445009] usb 3-2: Product: USB2.0 Hub
[ 5.467687] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 5.471001] ata6.00: ATA-8: ST3000VX000-1CU166, CV22, max UDMA/133
[ 5.472933] ata6.00: 5860533168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 5.476152] ata6.00: configured for UDMA/133
[ 5.480557] scsi 5:0:0:0: Direct-Access ATA ST3000VX000-1CU1 CV22 PQ: 0 ANSI: 5
[ 5.483514] hub 3-2:1.0: USB hub found
[ 5.487364] hub 3-2:1.0: 4 ports detected
[ 5.495192] sd 5:0:0:0: [sdb] 5860533168 512-byte logical blocks: (3.00 TB/2.72 TiB)
[ 5.497124] sd 5:0:0:0: [sdb] 4096-byte physical blocks
[ 5.502216] sd 5:0:0:0: [sdb] Write Protect is off
[ 5.504088] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 5.504747] sd 5:0:0:0: Attached scsi generic sg2 type 0
[ 5.509797] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.575567] sdb: sdb1
[ 5.582810] sd 5:0:0:0: [sdb] Attached SCSI disk
[ 5.616194] input: DualPoint Stick as /devices/platform/i8042/serio1/input/input11
[ 5.630461] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 5.636471] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input12
[ 5.643970] PM: Hibernation image partition 8:6 present
[ 5.643977] PM: Looking for hibernation image.
[ 5.677358] PM: Image not found (code -22)
[ 5.677366] PM: Hibernation image not present or could not be loaded.
[ 5.677484] registered taskstats version 1
[ 5.680098] kmemleak: Kernel memory leak detector initialized
[ 5.686448] kmemleak: Automatic memory scanning thread started
[ 5.688698] rtc_cmos 00:04: setting system clock to 2013-08-30 15:03:03 UTC (1377874983)
[ 5.690623] BIOS EDD facility v0.16 2004-Jun-25, 2 devices found
[ 5.698684] ALSA device list:
[ 5.700578] #0: HDA Intel PCH at 0xf7f00000 irq 47
[ 5.703510] md: Waiting for all devices to be available before autodetect
[ 5.705440] md: If you don't use raid, use raid=noautodetect
[ 5.712768] md: Autodetecting RAID arrays.
[ 5.714651] md: Scanned 0 and added 0 devices.
[ 5.716521] md: autorun ...
[ 5.718446] md: ... autorun DONE.
[ 5.763127] EXT3-fs (sda5): recovery required on readonly filesystem
[ 5.765024] EXT3-fs (sda5): write access will be enabled during recovery
[ 5.801354] usb 4-1: Parent hub missing LPM exit latency info. Power management will be impacted.
[ 5.962022] usb 4-1: New USB device found, idVendor=2109, idProduct=0810
[ 5.964013] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5.965942] usb 4-1: Product: 4-Port USB 3.0 Hub
[ 5.967843] usb 4-1: Manufacturer: VIA Labs, Inc.
[ 6.038419] hub 4-1:1.0: USB hub found
[ 6.085424] hub 4-1:1.0: 4 ports detected
[ 6.261030] usb 4-2: new SuperSpeed USB device number 3 using xhci_hcd
[ 6.262982] hub 4-1:1.0: hub_port_status failed (err = -71)
[ 6.306883] usb 4-2: Parent hub missing LPM exit latency info. Power management will be impacted.
[ 6.345112] usb 4-2: New USB device found, idVendor=2109, idProduct=0811
[ 6.347144] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6.349169] usb 4-2: Product: 4-Port USB 3.0 Hub
[ 6.351124] usb 4-2: Manufacturer: VIA Labs, Inc.
[ 6.422094] hub 4-2:1.0: USB hub found
[ 6.430581] hub 4-2:1.0: 4 ports detected
[ 6.603148] usb 1-1.5: new high-speed USB device number 3 using ehci-pci
[ 6.762503] usb 1-1.5: New USB device found, idVendor=05ca, idProduct=1820
[ 6.764490] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6.766393] usb 1-1.5: Product: Laptop_Integrated_Webcam_FHD
[ 6.768308] usb 1-1.5: Manufacturer: CN01MWM9724871A4KB28A00
[ 6.923440] usb 2-1.2: new low-speed USB device number 3 using ehci-pci
[ 7.077901] usb 2-1.2: New USB device found, idVendor=04f2, idProduct=0116
[ 7.079874] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 7.081773] usb 2-1.2: Product: USB Keyboard
[ 7.083635] usb 2-1.2: Manufacturer: CHICONY
[ 7.123199] input: CHICONY USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input13
[ 7.137495] hid-generic 0003:04F2:0116.0001: input,hidraw0: USB HID v1.10 Keyboard [CHICONY USB Keyboard] on usb-0000:00:1d.0-1.2/input0
[ 7.221126] usb 2-1.3: new full-speed USB device number 4 using ehci-pci
[ 7.345112] usb 2-1.3: New USB device found, idVendor=138a, idProduct=0011
[ 7.347088] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[ 7.349024] usb 2-1.3: SerialNumber: 56ed5821afe2
[ 7.451371] usb 3-2.4: new low-speed USB device number 4 using xhci_hcd
[ 7.510981] usb 3-2.4: New USB device found, idVendor=046d, idProduct=c050
[ 7.512920] usb 3-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 7.514829] usb 3-2.4: Product: USB-PS/2 Optical Mouse
[ 7.516726] usb 3-2.4: Manufacturer: Logitech
[ 7.552051] usb 3-2.4: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[ 7.569165] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1c.4/0000:0b:00.0/usb3/3-2/3-2.4/3-2.4:1.0/input/input14
[ 7.575598] hid-generic 0003:046D:C050.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:0b:00.0-2.4/input0
[ 12.270269] kjournald starting. Commit interval 5 seconds
[ 12.278738] EXT3-fs (sda5): recovery complete
[ 12.280856] EXT3-fs (sda5): mounted filesystem with writeback data mode
[ 12.283064] VFS: Mounted root (ext3 filesystem) readonly on device 8:5.
[ 12.336424] devtmpfs: mounted
[ 12.338942] Freeing unused kernel memory: 908k freed
[ 12.341261] Write protecting the kernel read-only data: 12288k
[ 12.346811] Freeing unused kernel memory: 380k freed
[ 12.352957] Freeing unused kernel memory: 812k freed
[ 17.377211] systemd-udevd[1961]: starting version 206
[ 19.400734] systemd-udevd[1984]: renamed network interface eth0 to enp5s0
[ 20.794698] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[ 20.794705] Copyright(c) 2003-2013 Intel Corporation
[ 20.796801] iwlwifi 0000:09:00.0: irq 48 for MSI/MSI-X
[ 21.209663] iwlwifi 0000:09:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[ 22.821938] iwlwifi 0000:09:00.0: CONFIG_IWLWIFI_DEBUG enabled
[ 22.821948] iwlwifi 0000:09:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[ 22.821953] iwlwifi 0000:09:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[ 22.821958] iwlwifi 0000:09:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[ 22.821962] iwlwifi 0000:09:00.0: CONFIG_IWLWIFI_P2P disabled
[ 22.821970] iwlwifi 0000:09:00.0: Detected Intel(R) Centrino(R) Wireless-N 1030 BGN, REV=0xB0
[ 22.822112] iwlwifi 0000:09:00.0: L1 Disabled; Enabling L0S
[ 22.840366] iwlwifi 0000:09:00.0: RF_KILL bit toggled to disable radio.
[ 22.847097] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 23.089488] systemd-udevd[1981]: renamed network interface wlan0 to wlp9s0
[ 26.952013] EXT3-fs (sda5): using internal journal
[ 27.464629] Adding 4998972k swap on /dev/sda6. Priority:-1 extents:1 across:4998972k FS
[ 35.694208] r8169 0000:05:00.0 enp5s0: unable to load firmware patch rtl_nic/rtl8168e-2.fw (-2)
[ 35.719229] r8169 0000:05:00.0 enp5s0: link down
[ 35.719783] r8169 0000:05:00.0 enp5s0: link down
[ 37.404140] r8169 0000:05:00.0 enp5s0: link up
[ 51.146153] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x1b
[ 51.147362] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
[ 51.147371] perf_event_intel: PEBS enabled due to microcode update
[ 53.822197] usb 4-2.3: new SuperSpeed USB device number 4 using xhci_hcd
[ 53.843616] usb 4-2.3: Parent hub missing LPM exit latency info. Power management will be impacted.
[ 53.852133] usb 4-2.3: New USB device found, idVendor=174c, idProduct=5106
[ 53.852146] usb 4-2.3: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 53.852152] usb 4-2.3: Product: AS2105
[ 53.852160] usb 4-2.3: Manufacturer: ASMedia
[ 53.852164] usb 4-2.3: SerialNumber: WD-WX51C10U8155
[ 53.861118] usb-storage 4-2.3:1.0: USB Mass Storage device detected
[ 53.874142] scsi6 : usb-storage 4-2.3:1.0
[ 54.874043] scsi 6:0:0:0: Direct-Access WDC WD10 TPVT-00HT5T0 01.0 PQ: 0 ANSI: 5
[ 54.877559] sd 6:0:0:0: Attached scsi generic sg3 type 0
[ 54.878712] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 54.880796] sd 6:0:0:0: [sdc] Write Protect is off
[ 54.880799] sd 6:0:0:0: [sdc] Mode Sense: 23 00 00 00
[ 54.884024] sd 6:0:0:0: [sdc] No Caching mode page present
[ 54.884034] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[ 54.889908] sd 6:0:0:0: [sdc] No Caching mode page present
[ 54.889910] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[ 55.187747] sdc: sdc1
[ 55.195799] sd 6:0:0:0: [sdc] No Caching mode page present
[ 55.195810] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[ 55.195825] sd 6:0:0:0: [sdc] Attached SCSI disk
[ 118.141658] kjournald starting. Commit interval 5 seconds
[ 118.141864] EXT3-fs (sdc1): warning: maximal mount count reached, running e2fsck is recommended
[ 118.142428] EXT3-fs (sdc1): using internal journal
[ 118.142438] EXT3-fs (sdc1): mounted filesystem with writeback data mode
[ 558.612619] EXT4-fs (sdb1): recovery complete
[ 558.632886] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[ 948.086413] kmemleak: 1 new suspected memory leaks (see /sys/kernel/debug/kmemleak)