2013-06-22

Greetings,

I got the below dmesg and the first bad commit is

commit cf910e83ae23692fdeefc7e506e504c4c468d38a

Author: Seiji Aguchi <seiji.aguchi@hds.com>

Date: Thu Jun 20 11:46:53 2013 -0400

x86, trace: Add irq vector tracepoints

[Purpose of this patch]

As Vaibhav explained in the thread below, tracepoints for irq vectors

are useful.

http://www.spinics.net/lists/mm-commits/msg85707.html

<snip>

The current interrupt traces from irq_handler_entry and irq_handler_exit

provide when an interrupt is handled. They provide good data about when

the system has switched to kernel space and how it affects the currently

running processes.

There are some IRQ vectors which trigger the system into kernel space,

which are not handled in generic IRQ handlers. Tracing such events gives

us the information about IRQ interaction with other system events.

The trace also tells where the system is spending its time. We want to

know which cores are handling interrupts and how they are affecting other

processes in the system. Also, the trace provides information about when

the cores are idle and which interrupts are changing that state.

<snip>

On the other hand, my usecase is tracing just local timer event and

getting a value of instruction pointer.

I suggested to add an argument local timer event to get instruction pointer before.

But there is another way to get it with external module like systemtap.

So, I don't need to add any argument to irq vector tracepoints now.

[Patch Description]

Vaibhav's patch shared a trace point ,irq_vector_entry/irq_vector_exit, in all events.

But there is an above use case to trace specific irq_vector rather than tracing all events.

In this case, we are concerned about overhead due to unwanted events.

So, add following tracepoints instead of introducing irq_vector_entry/exit.

so that we can enable them independently.

- local_timer_vector

- reschedule_vector

- call_function_vector

- call_function_single_vector

- irq_work_entry_vector

- error_apic_vector

- thermal_apic_vector

- threshold_apic_vector

- spurious_apic_vector

- x86_platform_ipi_vector

Also, introduce a logic switching IDT at enabling/disabling time so that a time penalty

makes a zero when tracepoints are disabled. Detailed explanations are as follows.

- Create trace irq handlers with entering_irq()/exiting_irq().

- Create a new IDT, trace_idt_table, at boot time by adding a logic to

_set_gate(). It is just a copy of original idt table.

- Register the new handlers for tracpoints to the new IDT by introducing

macros to alloc_intr_gate() called at registering time of irq_vector handlers.

- Add checking, whether irq vector tracing is on/off, into load_current_idt().

This has to be done below debug checking for these reasons.

- Switching to debug IDT may be kicked while tracing is enabled.

- On the other hands, switching to trace IDT is kicked only when debugging

is disabled.

In addition, the new IDT is created only when CONFIG_TRACING is enabled to avoid being

used for other purposes.

Signed-off-by: Seiji Aguchi <seiji.aguchi@hds.com>

Link: http://lkml.kernel.org/r/51C323ED.5050708@hds.com

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>

Cc: Steven Rostedt <rostedt@goodmis.org>

[ 50.721349]

[ 50.721502] ===============================

[ 50.721835] [ INFO: suspicious RCU usage. ]

[ 50.722169] 3.10.0-rc6-00004-gcf910e8 #190 Not tainted

[ 50.722582] -------------------------------

[ 50.722915] /c/kernel-tests/src/linux/arch/x86/include/asm/trace/irq_vectors.h:50 suspicious rcu_dereference_check() usage!

[ 50.723770]

[ 50.723770] other info that might help us debug this:

[ 50.723770]

[ 50.724385]

[ 50.724385] RCU used illegally from idle CPU!

[ 50.724385] rcu_scheduler_active = 1, debug_locks = 0

[ 50.725232] RCU used illegally from extended quiescent state!

[ 50.725690] no locks held by swapper/0/0.

[ 50.726010]

[ 50.726010] stack backtrace:

[ 50.726359] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 3.10.0-rc6-00004-gcf910e8 #190

[ 50.726965] Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011

[ 50.727417] 00000001 00000001 79c53f04 798bd9f9 79c53f2c 79077a70 79b412c6 79b41fd1

[ 50.728159] 00000001 00000000 79c5ef8c 87147c58 00000000 79c55800 79c53f38 79010b65

[ 50.728849] 79c52000 79c53f7c 798c720e 79c52000 79c5ef8c 00000004 00000000 79c55800

[ 50.729532] Call Trace:

[ 50.729730] [<798bd9f9>] dump_stack+0x16/0x18

[ 50.730072] [<79077a70>] lockdep_rcu_suspicious+0xf2/0xfa

[ 50.730498] [<79010b65>] smp_trace_reschedule_interrupt+0x1c8/0x1d0

[ 50.730979] [<798c720e>] trace_reschedule_interrupt+0x36/0x3c

[ 50.731214] [<7901875f>] ? native_safe_halt+0x5/0x7

[ 50.731214] [<790085cc>] default_idle+0xb1/0x1e2

[ 50.731214] [<79008d05>] arch_cpu_idle+0xe/0x10

[ 50.731214] [<79069ddf>] cpu_startup_entry+0x1e4/0x2c3

[ 50.731214] [<798adb34>] rest_init+0x12c/0x132

[ 50.731214] [<798ada08>] ? __read_lock_failed+0x14/0x14

[ 50.731214] [<79d309e4>] start_kernel+0x38d/0x393

[ 50.731214] [<79d30489>] ? repair_env_string+0x51/0x51

[ 50.731214] [<79d302c3>] i386_start_kernel+0x79/0x7d

[ 50.771947] OK

[ 50.772099] Testing event reschedule_entry: OK

git bisect start cf910e83ae23692fdeefc7e506e504c4c468d38a v3.9 --

git bisect good fbcd4836d20a33209843dcf84f83a33b97b74c9a # 16:16 52+ [SCSI] qla4xxx: Assign values using correct datatype

git bisect good 91f8575685e35f3bd021286bc82d26397458f5a9 # 17:09 52+ Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client

git bisect good c4cc75c3321cad6f20d1e5325293890255c8a663 # 20:03 52+ Merge git://git.infradead.org/users/eparis/audit

git bisect good 3a5395b3d57b9e3836c755434c88f4590d5ea6f6 # 20:17 52+ net: ethernet: xilinx_emaclite: set protocol selector bits when writing ANAR

git bisect good e6395b68ad09a835f058da31bad0fe23d3882659 # 20:28 52+ Merge tag 'for-linus-v3.10-rc5' of git://oss.sgi.com/xfs/xfs

git bisect good 5402b8047b0d286b6501f9097891cbf1e06daa3a # 20:40 52+ lib/mpi/mpicoder.c: looping issue, need stop when equal to zero, found by 'EXTRA_FLAGS=-W'.

git bisect good 2dc85bf323515e59e15dfa858d1472bb25cad0fe # 20:53 52+ packet: packet_getname_spkt: make sure string is always 0-terminated

git bisect good 3ad2e318a24124c53cc6390b5bfbd7613d9c2145 # 21:06 52+ Merge tag 'usb-3.10-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb

git bisect good 5938930e71affa390c3fa33fa2fda52f58f850e8 # 21:17 52+ Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc

git bisect good 323226bbb3d865af12644d66df2b7f161adf51c7 # 21:30 52+ Merge tag 'fixes-3.10-4' of git://git.infradead.org/users/jcooper/linux into fixes

git bisect good dd019897358b815f7828dab90b51d51df4d3658d # 21:40 52+ net: sh_eth: fix incorrect RX length error if R8A7740

git bisect good e6694d984adbe8146d2f1e08d500befc1481835e # 22:02 52+ Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc

git bisect good f5abaa1bfc3dbf26d19d3513f39279ca369f8d65 # 22:13 52+ tracing: Add DEFINE_EVENT_FN() macro

git bisect good 629f4f9d59a27d8e58aa612e886e6a9a63ea7aeb # 22:24 52+ x86: Rename variables for debugging

git bisect good 629f4f9d59a27d8e58aa612e886e6a9a63ea7aeb # 22:31 156+ x86: Rename variables for debugging

git bisect bad 83ab85140bc1492f92de263a1c30ea04a0f465f7 # 22:31 0- trace,x86: Move creation of irq tracepoints from apic.c to irq.c

git bisect good f71194a7d47c1da787555d27aac63973ca72323b # 22:36 156+ Merge branch 'x86/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

git bisect good a92a990789849502897e3e19c2c0e5154888edf7 # 23:55 156+ Merge branch 'perf/core'

Thanks,

Fengguang

[ 0.000000] Initializing cgroup subsys cpu

[ 0.000000] Linux version 3.10.0-rc6-00004-gcf910e8 (kbuild@roam) (gcc version 4.8.1 (Debian 4.8.1-3) ) #190 SMP Sat Jun 22 05:46:39 CST 2013

[ 0.000000] KERNEL supported cpus:

[ 0.000000] Centaur CentaurHauls

[ 0.000000] CPU: vendor_id 'GenuineIntel' unknown, using generic init.

[ 0.000000] CPU: Your system may be unstable.

[ 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 0x00000000000f0000-0x00000000000fffff] reserved

[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000fffdfff] usable

[ 0.000000] BIOS-e820: [mem 0x000000000fffe000-0x000000000fffffff] reserved

[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved

[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved

[ 0.000000] debug: ignoring loglevel setting.

[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!

[ 0.000000] SMBIOS 2.4 present.

[ 0.000000] DMI: Bochs Bochs, BIOS Bochs 01/01/2011

[ 0.000000] Hypervisor detected: KVM

[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved

[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable

[ 0.000000] e820: last_pfn = 0xfffe max_arch_pfn = 0x100000

[ 0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]

[ 0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]

[ 0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]

[ 0.000000] found SMP MP-table at [mem 0x000fdab0-0x000fdabf] mapped at [780fdab0]

[ 0.000000] mpc: fdac0-fdbe4

[ 0.000000] initial memory mapped: [mem 0x00000000-0x02bfffff]

[ 0.000000] Base memory trampoline at [7809b000] 9b000 size 16384

[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]

[ 0.000000] [mem 0x00000000-0x000fffff] page 4k

[ 0.000000] init_memory_mapping: [mem 0x0e000000-0x0e3fffff]

[ 0.000000] [mem 0x0e000000-0x0e3fffff] page 2M

[ 0.000000] init_memory_mapping: [mem 0x08000000-0x0dffffff]

[ 0.000000] [mem 0x08000000-0x0dffffff] page 2M

[ 0.000000] init_memory_mapping: [mem 0x00100000-0x07ffffff]

[ 0.000000] [mem 0x00100000-0x003fffff] page 4k

[ 0.000000] [mem 0x00400000-0x07ffffff] page 2M

[ 0.000000] init_memory_mapping: [mem 0x0e400000-0x0fffdfff]

[ 0.000000] [mem 0x0e400000-0x0fbfffff] page 2M

[ 0.000000] [mem 0x0fc00000-0x0fffdfff] page 4k

[ 0.000000] BRK [0x02400000, 0x02400fff] PGTABLE

[ 0.000000] cma: dma_contiguous_reserve(limit 00000000)

[ 0.000000] cma: dma_contiguous_reserve: reserving 16 MiB for global area

[ 0.000000] cma: dma_declare_contiguous(size 1000000, base 00000000, limit 00000000)

[ 0.000000] cma: CMA: reserved 16 MiB at 0d400000

[ 0.000000] log_buf_len: 8388608

[ 0.000000] early log buf free: 128128(97%)

[ 0.000000] RAMDISK: [mem 0x0e73f000-0x0ffeffff]

[ 0.000000] ACPI: RSDP 000fd920 00014 (v00 BOCHS )

[ 0.000000] ACPI: RSDT 0fffe450 00034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)

[ 0.000000] ACPI: FACP 0fffff80 00074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)

[ 0.000000] ACPI: DSDT 0fffe490 011A9 (v01 BXPC BXDSDT 00000001 INTL 20100528)

[ 0.000000] ACPI: FACS 0fffff40 00040

[ 0.000000] ACPI: SSDT 0ffff7a0 00796 (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001)

[ 0.000000] ACPI: APIC 0ffff680 00080 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)

[ 0.000000] ACPI: HPET 0ffff640 00038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001)

[ 0.000000] ACPI: Local APIC address 0xfee00000

[ 0.000000] mapped APIC to ffff9000 ( fee00000)

[ 0.000000] 0MB HIGHMEM available.

[ 0.000000] 255MB LOWMEM available.

[ 0.000000] mapped low ram: 0 - 0fffe000

[ 0.000000] low ram: 0 - 0fffe000

[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00

[ 0.000000] kvm-clock: cpu 0, msr 0:fffd001, boot clock

[ 0.000000] BRK [0x02401000, 0x02401fff] PGTABLE

[ 0.000000] Zone ranges:

[ 0.000000] DMA [mem 0x00001000-0x00ffffff]

[ 0.000000] Normal [mem 0x01000000-0x0fffdfff]

[ 0.000000] HighMem empty

[ 0.000000] Movable zone start for each node

[ 0.000000] Early memory node ranges

[ 0.000000] node 0: [mem 0x00001000-0x0009efff]

[ 0.000000] node 0: [mem 0x00100000-0x0fffdfff]

[ 0.000000] On node 0 totalpages: 65436

[ 0.000000] free_area_init_node: node 0, pgdat 79d1d4e0, node_mem_map 8653f020

[ 0.000000] DMA zone: 32 pages used for memmap

[ 0.000000] DMA zone: 0 pages reserved

[ 0.000000] DMA zone: 3998 pages, LIFO batch:0

[ 0.000000] Normal zone: 480 pages used for memmap

[ 0.000000] Normal zone: 61438 pages, LIFO batch:15

[ 0.000000] Using APIC driver default

[ 0.000000] ACPI: PM-Timer IO Port: 0xb008

[ 0.000000] ACPI: Local APIC address 0xfee00000

[ 0.000000] mapped APIC to ffff9000 ( fee00000)

[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)

[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)

[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])

[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])

[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23

[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 0, APIC INT 02

[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)

[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 05, APIC ID 0, APIC INT 05

[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)

[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 09, APIC ID 0, APIC INT 09

[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)

[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 0a, APIC ID 0, APIC INT 0a

[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)

[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 0b, APIC ID 0, APIC INT 0b

[ 0.000000] ACPI: IRQ0 used by override.

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 0, APIC INT 01

[ 0.000000] ACPI: IRQ2 used by override.

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 0, APIC INT 03

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 0, APIC INT 04

[ 0.000000] ACPI: IRQ5 used by override.

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 0, APIC INT 06

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 0, APIC INT 07

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 0, APIC INT 08

[ 0.000000] ACPI: IRQ9 used by override.

[ 0.000000] ACPI: IRQ10 used by override.

[ 0.000000] ACPI: IRQ11 used by override.

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 0, APIC INT 0c

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 0, APIC INT 0d

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 0, APIC INT 0e

[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 0, APIC INT 0f

[ 0.000000] Using ACPI (MADT) for SMP configuration information

[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000

[ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs

[ 0.000000] mapped IOAPIC to ffff8000 (fec00000)

[ 0.000000] nr_irqs_gsi: 40

[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000

[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000

[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000

[ 0.000000] e820: [mem 0x10000000-0xfeffbfff] available for PCI devices

[ 0.000000] Booting paravirtualized kernel on KVM

[ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:1

[ 0.000000] PERCPU: Embedded 11 pages/cpu @86529000 s29376 r0 d15680 u45056

[ 0.000000] pcpu-alloc: s29376 r0 d15680 u45056 alloc=11*4096

[ 0.000000] pcpu-alloc: [0] 0 [0] 1

[ 0.000000] kvm-clock: cpu 0, msr 0:fffd001, primary cpu clock

[ 0.000000] KVM setup async PF for cpu 0

[ 0.000000] kvm-stealtime: cpu 0, msr e52b5c0

[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 64924

[ 0.000000] Kernel command line: hung_task_panic=1 rcutree.rcu_cpu_stall_timeout=100 log_buf_len=8M ignore_loglevel debug sched_debug apic=debug dynamic_printk sysrq_always_enabled panic=10 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal root=/dev/ram0 rw link=/kernel-tests/run-queue/kvm/i386-randconfig-r00-0621/tip:x86:trace/.vmlinuz-cf910e83ae23692fdeefc7e506e504c4c468d38a-20130622054730-4-kbuild branch=tip/x86/trace BOOT_IMAGE=/kernel/i386-randconfig-r00-0621/cf910e83ae23692fdeefc7e506e504c4c468d38a/vmlinuz-3.10.0-rc6-00004-gcf910e8

[ 0.000000] sysrq: sysrq always enabled.

[ 0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)

[ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)

[ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)

[ 0.000000] Initializing CPU#0

[ 0.000000] allocated 524264 bytes of page_cgroup

[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups

[ 0.000000] Initializing HighMem for node 0 (00000000:00000000)

[ 0.000000] Memory: 188440k/262136k available (8994k kernel code, 73304k reserved, 4506k data, 932k init, 0k highmem)

[ 0.000000] virtual kernel memory layout:

[ 0.000000] fixmap : 0xffd33000 - 0xfffff000 (2864 kB)

[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)

[ 0.000000] vmalloc : 0x887fe000 - 0xff7fe000 (1904 MB)

[ 0.000000] lowmem : 0x78000000 - 0x87ffe000 ( 255 MB)

[ 0.000000] .init : 0x79d30000 - 0x79e19000 ( 932 kB)

[ 0.000000] .data : 0x798c88ff - 0x79d2f200 (4506 kB)

[ 0.000000] .text : 0x79000000 - 0x798c88ff (8994 kB)

[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.

[ 0.000000] Hierarchical RCU implementation.

[ 0.000000]

[ 0.000000]

[ 0.000000]

[ 0.000000]

[ 0.000000]

[ 0.000000]

[ 0.000000] NR_IRQS:2304 nr_irqs:512 16

[ 0.000000] CPU 0 irqstacks, hard=84802000 soft=84804000

[ 0.000000] console [ttyS0] 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: 3567 kB

[ 0.000000] per task-struct memory footprint: 1152 bytes

[ 0.000000] ------------------------

[ 0.000000] | Locking API testsuite:

[ 0.000000] ----------------------------------------------------------------------------

[ 0.000000] | spin |wlock |rlock |mutex | wsem | rsem |

[ 0.000000] --------------------------------------------------------------------------

[ 0.000000] A-A deadlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] A-B-B-A deadlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] A-B-B-C-C-A deadlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] A-B-C-A-B-C deadlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] A-B-B-C-C-D-D-A deadlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] A-B-C-D-B-D-D-A deadlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] A-B-C-D-B-C-D-A deadlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] double unlock: ok | ok | ok | ok | ok | ok |

[ 0.000000] initialize held: ok | ok | ok | ok | ok | ok |

[ 0.000000] bad unlock order: ok | ok | ok | ok | ok | ok |

[ 0.000000] --------------------------------------------------------------------------

[ 0.000000] recursive read-lock: | ok | | ok |

[ 0.000000] recursive read-lock #2: | ok | | ok |

[ 0.000000] mixed read-write-lock: | ok | | ok |

[ 0.000000] mixed write-read-lock: | ok | | ok |

[ 0.000000] --------------------------------------------------------------------------

[ 0.000000] hard-irqs-on + irq-safe-A/12: ok | ok | ok |

[ 0.000000] soft-irqs-on + irq-safe-A/12: ok | ok | ok |

[ 0.000000] hard-irqs-on + irq-safe-A/21: ok | ok | ok |

[ 0.000000] soft-irqs-on + irq-safe-A/21: ok | ok | ok |

[ 0.000000] sirq-safe-A => hirqs-on/12: ok | ok | ok |

[ 0.000000] sirq-safe-A => hirqs-on/21: ok | ok | ok |

[ 0.000000] hard-safe-A + irqs-on/12: ok | ok | ok |

[ 0.000000] soft-safe-A + irqs-on/12: ok | ok | ok |

[ 0.000000] hard-safe-A + irqs-on/21: ok | ok | ok |

[ 0.000000] soft-safe-A + irqs-on/21: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #1/123: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #1/123: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #1/132: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #1/132: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #1/213: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #1/213: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #1/231: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #1/231: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #1/312: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #1/312: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #1/321: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #1/321: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #2/123: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #2/123: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #2/132: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #2/132: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #2/213: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #2/213: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #2/231: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #2/231: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #2/312: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #2/312: ok | ok | ok |

[ 0.000000] hard-safe-A + unsafe-B #2/321: ok | ok | ok |

[ 0.000000] soft-safe-A + unsafe-B #2/321: ok | ok | ok |

[ 0.000000] hard-irq lock-inversion/123: ok | ok | ok |

[ 0.000000] soft-irq lock-inversion/123: ok | ok | ok |

[ 0.000000] hard-irq lock-inversion/132: ok | ok | ok |

[ 0.000000] soft-irq lock-inversion/132: ok | ok | ok |

[ 0.000000] hard-irq lock-inversion/213: ok | ok | ok |

[ 0.000000] soft-irq lock-inversion/213: ok | ok | ok |

[ 0.000000] hard-irq lock-inversion/231: ok | ok | ok |

[ 0.000000] soft-irq lock-inversion/231: ok | ok | ok |

[ 0.000000] hard-irq lock-inversion/312: ok | ok | ok |

[ 0.000000] soft-irq lock-inversion/312: ok | ok | ok |

[ 0.000000] hard-irq lock-inversion/321: ok | ok | ok |

[ 0.000000] soft-irq lock-inversion/321: ok | ok | ok |

[ 0.000000] hard-irq read-recursion/123: ok |

[ 0.000000] soft-irq read-recursion/123: ok |

[ 0.000000] hard-irq read-recursion/132: ok |

[ 0.000000] soft-irq read-recursion/132: ok |

[ 0.000000] hard-irq read-recursion/213: ok |

[ 0.000000] soft-irq read-recursion/213: ok |

[ 0.000000] hard-irq read-recursion/231: ok |

[ 0.000000] soft-irq read-recursion/231: ok |

[ 0.000000] hard-irq read-recursion/312: ok |

[ 0.000000] soft-irq read-recursion/312: ok |

[ 0.000000] hard-irq read-recursion/321: ok |

[ 0.000000] soft-irq read-recursion/321: ok |

[ 0.000000] -------------------------------------------------------

[ 0.000000] Good, all 218 testcases passed! |

[ 0.000000] ---------------------------------

[ 0.000000] ODEBUG: 0 of 0 active objects replaced

[ 0.000000] hpet clockevent registered

[ 0.000000] tsc: Detected 2693.432 MHz processor

[ 0.000000] tsc: Marking TSC unstable due to TSCs unsynchronized

[ 0.020000] Calibrating delay loop (skipped) preset value.. 5386.86 BogoMIPS (lpj=26934320)

[ 0.020000] pid_max: default: 4096 minimum: 301

[ 0.020000] Mount-cache hash table entries: 512

[ 0.020000] Initializing cgroup subsys debug

[ 0.020000] Initializing cgroup subsys memory

[ 0.020000] Initializing cgroup subsys blkio

[ 0.020000] Initializing cgroup subsys net_prio

[ 0.020000] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0

[ 0.020000] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0

[ 0.020000] tlb_flushall_shift: -1

[ 0.020000] Freeing SMP alternatives: 32k freed

[ 0.022059] ACPI: Core revision 20130328

[ 0.025872] ACPI: All ACPI Tables successfully acquired

[ 0.026345] ftrace: allocating 36867 entries in 73 pages

[ 0.040091] Getting VERSION: 50014

[ 0.040390] Getting VERSION: 50014

[ 0.040669] Getting ID: 0

[ 0.040890] Getting ID: f000000

[ 0.041152] Getting LVT0: 8700

[ 0.041409] Getting LVT1: 8400

[ 0.041660] Enabling APIC mode: Flat. Using 1 I/O APICs

[ 0.042141] enabled ExtINT on CPU#0

[ 0.043179] ENABLING IO-APIC IRQs

[ 0.043459] init IO_APIC IRQs

[ 0.043700] apic 0 pin 0 not connected

[ 0.044016] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)

[ 0.050020] IOAPIC[0]: Set routing entry (0-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)

[ 0.050663] IOAPIC[0]: Set routing entry (0-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)

[ 0.051300] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)

[ 0.051942] IOAPIC[0]: Set routing entry (0-5 -> 0x35 -> IRQ 5 Mode:1 Active:0 Dest:1)

[ 0.052580] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)

[ 0.053217] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)

[ 0.053856] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)

[ 0.054490] IOAPIC[0]: Set routing entry (0-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:1)

[ 0.055130] IOAPIC[0]: Set routing entry (0-10 -> 0x3a -> IRQ 10 Mode:1 Active:0 Dest:1)

[ 0.055786] IOAPIC[0]: Set routing entry (0-11 -> 0x3b -> IRQ 11 Mode:1 Active:0 Dest:1)

[ 0.056435] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)

[ 0.057089] IOAPIC[0]: Set routing entry (0-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)

[ 0.057748] IOAPIC[0]: Set routing entry (0-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)

[ 0.058394] IOAPIC[0]: Set routing entry (0-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)

[ 0.059041] apic 0 pin 16 not connected

[ 0.059354] apic 0 pin 17 not connected

[ 0.060003] apic 0 pin 18 not connected

[ 0.060313] apic 0 pin 19 not connected

[ 0.060623] apic 0 pin 20 not connected

[ 0.060940] apic 0 pin 21 not connected

[ 0.061248] apic 0 pin 22 not connected

[ 0.061554] apic 0 pin 23 not connected

[ 0.062003] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1

[ 0.062570] smpboot: CPU0: GenuineIntel Common KVM processor (fam: 0f, model: 06, stepping: 01)

[ 0.063441] Using local APIC timer interrupts.

[ 0.063441] calibrating APIC timer ...

[ 0.070000] ... lapic delta = 6249848

[ 0.070000] ... PM-Timer delta = 357945

[ 0.070000] ... PM-Timer result ok

[ 0.070000] ..... delta 6249848

[ 0.070000] ..... mult: 268428927

[ 0.070000] ..... calibration result: 9999756

[ 0.070000] ..... CPU clock speed is 2693.4293 MHz.

[ 0.070000] ..... host bus clock speed is 999.9756 MHz.

[ 0.070000] Performance Events:

[ 0.070000] Testing tracer nop: PASSED

[ 0.070000] SMP alternatives: lockdep: fixing up alternatives

[ 0.070000] CPU 1 irqstacks, hard=848ac000 soft=848ae000

[ 0.070000] smpboot: Booting Node 0, Processors #1 OK

[ 0.010000] Initializing CPU#1

[ 0.020000] kvm-clock: cpu 1, msr 0:fffd041, secondary cpu clock

[ 0.020000] masked ExtINT on CPU#1

[ 0.075544] Brought up 2 CPUs

[ 0.075489] KVM setup async PF for cpu 1

[ 0.075489] kvm-stealtime: cpu 1, msr e5365c0

[ 0.076417] smpboot: Total of 2 processors activated (10773.72 BogoMIPS)

[ 0.190012] Testing tracer function: PASSED

[ 0.510726] Testing dynamic ftrace: PASSED

[ 0.940107] Testing dynamic ftrace ops #1: (1 0 1 1 0) (1 1 2 1 0) (2 1 3 1 10) (2 2 4 1 92) PASSED

[ 1.268329] Testing dynamic ftrace ops #2: (1 0 1 8 0) (1 1 2 88 0) (2 1 3 1 3) (2 2 4 79 81) PASSED

[ 1.600770] Testing ftrace recursion: PASSED

[ 1.625951] Testing ftrace recursion safe: PASSED

[ 1.651095] Testing ftrace regs: PASSED

[ 1.850009] Testing tracer wakeup: ret = 0

[ 2.340048] ftrace-test (16) used greatest stack depth: 7160 bytes left

[ 2.430014] PASSED

[ 2.520013] Testing tracer wakeup_rt: ret = 0

[ 3.110011] PASSED

[ 3.111679] xor: measuring software checksum speed

[ 3.204668] pIII_sse : 13055.200 MB/sec

[ 3.304668] prefetch64-sse: 13998.000 MB/sec

[ 3.305018] xor: using function: prefetch64-sse (13998.000 MB/sec)

[ 3.305480] atomic64 test passed for i586+ platform with CX8 and with SSE

[ 3.306002] cma: cma_init_reserved_areas()

[ 3.306315] cma: cma_create_area(base 0000d400, count 1000)

[ 3.306790] cma: cma_create_area: returned 848d6bd8

[ 3.307284] NET: Registered protocol family 16

[ 3.310042] ACPI: bus type PCI registered

[ 3.310589] PCI: PCI BIOS revision 2.10 entry at 0xfc6d5, last bus=0

[ 3.311080] PCI: Using configuration type 1 for base access

[ 3.320335] bio: create slab <bio-0> at 0

[ 3.490014] raid6: mmxx1 5132 MB/s

[ 3.660010] raid6: mmxx2 5434 MB/s

[ 3.830009] raid6: sse1x1 4287 MB/s

[ 4.000015] raid6: sse1x2 5229 MB/s

[ 4.170006] raid6: sse2x1 8493 MB/s

[ 4.340008] raid6: sse2x2 10458 MB/s

[ 4.340315] raid6: using algorithm sse2x2 (10458 MB/s)

[ 4.340716] raid6: using intx1 recovery algorithm

[ 4.341320] ACPI: Added _OSI(Module Device)

[ 4.341653] ACPI: Added _OSI(Processor Device)

[ 4.341997] ACPI: Added _OSI(3.0 _SCP Extensions)

[ 4.342359] ACPI: Added _OSI(Processor Aggregator Device)

[ 4.343891] ACPI: EC: Look up EC in DSDT

[ 4.349909] ACPI: Interpreter enabled

[ 4.350031] ACPI: (supports S0 S4 S5)

[ 4.350322] ACPI: Using IOAPIC for interrupt routing

[ 4.350735] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug

[ 4.361930] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])

[ 4.362924] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.

[ 4.363918] PCI host bridge to bus 0000:00

[ 4.364243] pci_bus 0000:00: root bus resource [bus 00-ff]

[ 4.364679] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]

[ 4.365154] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]

[ 4.365624] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]

[ 4.366149] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]

[ 4.366719] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000

[ 4.367663] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100

[ 4.368538] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180

[ 4.371603] pci 0000:00:01.1: reg 20: [io 0xc1e0-0xc1ef]

[ 4.373425] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000

[ 4.374157] pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI

[ 4.374726] pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB

[ 4.375449] pci 0000:00:02.0: [1013:00b8] type 00 class 0x030000

[ 4.377194] pci 0000:00:02.0: reg 10: [mem 0xfc000000-0xfdffffff pref]

[ 4.378881] pci 0000:00:02.0: reg 14: [mem 0xfebe0000-0xfebe0fff]

[ 4.385250] pci 0000:00:02.0: reg 30: [mem 0xfebc0000-0xfebcffff pref]

[ 4.385952] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000

[ 4.387464] pci 0000:00:03.0: reg 10: [io 0xc1c0-0xc1df]

[ 4.388903] pci 0000:00:03.0: reg 14: [mem 0xfebe1000-0xfebe1fff]

[ 4.394528] pci 0000:00:03.0: reg 30: [mem 0xfebd0000-0xfebdffff pref]

[ 4.395333] pci 0000:00:04.0: [8086:100e] type 00 class 0x020000

[ 4.396843] pci 0000:00:04.0: reg 10: [mem 0xfeb80000-0xfeb9ffff]

[ 4.398331] pci 0000:00:04.0: reg 14: [io 0xc000-0xc03f]

[ 4.403573] pci 0000:00:04.0: reg 30: [mem 0xfeba0000-0xfebbffff pref]

[ 4.404260] pci 0000:00:05.0: [1af4:1001] type 00 class 0x010000

[ 4.405803] pci 0000:00:05.0: reg 10: [io 0xc040-0xc07f]

[ 4.407247] pci 0000:00:05.0: reg 14: [mem 0xfebe2000-0xfebe2fff]

[ 4.413401] pci 0000:00:06.0: [1af4:1001] type 00 class 0x010000

[ 4.414937] pci 0000:00:06.0: reg 10: [io 0xc080-0xc0bf]

[ 4.416383] pci 0000:00:06.0: reg 14: [mem 0xfebe3000-0xfebe3fff]

[ 4.422371] pci 0000:00:07.0: [1af4:1001] type 00 class 0x010000

[ 4.423905] pci 0000:00:07.0: reg 10: [io 0xc0c0-0xc0ff]

[ 4.425356] pci 0000:00:07.0: reg 14: [mem 0xfebe4000-0xfebe4fff]

[ 4.430830] pci 0000:00:08.0: [1af4:1001] type 00 class 0x010000

[ 4.432354] pci 0000:00:08.0: reg 10: [io 0xc100-0xc13f]

[ 4.433798] pci 0000:00:08.0: reg 14: [mem 0xfebe5000-0xfebe5fff]

[ 4.440199] pci 0000:00:09.0: [1af4:1001] type 00 class 0x010000

[ 4.441728] pci 0000:00:09.0: reg 10: [io 0xc140-0xc17f]

[ 4.443171] pci 0000:00:09.0: reg 14: [mem 0xfebe6000-0xfebe6fff]

[ 4.449110] pci 0000:00:0a.0: [1af4:1001] type 00 class 0x010000

[ 4.450526] pci 0000:00:0a.0: reg 10: [io 0xc180-0xc1bf]

[ 4.451975] pci 0000:00:0a.0: reg 14: [mem 0xfebe7000-0xfebe7fff]

[ 4.457884] pci 0000:00:0b.0: [8086:25ab] type 00 class 0x088000

[ 4.458891] pci 0000:00:0b.0: reg 10: [mem 0xfebe8000-0xfebe800f]

[ 4.462971] pci_bus 0000:00: on NUMA node 0

[ 4.463301] acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM

[ 4.463913] acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08)

[ 4.465460] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)

[ 4.466174] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)

[ 4.466876] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)

[ 4.467570] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)

[ 4.468163] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)

[ 4.469001] ACPI: Enabled 16 GPEs in block 00 to 0F

[ 4.469406] acpi root: \_SB_.PCI0 notify handler is installed

[ 4.469911] Found 1 acpi root devices

[ 4.471276] ACPI: No dock devices found.

[ 4.471721] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none

[ 4.472334] vgaarb: loaded

[ 4.472552] vgaarb: bridge control possible 0000:00:02.0

[ 4.473036] tps65010: version 2 May 2005

[ 4.510084] tps65010: no chip?

[ 4.510633] media: Linux media interface: v0.10

[ 4.511016] Linux video capture interface: v2.00

[ 4.511402] pps_core: LinuxPPS API ver. 1 registered

[ 4.511799] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

[ 4.512494] PTP clock support registered

[ 4.512898] PCI: Using ACPI for IRQ routing

[ 4.512898] PCI: pci_cache_line_size set to 64 bytes

[ 4.512898] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]

[ 4.512898] e820: reserve RAM buffer [mem 0x0fffe000-0x0fffffff]

[ 4.512898] Bluetooth: Core ver 2.16

[ 4.512898] NET: Registered protocol family 31

[ 4.512947] Bluetooth: HCI device and connection manager initialized

[ 4.513441] Bluetooth: HCI socket layer initialized

[ 4.513830] Bluetooth: L2CAP socket layer initialized

[ 4.514228] Bluetooth: SCO socket layer initialized

[ 4.514604] NET: Registered protocol family 8

[ 4.514950] NET: Registered protocol family 20

[ 4.515608] cfg80211: Calling CRDA to update world regulatory domain

[ 4.516240] nfc: nfc_init: NFC Core ver 0.1

[ 4.516600] NET: Registered protocol family 39

[ 4.520343] HPET: 3 timers in total, 0 timers will be used for per-cpu timer

[ 4.520906] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0

[ 4.521323] hpet0: 3 comparators, 64-bit 100.000000 MHz counter

[ 4.527932] Switching to clocksource kvm-clock

[ 4.565446] FS-Cache: Loaded

[ 4.565728] pnp: PnP ACPI init

[ 4.565988] ACPI: bus type PNP registered

[ 4.566358] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:3)

[ 4.567019] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)

[ 4.567563] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:3)

[ 4.568215] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)

[ 4.568739] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:3)

[ 4.569400] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)

[ 4.569971] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:3)

[ 4.570615] pnp 00:03: [dma 2]

[ 4.570897] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)

[ 4.571484] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:3)

[ 4.572151] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)

[ 4.572759] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:3)

[ 4.573453] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)

[ 4.574451] pnp 00:06: Plug and Play ACPI device, IDs PNP0103 (active)

[ 4.575419] pnp: PnP ACPI: found 7 devices

[ 4.575731] ACPI: bus type PNP unregistered

[ 4.611519] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]

[ 4.611941] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]

[ 4.612360] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]

[ 4.612823] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]

[ 4.613301] NET: Registered protocol family 1

[ 4.613635] pci 0000:00:00.0: Limiting direct PCI/PCI transfers

[ 4.614083] pci 0000:00:01.0: PIIX3: Enabling Passive Release

[ 4.614527] pci 0000:00:01.0: Activating ISA DMA hang workarounds

[ 4.615005] pci 0000:00:02.0: Boot video device

[ 4.615407] PCI: CLS 0 bytes, default 64

[ 4.615845] Unpacking initramfs...

[ 5.331917] Freeing initrd memory: 25284k freed

[ 5.657621] DMA-API: preallocated 65536 debug entries

[ 5.658032] DMA-API: debugging enabled by kernel config

[ 5.659296] apm: BIOS not found.

[ 5.661312] NatSemi SCx200 Driver

[ 5.662621] Initializing RT-Tester: OK

[ 5.662925] audit: initializing netlink socket (disabled)

[ 5.663378] type=2000 audit(1371851269.660:1): initialized

[ 5.664786] HugeTLB registered 4 MB page size, pre-allocated 0 pages

[ 5.665383] VFS: Disk quotas dquot_6.5.2

[ 5.665711] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)

[ 5.667066] NTFS driver 2.1.30 [Flags: R/O].

[ 5.667425] EFS: 1.0a - http://aeschi.ch.eu.org/efs/

[ 5.667819] QNX4 filesystem 0.2.3 registered.

[ 5.668160] QNX6 filesystem 1.0.0 registered.

[ 5.668503] fuse init (API version 7.22)

[ 5.669319] JFS: nTxBlock = 1797, nTxLock = 14383

[ 5.670415] SGI XFS with security attributes, realtime, no debug enabled

[ 5.671384] BeFS version: 0.9.3

[ 5.671678] bio: create slab <bio-1> at 1

[ 5.672362] Running btrfs free space cache tests

[ 5.672729] Running extent only tests

[ 5.673033] Running bitmap only tests

[ 5.673335] Running bitmap and extent tests

[ 5.673677] Free space cache tests finished

[ 5.673999] Btrfs loaded

[ 5.674214] msgmni has been set to 449

[ 5.678887] NET: Registered protocol family 38

[ 5.679277] Key type asymmetric registered

[ 5.679617] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)

[ 5.680246] io scheduler noop registered (default)

[ 5.680616] list_sort_test: start testing list_sort()

[ 5.681796] xz_dec_test: module loaded

[ 5.682092] xz_dec_test: Create a device node with 'mknod xz_dec_test c 247 0' and write .xz files to it.

[ 5.683659] pci_hotplug: PCI Hot Plug PCI Core version: 0.5

[ 5.684088] cpqphp: Compaq Hot Plug PCI Controller Driver version: 0.9.8

[ 5.684626] cpcihp_zt5550: ZT5550 CompactPCI Hot Plug Driver version: 0.2

[ 5.685177] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4

[ 5.686246] rivafb_setup START

[ 5.686575] VIA Graphics Integration Chipset framebuffer 2.4 initializing

[ 5.687639] no IO addresses supplied

[ 5.687995] hv_vmbus: registering driver hyperv_fb

[ 5.688585] ipmi message handler version 39.2

[ 5.688925] ipmi device interface

[ 5.689231] IPMI System Interface driver.

[ 5.689588] ipmi_si: Adding default-specified kcs state machine

[ 5.690073] ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0

[ 5.690843] ipmi_si: Interface detection failed

[ 5.800369] ipmi_si: Adding default-specified smic state machine

[ 5.800869] ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0

[ 5.801885] ipmi_si: Interface detection failed

[ 5.880099] ipmi_si: Adding default-specified bt state machine

[ 5.880594] ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0

[ 5.881350] ipmi_si: Interface detection failed

[ 5.950149] ipmi_si: Unable to find any System Interface(s)

[ 5.950612] IPMI Watchdog: driver initialized

[ 5.951181] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0

[ 5.951770] ACPI: Power Button [PWRF]

[ 5.952167] GHES: HEST is not enabled!

[ 5.952545] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled

[ 5.974330] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A

[ 5.976436] Cyclades driver 2.6

[ 5.976711] MOXA Intellio family driver version 6.0k

[ 5.977282] MOXA Smartio/Industio family driver version 2.0.5

[ 5.977743] Initializing Nozomi driver 2.1d

[ 5.978092] SyncLink serial driver $Revision: 4.38 $

[ 5.989940] SyncLink serial driver $Revision: 4.38 $, tty major#240

[ 5.991178] Non-volatile memory driver v1.3

[ 5.991520] toshiba: not a supported Toshiba laptop

[ 5.991918] ppdev: user-space parallel port driver

[ 5.992296] scx200_gpio: no SCx200 gpio present

[ 5.992687] platform pc8736x_gpio.0: NatSemi pc8736x GPIO Driver Initializing

[ 5.993248] platform pc8736x_gpio.0: no device found

[ 5.993739] nsc_gpio initializing

[ 5.994011] telclk_interrupt = 0xf non-mcpbl0010 hw.

[ 5.994424] smapi::smapi_init, ERROR invalid usSmapiID

[ 5.994817] mwave: tp3780i::tp3780I_InitializeBoardData: Error: SMAPI is not available on this machine

[ 5.995522] mwave: mwavedd::mwave_init: Error: Failed to initialize board data

[ 5.996070] mwave: mwavedd::mwave_init: Error: Failed to initialize

[ 5.996591] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).

[ 5.997278] Hangcheck: Using getrawmonotonic().

[ 5.998014] lkdtm: No crash points registered, enable through debugfs

[ 5.998564] Phantom Linux Driver, version n0.9.8, init OK

[ 5.999555] Silicon Labs C2 port support v. 0.51.0 - (C) 2007 Rodolfo Giometti

[ 6.000215] c2port c2port0: C2 port uc added

[ 6.000545] c2port c2port0: uc flash has 30 blocks x 512 bytes (15360 bytes total)

[ 6.001433] Guest personality initialized and is inactive

[ 6.002036] VMCI host device registered (name=vmci, major=10, minor=59)

[ 6.002552] Initialized host personality

[ 6.003192] Driver for timberdale has been successfully registered.

[ 6.004039] Uniform Multi-Platform E-IDE driver

[ 6.004443] piix 0000:00:01.1: IDE controller (0x8086:0x7010 rev 0x00)

[ 6.005002] piix 0000:00:01.1: not 100% native mode: will probe irqs later

[ 6.006048] pci 0000:00:01.1: setting latency timer to 64

[ 6.006491] ide0: BM-DMA at 0xc1e0-0xc1e7

[ 6.006856] ide1: BM-DMA at 0xc1e8-0xc1ef

[ 6.007199] Probing IDE interface ide0...

[ 6.610830] Probing IDE interface ide1...

[ 7.400085] hdc: QEMU DVD-ROM, ATAPI CD/DVD-ROM drive

[ 8.120128] hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO0

[ 8.120700] hdc: MWDMA2 mode selected

[ 8.121107] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14

[ 8.121511] ide1 at 0x170-0x177,0x376 on irq 15

[ 8.123611] ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports

[ 8.124380] ide-gd driver 1.18

[ 8.124641] ide-cd driver 5.00

[ 8.125441] ide-cd: hdc: ATAPI 4X DVD-ROM drive, 512kB Cache

[ 8.125912] cdrom: Uniform CD-ROM driver Revision: 3.20

[ 8.128283] HSI/SSI char device loaded

[ 8.129154] eql: Equalizer2002: Simon Janes (simon@ncm.com) and David S. Miller (davem@redhat.com)

[ 8.132410] tun: Universal TUN/TAP device driver, 1.6

[ 8.132798] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>

[ 8.133311] arcnet loaded.

[ 8.133525] arcnet: RFC1201 "standard" (`a') encapsulation support loaded.

[ 8.134035] arcnet: RFC1051 "simple standard" (`s') encapsulation support loaded.

[ 8.134604] arcnet: cap mode (`c') encapsulation support loaded.

[ 8.135055] arcnet: COM90xx chipset support

[ 8.435822] S3: No ARCnet cards found.

[ 8.436124] arcnet: COM20020 PCI support

[ 8.437175] SLIP: version 0.8.4-NET3.019-NEWTTY (dynamic channels, max=256).

[ 8.437727] hdlc: HDLC support module revision 1.22

[ 8.438147] DLCI driver v0.35, 4 Jan 1997, mike.mclagan@linux.org.

[ 8.438934] Madge ATM Horizon [Ultra] driver version 1.2.1

[ 8.439643] idt77252_init: at 79d72d81

[ 8.439950] Solos PCI Driver Version 1.04

[ 8.440302] adummy: version 1.0

[ 8.441409] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12

[ 8.442618] serio: i8042 KBD port at 0x60,0x64 irq 1

[ 8.443039] serio: i8042 AUX port at 0x60,0x64 irq 12

[ 8.443450] parkbd: no such parport

[ 8.480643] evbug: Connected device: input0 (Power Button at LNXPWRBN/button/input0)

[ 8.482715] apanel: Fujitsu BIOS signature 'FJKEYINF' not found...

[ 8.483825] input: PC Speaker as /devices/platform/pcspkr/input/input1

[ 8.484326] evbug: Connected device: input1 (PC Speaker at isa0061/input0)

[ 8.485183] wistron_btns: System unknown

[ 8.486908] rtc-test rtc-test.0: rtc core: registered test as rtc0

[ 8.487641] rtc-test rtc-test.1: rtc core: registered test as rtc1

[ 8.488791] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 0

[ 8.490733] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2

[ 8.491394] evbug: Connected device: input2 (AT Translated Set 2 keyboard at isa0060/serio0/input0)

[ 8.760821] i2c-parport: adapter type unspecified

[ 8.761194] i2c-parport-light: adapter type unspecified

[ 8.762011] lirc_dev: IR Remote Control driver registered, major 234

[ 8.762523] IR NEC protocol handler initialized

[ 8.762865] IR RC5(x) protocol handler initialized

[ 8.763225] IR RC6 protocol handler initialized

[ 8.763574] IR JVC protocol handler initialized

[ 8.763918] IR Sony protocol handler initialized

[ 8.764263] IR RC5 (streamzap) protocol handler initialized

[ 8.764699] IR SANYO protocol handler initialized

[ 8.765051] IR MCE Keyboard/mouse protocol handler initialized

[ 8.765498] IR LIRC bridge handler initialized

[ 8.766089] Marvell M88ALP01 'CAFE' Camera Controller version 2

[ 8.766588] Colour QuickCam for Video4Linux v0.06

[ 8.767281] Driver for 1-wire Dallas network protocol.

[ 8.767741] DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko

[ 8.980052] w83793: Detection failed at check vendor id

[ 9.040052] w83793: Detection failed at check vendor id

[ 9.100053] w83793: Detection failed at check vendor id

[ 9.160055] w83793: Detection failed at check vendor id

[ 9.200081] i2c i2c-0: w83795: Detection failed at addr 0x2c, check bank

[ 9.240055] i2c i2c-0: w83795: Detection failed at addr 0x2d, check bank

[ 9.280054] i2c i2c-0: w83795: Detection failed at addr 0x2e, check bank

[ 9.320052] i2c i2c-0: w83795: Detection failed at addr 0x2f, check bank

[ 9.360072] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.400055] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.440050] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.480054] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.520054] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.560052] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.600078] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.640053] i2c i2c-0: Detection of w83781d chip failed at step 3

[ 9.880052] detect failed, chip not detected!

[ 9.960051] detect failed, chip not detected!

[ 10.040067] detect failed, chip not detected!

[ 10.120063] detect failed, chip not detected!

[ 10.200051] detect failed, chip not detected!

[ 10.280054] detect failed, chip not detected!

[ 10.360051] detect failed, chip not detected!

[ 10.440071] detect failed, chip not detected!

[ 10.520052] detect failed, chip not detected!

[ 11.360054] (null): Wrong manufacturer ID. Got 255, expected 65

[ 11.400052] (null): Wrong manufacturer ID. Got 255, expected 65

[ 11.440107] (null): Wrong manufacturer ID. Got 255, expected 65

[ 12.520105] f71882fg: Not a Fintek device

[ 12.520708] f71882fg: Not a Fintek device

[ 12.640076] (null): Unknown chip type, skipping

[ 12.680057] (null): Unknown chip type, skipping

[ 27.680059] i2c i2c-0: LM83 detection failed at 0x18

[ 27.720059] i2c i2c-0: LM83 detection failed at 0x19

[ 27.760075] i2c i2c-0: LM83 detection failed at 0x1a

[ 27.800056] i2c i2c-0: LM83 detection failed at 0x29

[ 27.840114] i2c i2c-0: LM83 detection failed at 0x2a

[ 27.880076] i2c i2c-0: LM83 detection failed at 0x2b

[ 27.920082] i2c i2c-0: LM83 detection failed at 0x4c

[ 27.960051] i2c i2c-0: LM83 detection failed at 0x4d

[ 28.000080] i2c i2c-0: LM83 detection failed at 0x4e

[ 28.100085] i2c i2c-0: Unsupported chip at 0x18 (man_id=0xFF, chip_id=0xFF)

[ 28.200074] i2c i2c-0: Unsupported chip at 0x19 (man_id=0xFF, chip_id=0xFF)

[ 28.300075] i2c i2c-0: Unsupported chip at 0x1a (man_id=0xFF, chip_id=0xFF)

[ 28.400092] i2c i2c-0: Unsupported chip at 0x29 (man_id=0xFF, chip_id=0xFF)

[ 28.500061] i2c i2c-0: Unsupported chip at 0x2a (man_id=0xFF, chip_id=0xFF)

[ 28.600080] i2c i2c-0: Unsupported chip at 0x2b (man_id=0xFF, chip_id=0xFF)

[ 28.700073] i2c i2c-0: Unsupported chip at 0x48 (man_id=0xFF, chip_id=0xFF)

[ 28.800073] i2c i2c-0: Unsupported chip at 0x49 (man_id=0xFF, chip_id=0xFF)

[ 28.900056] i2c i2c-0: Unsupported chip at 0x4a (man_id=0xFF, chip_id=0xFF)

[ 29.000057] i2c i2c-0: Unsupported chip at 0x4b (man_id=0xFF, chip_id=0xFF)

[ 29.100055] i2c i2c-0: Unsupported chip at 0x4c (man_id=0xFF, chip_id=0xFF)

[ 29.200066] i2c i2c-0: Unsupported chip at 0x4d (man_id=0xFF, chip_id=0xFF)

[ 29.300064] i2c i2c-0: Unsupported chip at 0x4e (man_id=0xFF, chip_id=0xFF)

[ 29.400060] i2c i2c-0: Unsupported chip at 0x4f (man_id=0xFF, chip_id=0xFF)

[ 30.000066] i2c i2c-0: detect failed, bad manufacturer id 0xff!

[ 30.040055] i2c i2c-0: detect failed, bad manufacturer id 0xff!

[ 30.080068] i2c i2c-0: detect failed, bad manufacturer id 0xff!

[ 30.360067] i2c i2c-0: MAX1619 detection failed at 0x18

[ 30.440065] i2c i2c-0: MAX1619 detection failed at 0x19

[ 30.520062] i2c i2c-0: MAX1619 detection failed at 0x1a

[ 30.600065] i2c i2c-0: MAX1619 detection failed at 0x29

[ 30.680078] i2c i2c-0: MAX1619 detection failed at 0x2a

[ 30.760078] i2c i2c-0: MAX1619 detection failed at 0x2b

[ 30.840079] i2c i2c-0: MAX1619 detection failed at 0x4c

[ 30.920070] i2c i2c-0: MAX1619 detection failed at 0x4d

[ 31.000076] i2c i2c-0: MAX1619 detection failed at 0x4e

[ 31.680953] pc87360: PC8736x not detected, module not inserted

[ 31.681771] sch56xx_common: Unsupported device id: 0xff

[ 31.682180] sch56xx_common: Unsupported device id: 0xff

[ 31.740055] i2c i2c-0: SMSC47M192 detection failed at 0x2c

[ 31.800050] i2c i2c-0: SMSC47M192 detection failed at 0x2d

[ 31.840052] i2c i2c-0: W83L786NG detection failed at 0x2e

[ 31.880080] i2c i2c-0: W83L786NG detection failed at 0x2f

[ 31.881577] acquirewdt: WDT driver for Acquire single board computer initialising

[ 31.882248] acquirewdt: I/O address 0x0043 already in use

[ 31.882657] acquirewdt: probe of acquirewdt failed with error -5

[ 31.883307] advantechwdt: WDT driver for Advantech single board computer initialising

[ 31.884528] advantechwdt: initialized. timeout=60 sec (nowayout=1)

[ 31.885009] alim7101_wdt: Steve Hill <steve@navaho.co.uk>

[ 31.885415] alim7101_wdt: ALi M7101 PMU not present - WDT not set

[ 31.885896] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05

[ 31.886457] sc520_wdt: cannot register miscdev on minor=130 (err=-16)

[ 31.886977] ib700wdt: WDT driver for IB700 single board computer initialising

[ 31.887829] ib700wdt: START method I/O 443 is not available

[ 31.888263] ib700wdt: probe of ib700wdt failed with error -5

[ 31.888847] i6300esb: Intel 6300ESB WatchDog Timer Driver v0.05

[ 31.889783] i6300esb: cannot register miscdev on minor=130 (err=-16)

[ 31.890525] i6300ESB timer: probe of 0000:00:0b.0 failed with error -16

[ 31.891065] it87_wdt: no device

[ 31.891325] sc1200wdt: build 20020303

[ 31.891614] sc1200wdt: io parameter must be specified

[ 31.892013] pc87413_wdt: Version 1.1 at io 0x2E

[ 31.892355] pc87413_wdt: cannot register miscdev on minor=130 (err=-16)

[ 31.892844] nv_tco: NV TCO WatchDog Timer Driver v0.01

[ 31.893586] sbc60xxwdt: I/O address 0x0443 already in use

[ 31.894008] sbc7240_wdt: I/O address 0x0443 already in use

[ 31.894465] w83627hf_wdt: WDT driver for the Winbond(TM) W83627HF/THF/HG/DHG Super I/O chip initialising

[ 31.895191] w83627hf_wdt: Watchdog already running. Resetting timeout to 60 sec

[ 31.895741] w83627hf_wdt: cannot register miscdev on minor=130 (err=-16)

[ 31.896239] w83697hf_wdt: WDT driver for W83697HF/HG initializing

[ 31.896694] w83697hf_wdt: watchdog not found at address 0x2e

[ 31.897134] w83697hf_wdt: No W83697HF/HG could be found

[ 31.897520] w83697ug_wdt: WDT driver for the Winbond(TM) W83697UG/UF Super I/O chip initialising

[ 31.898178] w83697ug_wdt: No W83697UG/UF could be found

[ 31.898570] w83877f_wdt: I/O address 0x0443 already in use

[ 31.898985] w83977f_wdt: driver v1.00

[ 31.899262] w83977f_wdt: cannot register miscdev on minor=130 (err=-16)

[ 31.899777] watchdog: Software Watchdog: cannot register miscdev on minor=130 (err=-16).

[ 31.900401] watchdog: Software Watchdog: a legacy watchdog module is probably present.

[ 31.901057] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=1)

[ 31.901872] md: raid0 personality registered for level 0

[ 31.902276] md: raid1 personality registered for level 1

[ 31.902668] md: raid10 personality registered for level 10

[ 31.903087] md: raid6 personality registered for level 6

[ 31.903483] md: raid5 personality registered for level 5

[ 31.903877] md: raid4 personality registered for level 4

[ 31.904277] md: faulty personality registered for level -5

[ 31.905522] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com

[ 31.907314] device-mapper: multipath: version 1.5.1 loaded

[ 31.907739] device-mapper: multipath round-robin: version 1.0.0 loaded

[ 31.908234] device-mapper: multipath service-time: version 0.2.0 loaded

[ 31.908780] device-mapper: dm-log-userspace: version 1.1.0 loaded

[ 31.909241] device-mapper: raid: Loading target version 1.5.0

[ 31.909685] device-mapper: cache-policy-mq: version 1.0.0 loaded

[ 31.910178] device-mapper: cache cleaner: version 1.0.0 loaded

[ 31.910903] Bluetooth: Generic Bluetooth SDIO driver ver 0.1

[ 31.911611] CAPI 2.0 started up with major 68 (middleware)

[ 31.912062] b1pci: revision 1.1.2.2

[ 31.912328] b1: revision 1.1.2.2

[ 31.912568] b1dma: revision 1.1.2.3

[ 31.912829] b1pci: revision 1.1.2.2

[ 31.913138] t1pci: revision 1.1.2.2

[ 31.913400] gigaset: Driver for Gigaset 307x

[ 31.913715] gigaset: no ISDN subsystem interface

[ 31.914075] lguest: mapped switcher at ffd2d000

[ 31.914757] wbsd: Winbond W83L51xD SD/MMC card interface driver

[ 31.915211] wbsd: Copyright(c) Pierre Ossman

[ 35.650092] CPA self-test:

[ 35.650588] 4k 3070 large 61 gb 0 x 3131[78000000-87ffd000] miss 0

[ 35.668660] 4k 64510 large 1 gb 0 x 64511[78000000-87ffd000] miss 0

[ 35.682042] 4k 64510 large 1 gb 0 x 64511[78000000-87ffd000] miss 0

[ 35.682837] ok.

[ 39.930136] (null): enodev DEV ADDR = 0xFF

[ 39.933248] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)

[ 39.934262] hidraw: raw HID events driver (C) Jiri Kosina

[ 39.938341] compal_laptop: Motherboard not recognized (You could try the module's force-parameter)

[ 39.939430] acerhdf: Acer Aspire One Fan driver, v.0.5.26

[ 39.940135] acerhdf: unknown (unsupported) BIOS version Bochs/Bochs/Bochs, please report, aborting!

[ 39.941902] hdaps: supported laptop not found!

[ 39.942452] hdaps: driver init failed (ret=-19)!

[ 39.943934] fujitsu_laptop: driver 0.6.0 successfully loaded

[ 39.944633] fujitsu_tablet: Unknown (using defaults)

[ 39.945759] intel_oaktrail: Platform not recognized (You could try the module's force-parameter)

[ 39.946868] goldfish_pdev_bus goldfish_pdev_bus: unable to reserve Goldfish MMIO.

[ 39.947832] goldfish_pdev_bus: probe of goldfish_pdev_bus failed with error -16

[ 39.948786] hv_utils: Registering HyperV Utility Driver

[ 39.949426] hv_vmbus: registering driver hv_util

[ 39.951660] oprofile: using timer interrupt.

[ 39.952267] NET: Registered protocol family 26

[ 39.952879] NET: Registered protocol family 17

[ 39.953514] NET: Registered protocol family 15

[ 39.954139] Ebtables v2.0 registered

[ 39.955683] NET: Registered protocol family 4

[ 39.956067] NET: Registered protocol family 9

[ 39.956454] X.25 for Linux Version 0.2

[ 39.956745] Bluetooth: BNEP (Ethernet Emulation) ver 1.3

[ 39.957152] Bluetooth: BNEP filters: multicast

[ 39.957522] Bluetooth: BNEP socket layer initialized

[ 39.957903] Bluetooth: CMTP (CAPI Emulation) ver 1.0

[ 39.958292] Bluetooth: CMTP socket layer initialized

[ 39.958670] Bluetooth: HIDP (Human Interface Emulation) ver 1.2

[ 39.959117] Bluetooth: HIDP socket layer initialized

[ 39.959521] lec:lane_module_init: lec.c: initialized

[ 39.959903] NET4: DECnet for Linux: V.2.5.68s (C) 1995-2003 Linux DECnet Project Team

[ 39.960604] DECnet: Routing cache hash table of 256 buckets, 9Kbytes

[ 39.961105] NET: Registered protocol family 12

[ 39.961482] 8021q: 802.1Q VLAN Support v1.8

[ 39.961831] 9pnet: Installing 9P2000 support

[ 39.962210] NET: Registered protocol family 36

[ 39.962622] Key type dns_resolver registered

[ 39.962956] openvswitch: Open vSwitch switching datapath

[ 39.963529] NET: Registered protocol family 40

[ 39.964327]

[ 39.964327] printing PIC contents

[ 39.964710] ... PIC IMR: ffff

[ 39.964951] ... PIC IRR: 9013

[ 39.965207] ... PIC ISR: 0000

[ 39.965449] ... PIC ELCR: 0c00

[ 39.965692] printing local APIC contents on CPU#0/0:

[ 39.966077] ... APIC ID: 00000000 (0)

[ 39.966404] ... APIC VERSION: 00050014

[ 39.966696] ... APIC TASKPRI: 00000000 (00)

[ 39.967021] ... APIC PROCPRI: 00000000

[ 39.967343] ... APIC LDR: 01000000

[ 39.967608] ... APIC DFR: ffffffff

[ 39.967874] ... APIC SPIV: 000001ff

[ 39.968142] ... APIC ISR field:

[ 39.968438] 0000000000000000000000000000000000000000000000000000000000000000

[ 39.969081] ... APIC TMR field:

[ 39.969342] 0000000000000000000000

Show more